Embedding assets wisely
You can embed various types of assets in your Adobe Flex applications (.jpeg, .png, .swf, .mp3, .svg, .ttf …). Embedded assets are compiled into the SWF file of your Flex application. They are not...
View ArticleFlex Error #1034: Type Coercion Failed: Cannot Convert *** to...
When you keep getting: Flex Error #1034: Type Coercion Failed: Cannot Convert *** to mx.core.IFlexDisplayObject … after using getDefinition() method, in my case: // url = "../some.swf" var...
View ArticleQuick tip: embedding in Flex
In Flex application, you can embed your assets into 3 places: ActionScript, MXML, CSS. To embed into ActionScript use following syntax: [Embed(source="assets/image.png")] public var imageClass:Class;...
View ArticleQuick Tip: Constructor Of Property With Namespace
Some of you may not like the solution (including me) but sometimes you need a little hack to make things work for you. In my case I required a constructor of property declared under custom namespace...
View Article