about 1 week ago - No comments
Running a Flex Mobile application in the background for iOS and Android is explained below as per adobe: iOS background behavior [Not Supported] On iOS, applications are not permitted to run in the background in a generic fashion. Instead, they must declare that they want to perform a certain type of background processing, such More >
about 1 week ago - No comments
We often use a viewstack component to display stacked UI elements. When we add components using MXML we often don’t face any issues related to the indexing. <mx:ViewStack> <mx:Panel id=”panel1″/> <mx:Panel id=”panel2″/> </mx:ViewStack> But when we try adding the components at an index using Actionscript we often face issues with the initialization of More >
about 1 month ago - 4 comments
New AS3 – Flex 4 Transform tool with text scaling Features Listed: Flex 3 and Flash Builder 4 support. Works on both mx and spark componentsAttachable Menus where functionality can be added programmaticallyTranforms almost all the components – Video, Image, Buttons etc without creating bitmapAdvanced tranform features like – Scale, Rotate, Horizontal and Vertical FlipAutomatic More >
about 1 year ago - No comments
Recently while working on an AS2 project in flashlite we had a issue of getting the height and width of a dynamically loaded external image from a URL. Here is the solution we formulated: var mclListener:Object = new Object();mclListener.onLoadInit = function(targetmc:MovieClip) { trace(“movie loaded”); trace(targetmc._width);}; var imagemcl:MovieClipLoader = new MovieClipLoader();imagemcl.addListener(mclListener);imagemcl.loadClip(URL, mc); Related posts:Advance Button creator More >
about 1 year ago - No comments
While developing a flashlite application for a Samsung BADA phone we face a weird issue. We were not able to load an external XML file. WE got the following error : FTPS033: A Call to loadVariables(URL) found, limitations might apply.FTPA018: The call to loadVariables for [URL] was ignored because it was not associated with a More >
about 1 year ago - 16 comments
After updating the Firefox to the latest version, while using Flex debug I found the debug session did not last much and it crashed after a short period. This happens because firefox kills the debug session. Found a quick fix for the above issue: 1. Goto firefox config by typing about:config in the firefox address More >
about 1 year ago - 1 comment
While doing a drag-drop on a list based component(e.g. listbox,grid) we were having an issue where it used to autoscroll with mouse movement even though pointer is no where near it. It was happening due to the event.preventDefault() called in the ondragDrop function. The dragHandler functions in the listbase class. We fixed it with a More >
about 1 year ago - 13 comments
Recently, was working on a facebook application using flex and when i had to post/share a video to the facebook wall. I was using the conventional share method, had to navigate to another url and then share. Found an alternative way and better approach to post it directly from flex to anyone’s wall. We can More >
about 1 year ago - No comments
I wasted a whole day finding how to display movieclip classes as icons in a Flash TileList component(AS3 version). I tried loading the data from an external XML file containing label and icon tags as dataprovider for the tilelist, it displayed the labels properly but had issues displaying the icons. I used the iconField property More >
about 4 weeks ago
And the best one is from riaxe.com