Array, being one of the very useful data structures in any programming language, I am sure we all use it every day. I have been using associative array, the one that uses keys instead of a numeric index to organize stored values, quite a while in ActionScript and I learned something today in hard [...]
Myo's random rambling
moxie
Extended Panel & RichTextEditor ability to dock ControlBar on the top
I’ve got a need for a component that would allow me to have the control bar to be docked on the top instead of bottom, I ran into Doug post about exactly what I wanted: http://dougmccune.com/blog/2007/03/21/flex-panel-component-with-controlbar-docked-to-the-top-instead-of-bottom/. However due to the timeline about the post, it seems to be written for Flex2 and it [...]
Module 101 – What is module & how it works
Starting from Flex 2.0.1, modules are supported.
What is module? To quote Adobe Documentation:
Modules are SWF files that can be loaded and unloaded by an application. They cannot be run independently of an application, but any number of applications can share the modules.
Why do we need modules? A lot of reasons, I [...]