You can buy the Flash Builder from adobe.com now or you can get a trail for 1 month. http://www.adobe.com/products/flashbuilder/ If you may also get a free license for Flash Builder 4 Standard version if you are qualified. http://www.adobe.com/devnet/flex/free/index.html
No Comments. Continue Reading...
Efflex is a good site providing a number of custom effects for Flex. http://www.efflex.org/orgefflexmxviewstackeffects/ Here is the Effect Explorer by Efflex. You can preview all the effects and try to customize the effect options. http://www.efflex.org/EfflexExplorer.html
2 Comments. Continue Reading...
If you have added parameter “wmode” (e.g. opaque, transparent) into the flash application object tag in the HTML. You may not able to type non-English character into the text input of the flex application by using non-IE browsers. <object classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″ id=”flashapp” width=”100%” height=”500″ codebase=”http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab”> <param name=”movie” value=”teacher.swf” /> <param name=”quality” value=”high” /> <param name=”bgcolor” value=”#869ca7″ [...]
No Comments. Continue Reading...
By default, the flex application can show hand cursor when rollover by enabling useHandCursor and buttonMode properties. However, in Text control, the cursor will not change to hand even you set the selectable = false. The tricky thing is that we have to set its mouseChildren to false also. <mx:Text useHandCursor=”true” buttonMode=”true” mouseChildren=”false” /> mouseChildren [...]
4 Comments. Continue Reading...
Here is a very simple and useful guide for beginner to follow if you are planning to create custom component in Flex. It mentions the logic and lifecycle how the flex / flash runs. http://labs.realeyesmedia.com/labs/downloads/techBriefs/AdvancedCustomComponents_20071102.pdf
No Comments. Continue Reading...
When you want to test the flex application to access local resources without hosting it on web server or in flex builder’s debug folder, the security error will be prompted. Instead, we can add the “-use-network=false” parameter to the compiler option of the flex project to avoid such error. However, the application cannot access Internet [...]
1 Comment. Continue Reading...
This is a very good control to break the form item label into multiple lines. I found it from Google by Nick bilyk. http://www.nbilyk.com/multiline-formitem-label http://www.nbilyk.com/examples/betterFormItemExample/index.html
3 Comments. Continue Reading...
CORELIB有一堆UTILITIES … 有陣時都幾好用~~ http://code.google.com/p/as3corelib/ http://weblogs.macromedia.com/as_libraries/docs/corelib/com/adobe/utils/package-detail.html
No Comments. Continue Reading...