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 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:Highlight lines in 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:preventDefault autoscroll More >
about 2 years ago - 5 comments
Recently I had an issue with combining things like singleclick, doubleclick and drag on a single control. I used a timer to solve the issue. I have called the startDrag method after starting the timer for the singleclick. Prepared a demo for the above solution. One can find it here. Hope its useful. Cheers Related More >
about 2 years ago - 30 comments
Hello Everybody, Got a chance to play with the Matrix class in as3 for creating a custom transform tool for scaling and rotating components containing text controls like the TextArea in Flex. I used the free Senocular’s Transform tool available but it scales the target component using the Matrix scaling resulting in scaling the text More >