Helmut Granda
learning through interaction
learning through interaction
May 7th
For the longest time I was having issues with this Adobe Air Error and its description, the main issue is that the “details” for this error are “null”. We do get the description that the database is locked but no details on file name where the error occur or line number.
If you do a search [...]
May 1st
If you need to create a directory from Air and you dont know how, mostlikely you will use the Adobe Air Documentation and use something as the following:
JavaScript:
var directory = air.File.documentsDirectory;
directory = directory.resolvePath(”AIR Test”);
air.File.createDirectory(directory);
air.trace(directory.exists); // true
it all looks nice and makes sense but in the real world it wont work, you would get an error [...]