November 2005
S M T W T F S
« Oct   Dec »
 12345
6789101112
13141516171819
20212223242526
27282930  

Archives

Archive for November, 2005

AS3 Flex 2 Simple component

So after playing with AS3 I thought I'd turn my attention to creating, or attempting to create, an AS3 / Flex component. So without further ado I unveil my SimpleButtonComponent (and it is just that LOL).
This is the Flex MXML.
PLAIN TEXT
XML:

<?xml version="1.0" encoding="utf-8"?>

<mx :Application xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns:fgComp="com.flashgen.examples.components.*">

    <fgcomp :SimpleButtonComponent />

</mx>

The following code sets [...]