If you ever got into the following error (see bellow after this paragraph) you must know how you can overcome it.
The error is triggered only in debugging. No trace of it in the normal run. But if you need to debug and get this error it will pause the debug session and even after [...]
In a current project I run on the following problem: didn’t see a blur filter applied on a background. Started debugging and even though was no error neither compile errors nor runtime. But a the Flex Builder console panel, where traces appear, a special output text warning appeared:
Warning: Filter will not render. The DisplayObject’s filtered [...]
I think many of you want to develop applications for Flash Player 10 using Flex but without a debugger this is almost impossible. So if you want the Flash Player 10 Debug version directly download this archive from Adobe.
More about this on this page where you can find many other versions of flash player: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1.
Yesterday I’ve been working with images: loading, resizing, removing, etc. I got into a challenging issue: I had to vertically position a label after an image resize – but a resize that is triggered by setting maxWidth and maxHeight keeping also the aspect ratio.
I tried to get the new width and height after the resize [...]
These day I’ve been fighting with this issue: trying to get the Flexer XML feed from FeedBurner into a Flex application. As many of you may know FeedBurner serves the XML with an XSL and browsers that know XSL will parse it and display it in a nicer way that a simple xml.
The problem is [...]
Although Flex Builder and Eclipse do have nice debug utilities built in, today I needed a function/method in Actionscript to display into the current application some variables’ content. So I started to implement a var_dump alike function (var_dump from PHP language).
So I started and I made the Debug class that will implement the static dump [...]