about 2 weeks ago - 1 comment
ryantan.net – free transform manager quietless.com – transform tool senocular.com – flash transform tool joelhooks.com – transform tool More >
about 2 weeks ago - 2 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:Adding Singleclick, Doubleclick 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 2 years ago - No comments
I just went through today in adobe forum and found an interesting topic. The exact forum url – http://forums.adobe.com/thread/518365?tstart=0 . I tried to find a solution and got it. It is about highlighting a set of lines in a textarea. Its nothing a big deal, I just followed 2 steps – one to calculate the More >
about 2 years ago - 7 comments
Googled around for a demo related to placing text over an arc in as3.0…found some solutions but were not satisfactory. So decided to create a simple demo of rotating text along a circular arc. The demo includes dynamic text entry, dynamic arc radius and text spacing. You can find the demo here. Related posts:Adding namespaces More >
about 1 year ago
Hi. I have a flex app that gets thousands of records out of a database, populates
a flex / actioscript ArrayCollection. Then I use the name of the ArrayCollection
as the DataProvider for my Datagrid.
I want to some how control the number of records pulled into the Datagrid, at a
time. Maybe give the user a choice for number of records to pull.
somebody help to me
thanks.