April 19, 2007
<div align=”center”>
<a href=”http://www.amazon.com/gp/product/0470102675/002-4312150-6440857?ie=UTF8&tag=everythingfle-20&linkCode=xm2&camp=1789&creativeASIN=0470102675″>
<img src=”http://everythingflex.files.wordpress.com/2007/02/0470102675.jpg” border=”0″ /><br />
Professional Flex 2</a>
</div>
Here is the <a href=”http://blog.everythingflex.com/wp-content/uploads/2007/04/proflex2toc.pdf”>final table of contents</a> for <a href=”http://www.amazon.com/gp/product/0470102675/002-4312150-6440857?ie=UTF8&tag=everythingfle-20&linkCode=xm2&camp=1789&creativeASIN=0470102675″>Professional Flex 2</a> which is due to start shipping shortly.
Leave a Comment » |
Announcements, Flex 2 |
Permalink
Posted by everythingflex
April 18, 2007
I just saw an amazing presentation on the new Flash Component Kit for Flash CS3 which shows Flash content as a full fledged citizen within Flex applications. Not only is it super easy to compile your Flash CS3 content for Flex, but Flex Builder will use the content seamlessly.
Key Features that I can remember:
- Ability to access Flash content natively within Flex using any Flex container
- Flash content can be used as a skin
- Ability to define events from within Flash content which can be accessed from Flex
- Bounding boxes to define the space the Flash content will occupy within the Flex application
- Flashframe labels can be accessed from Flex using state management
- and more that I can’t remember, anyone else who watched the Connect demo, please add comments.
Will be available Monday 4/23/2007 at http://labs.adobe.com
And Yellow Dots within Flex
(Inside Joke)
Leave a Comment » |
Announcements, Flex 2 |
Permalink
Posted by everythingflex
March 29, 2007

I built this component to allow an icon to be added to each Accordion Header where the icon is dependent on the current state of the Accordion. There are 3 possible states that are tracked, up, down, and selected. The upIcon is displayed whenever the pane is above the selected pane. The downIcon is displayed whenever the pane is below the selected pane. The selectedIcon is displayed when pane is the selected pane. See the image below.

Sample Syntax (Basic with default icons):
<eflex:AccordionIcons>
<mx:Canvas label=”Canvas”/>
<mx:VBox label=”VBox”/>
<mx:HBox label=”HBox”/>
</eflex:AccordionIcons>
Sample Syntax (Advanced with custom icons and selectedIndex):
<eflex:AccordionIcons
upIcon=”@Embed(source=’assets/icons/arrowUp2.gif’)”
downIcon=”@Embed(source=’assets/icons/arrowDown2.gif’)”
selectedIcon=”@Embed(source=’assets/icons/arrowSelected2.gif’)” height=”200″
selectedIndex=”1″>
<mx:Canvas label=”Canvas”/>
<mx:VBox label=”VBox”/>
<mx:HBox label=”HBox”/>
</eflex:AccordionIcons>
Run this demo
View/Download Source
Docs
7 Comments |
Components, Flex 2 |
Permalink
Posted by everythingflex