Hi all,
*
“Because creating ActionScript components is an advanced topic
(we could write a book on it!), we cover only MXML components in this chapter.”***
This bores me a little because i cant find a book which references this topic.
My programming knowledge entirely comes from a AS3 Flash runtime perspective. Flex has never interested me in a MXML way. However, i have toyed with it.
The reason i want Actionscript Components is purely because its an advanced topic. If i can merge my AS3 with the power of the Flex Framework, then its a new dawn for me.
Where can i go to learn about this? It seems that if you google anything on Flex, it talks about MXML… similarly, if you google “Flex SDK4” then you get pages and pages on MXML with little or no mention of AS3. I only found the Vector class when i wrote it by mistake… The process of learning things from an “Actionscript Perpective” is a pain the balls.
In other words, i want this:
var button:Button = new Button ();
button.addEventListener(MouseEvent.Click, onClick)
and not this:
<mx:Button id=“button” onClick="{onClick}" />