- Posted by kajyr on April 16th, 2009
- Tagged: AIR, sqlite, tools
Another post on tools I really appreciate while working;
Lita is another SQLite administrator tool, made by David Deraedt. It really stands among other admin tools.
Read the rest on Lita homage.
- Posted by kajyr on April 15th, 2009
- Tagged: actionscript, AIR, tutorial
Every now and then, while working on a AIR application, i feel the need to save or restore some config info, like the last window position, or the last opened files.
Instead of embedding this login in every app, I thought about a PreferenceManager class that stores and restores values.
How it should behave:
- It must save data on a file.
- It must save data on an open and editable format, so if something goes wrong..
- It should be a static class, so i can access it in every other class of my application, whitout the need to have the reference to the instantiated object.
- It should be really simple to use. And should not require any setup.
Read the rest of this entry »