Flash player 10.1 beta 3 release!
The flash player 10.1 beta3 release in adobe Labs see http://labs.adobe.com/technologies/flashplayer10/
The flash player 10.1 beta3 release in adobe Labs see http://labs.adobe.com/technologies/flashplayer10/
In AIR application, the file operation is as the same as in other applications( application compiled from C++ etc.). The size of the file that air can open only depends on the system.
Which class to handle file?
The FileStream Class is the major Class for operating content of a file. A FileStream object has two methods [...]
Tip 1: The sequence of the @param should be as the order of parameters defined in function.For example, you defined a function like this public function foo(param1:Type1, param2:Type2, param3:Type3):void. The asdoc should be like this:/*** xxxxxxxxxxx description of the function.* @param param1 xxxxx.* @param param2 xxxxx.* @param param3 xxxxx.* xxxxxxxxxxxxxxxx.*/public function foo(param1:Type1, param2:Type2, param3:Type3):voidIf parameters [...]