Joseph DeVore's Blog: Flex
- Document Object Model (DOM) Level 3 Events Specification
The Document Object Model Events Level 3, a generic platform- and language-neutral event system which allows registration of event handlers, describes event flow through a tree structure, and provides basic contextual information for each event. The Document Object Model Events Level 3 builds on the Document Object Model Events Level 2 [DOM Level 2 Events]. - Programming ActionScript 3.0
A foundation for developing applications in ActionScript 3.0. - Flex 2 API Diagram
- Cascading Style Sheets, level 2 revision 1 CSS 2.1 Specification
Cascading Style Sheets, level 2 revision 1 (CSS 2.1).
CSS 2.1 is a style sheet language that allows authors and users to attach style (e.g., fonts and spacing) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS 2.1 simplifies Web authoring and site maintenance.
Since Google indexed this page and I have the top spot for Joe's Killer Bread, I figure I'll give the link to the real bread maker, http://www.daveskillerbread.com/
Adobe has provided Flash Player technology to Google and Yahoo! that allows their search spiders to navigate through a live SWF application as if they were virtual users. The Flash Player technology, optimized for search spiders, runs a SWF file similarly to how the file would run in Adobe Flash Player in the browser, yet it returns all of the text and links that occur at any state of the application back to the search spider, which then appears in search results to the end user.
This has been a problem for a long time. Great to hear that Adobe is working with these search giants to make this happen - exciting times for RIA developers!
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical"
verticalAlign="middle"
backgroundColor="white">
<mx:Style>
CheckBox {
/* Unselected icons */
upIcon: Embed(source="assets/bullet_red.png");
overIcon: Embed(source="assets/bullet_red.png");
downIcon: Embed(source="assets/bullet_yellow.png");
/* Selected icons */
selectedUpIcon: Embed(source="assets/bullet_green.png");
selectedOverIcon: Embed(source="assets/bullet_green.png");
selectedDownIcon: Embed(source="assets/bullet_yellow.png");
}
</mx:Style>
<mx:CheckBox id="x1"
label="CheckBox Label Here..."
fontSize="10"
fontWeight="bold"/>
</mx:Application>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="vertical" verticalAlign="middle">
<mx:Script>
<![CDATA[
import mx.managers.CursorManager;
]]>
</mx:Script>
<mx:ApplicationControlBar dock="true">
<mx:Button label="setBusyCursor()"
click="CursorManager.setBusyCursor();" />
<mx:Button label="removeBusyCursor()"
click="CursorManager.removeBusyCursor();" />
</mx:ApplicationControlBar>
</mx:Application>
I plan to post my comments on the class and my findings here.

