Category Archives: AIR

Dock and system tray with Adobe AIR

Nice tutorial I guess: http://www.adobe.com/devnet/air/flash/quickstart/stopwatch_dock_system_tray.html

Posted in AIR | Leave a comment

Packaging an AIR installation file

I found this adobe help page but I didn’t want to use command line for packaging an AIR installation file. Simply because I’m not used to it. So I was looking for a different way. Well, actually Flex Builder provides … Continue reading

Posted in AIR | Leave a comment

Using the Loader-Class with Adobe AIR

Just a quick note because it took me a little while to find out that it’s necessary to use “file://” syntax to access the local file system. // Basic example: var url: String = "file:///Users/markusraab/Desktop/yourfile.swf";   // or use a … Continue reading

Posted in AIR | Leave a comment

Adobe AIR flash.filesystem.File methods throw Error 2037 when no nativePath is set

While developing an Flex based AIR Application I figured out an issue with the flash.filesystem.File class. I tried to access properties like exists, nativePath etc. before a nativePath was set using a browse method. So the while debugging the following … Continue reading

Posted in AIR, Flash, Flex | Leave a comment

Select and access local SWF files within an AIR application

Well, it took me a little time to figure out how to select and load a local SWF file into an SWFLoader instance. Several times I got this error message: SecurityError: Error #3015: Loader.loadBytes() is not permitted to load content … Continue reading

Posted in AIR, Flash, Flex | 5 Comments

Adobe technology platform RIA guide

This is simply the link list contained in the recently released Adobe technology platform ActionScript Reference PDF. API References Adobe ActionScript 3 Language Reference Adobe AIR JavaScript Language Reference Documentation Flex 3 Documentation Adobe AIR Documentation Developer Centers Adobe Developer … Continue reading

Posted in AIR, Documentations, Flash, Flex, Librarys, Links | Leave a comment

Write with AIR applications to the application resource directory

AIR applications are not permitted to write to the application resource directory. This seems to be a security feature and makes sense, because some systems would not allow to write into this directory at system level. But for testing purposes … Continue reading

Posted in AIR | 1 Comment