Archive for the ‘Flex’ Category

Archived Adobe Flex SDKs

Seems as if the Flex SDK downloads on the Adobe SourceForge page (http://sourceforge.net/adobe/flexsdk/wiki/Downloads/) aren’t working so I decided to archive my own copies in the mean time.  Figured this might help others have download issues until Adobe fixes the links.

Download -> Flex 3.6.0.16995

Download -> Flex 4.1.0.16076

Download -> Flex 4.5.1.21328

Download -> Flex 4.6.0.23201

Adobe also has an archived page for AIR SDKs at http://helpx.adobe.com/air/kb/archived-air-sdk-version.html 

Update: It appears as if Adobes Flex SDK downloads are working again. I’m including those links here, but still keeping mine…just in case.

Adobe Flex 4.6.0 page : http://sourceforge.net/adobe/flexsdk/wiki/Download%20Flex%204.6/

Adobe Flex 4.5.1 page: http://sourceforge.net/adobe/flexsdk/wiki/Download%20Flex%204.5/

Adobe Flex 4.1 page: http://sourceforge.net/adobe/flexsdk/wiki/Download%20Flex%204/

Adobe Flex 3.6 page: http://sourceforge.net/adobe/flexsdk/wiki/Download%20Flex%203/

Android UI Components for Flex 4.5

Back during the public beta of Flash Builder and Flex 4.5, I realized I was going to need some Android UI components. I wanted the ability to have a stock Android look and feel.  So I went about building my own, and with the release of Flex 4.5 SDK, I’ve gone back and updated them a bit.  Big disclaimer: I built them for my needs, so I didn’t handle every possibility but I think they are decently robust, and hopefully it will save others some time.  I went ahead and put the component library up on github, along with a sample project using them.  Free free to use them, modify them, etc.   If you find them useful, maybe just send a friendly link my way back to this post.. or leave a comment.  Also, definitely leave comments for me here if you have suggestions or come across a huge bug I may have missed.

Screenshots:

Github link:  https://github.com/olsonjj/Flex-4.5-Android-Component-Library

Flex Builder/Eclipse MXML/AS3 Source Formatter

Way back in April, I had been looking for an Eclipse plugin to format MXML and came up blank.  Today I found one (thanks to Digital Media Minute) and it works great. I just used to clean up some old code of mine, plus reformat some code I inherited from another developer.

Flex Formatter:  http://flexformatter.sourceforge.net/ Download the .jar file and place in your Flex Builder or Eclipse plugins folder and restart FB or Eclipse.  There is a pretty extensive configuration panel that you can use to modify the formatting to your standards (Window > Preferences > Flex Formatter). Additional information on the formatting options is here: http://sourceforge.net/docman/display_doc.php?docid=137421&group_id=248408. You can also import/export your settings so you can share with your team.

FXG Complex Rectangle Experiment

I’m a bit late to the party, but started really looking at Flex4 this week … FXG in particular. I looked over the few basic FXG Shapes (Rect, Ellipsis, and Line) and thought it looked pretty limited. I had used Degrafa on a few projects and really got used to the Round Rectangle Complex and the ability to set each rectangle corner with a different radius.  The FXG Rect has the ability to set corner radius, but its every corner and lacks the the control.  So… i figured with FXG the new standard for Adobe, I’d look at how hard it would be to create a custom FXG class.

Well, not too hard at all.  I started by looking at the Rect class in Flex, and then had to hunt around for simulate Cubic Beziers using the curveTo method (Thanks Senocular for that answer).

If you want to play around with it (requires Flash Player 10):Â View Source

Cleaning up Flex Builders MXML

Can anyone recommend a Flex Builder/Eclipse plugin for cleaning up and reformatting MXML within a Flex project?Â

Return top