Tag Archives: air for android

Multi-touch handling in AIR for Android/iOS

To handle multitouch in AIR you need to listen to TouchEvent events like TouchEvent.TOUCH_BEGIN. Which event you will listen depends on the Multitouch.inputMode defined, possile values are enumerated in MultitouchInputMode class. We will use MultitouchInputMode.TOUCH_POINT which specifies that events are … Continue reading

Posted in air for android | Tagged , , | Comments Off on Multi-touch handling in AIR for Android/iOS

SQLite – compare null values

Hi, this is a quick post describing issue I have found when using SQLite in flash. I’ve tried to fetch some rows using following snippet, but couldn’t get correct results. Then after digging on the net I have found that … Continue reading

Posted in actionscript, air for android, flash, SQLite3 (in AIR) | Tagged , , , , , , , , , , | 4 Comments

FlashDevelop, AIR for android project and projector size

Hi, recently I was trying to change default size of the projector as it was just too small in my Air for Android project, I have searched for ADL command options and found -screensize option where you specify what you … Continue reading

Posted in air for android, flash | Tagged , , , , , , | 5 Comments

SQLite – open and openAsync methods NOT create folders for created database file

If you run into problems with connecting to the database and you are using open or openAsync with CREATE mode then check if folder location exists for your database file, following code will generate SQLError SQLError: ’Error #3125: Unable to … Continue reading

Posted in actionscript, air for android, flash, SQLite3 (in AIR) | Tagged , , , , , , , , | Comments Off on SQLite – open and openAsync methods NOT create folders for created database file

Saving on SDCARD

When your application will try to save any data on sdcard using either of: and you notice that you can’t to do so then unplug your device from your PC:)

Posted in air for android, android | Tagged , , , | Comments Off on Saving on SDCARD