Archive for the ‘Flex’ Category

Adobe Flex Builder 3 Download

Posted: November 9, 2011 in Flex

I had to track down a download location for Adobe’s Flex 3 install today. It was a little hard to find so I thought I’d share this link for a Windows install: http://download.macromedia.com/pub/flex/flex_builder/FB3_win.exe Why it’s at a macromedia.com address I have no clue, but hope this helps someone out. This defaults to a 60 day [...]

Flex Learning Paths

Posted: November 21, 2008 in Flex

Adobe added a new resource to help everyone including designers, web developers, programmers, managers and architects learn Flex the way they need to. It’s called http://www.adobe.com/devnet/flex/learn/. I can’t wait to dive in and make use of this. From what I’ve seen so far, it includes real-world examples, videos, links, white papers, articles, excercises, quick starts, and [...]

Adobe Cairngorm Plugin

Posted: November 20, 2008 in Flex

For me, the Cairngorm Flex Framework has been a bit challenging. Keeping up on different frameworks and libraries for Flex, ColdFusion, JavaScript, etc. can be a bit daunting. So every bit of help is a blessing. Adobe has released an Eclipse Cairngorm Plugin “that augments Flex Builder to provide tooling that improves productivity when developing [...]

Binding in Flex via Actionscript

Posted: September 17, 2008 in Flex

Here’s an example I created to bind a text field with a label. This needs to be done with you are dynamically creating components inside of your app instead of using MXML. Be sure to use the if statement on the unwatch function to avoid an error for null pointing.

Automatic Logger via Trace for Flex

Posted: September 15, 2008 in Flex

Here’s a great tool to help with Flex debugging. Put <mx:TraceTarget /> into your code and run your app in debugging mode. You will see valuable debugging information appear in the console area. Great for hassling with remoting like ColdFusion CFC’s. Form more info: Adobe Flex 3 Language Reference TraceTarget

Flex Project Not Saving Project Properties

Posted: September 15, 2008 in Flex

I have a Flex project that I copied in from another source to work on. I changed around some output properties and library paths via the Properties context menu for the project. The changes would hold while Flex was open, but it would never update the .actionScriptProperties file, thus when Eclipse was restarted, the changed [...]

Removing array items by index

Posted: August 26, 2008 in Flex

When removing items from an array via its index number, remember to always start from the end and work your way to the beginning. If you don’t, and are removing more than one item, the index you where looking for will no longer be the correct item because one or more have already been removed [...]