Download Class Diagram and FrameWork Diagram of Flex.[ At my Blog ]

February 11, 2008

To get a clear picture of the FLEX and its API you have to look at its Class Daigram and Framework Diagram Frequently.usually we dont find time but i suggest to frequent visit to these two pdf’s makes our brains healthy on FLEX and we become RICH in those areas.With these RIA.

This is the Class diagram of Flex, various Classes with its methods and Attributes are given init.

Flex-Class diagram

This is the FramWork Diagram of Flex.you can find diffent methods of Classes inti.

Flex-FrameWork Diagram.

Let us become “rich in minds” with these RIA’s FLEX.


Change the default cursor in Flex with Actionscript code:

February 11, 2008

Here the Class we got to use is CusrsorManager and some methods in it.

The following example shows the custom cursor on a Flex App.

[Embed(source="images/cursorME.gif")]
public static const loaderCursor:Class;
var cursorId:int = CursorManager.setCursor(loaderCursor); 

The code will set the cursor ,to remove it use the line of code.

CursorManager.removeCursor(cursorId);

Thats it the default cursor is changed.