ActionScript 3 clock example in flash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:27:54Z http://stackoverflow.com/feeds/question/532953 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/532953/actionscript-3-clock-example-in-flash 1 ActionScript 3 clock example in flash Richard J. Terrell 2009-02-10T16:07:46Z 2009-07-29T06:58:07Z <p>I am currently reading the book called "Programming ActionScript 3.0" available from Adobe. After the chapter about "Working with dates and times" the book provides some examples.</p> <p><a href="http://livedocs.adobe.com/flex/3/html/help.html?content=Part6_ProgAS_1.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=Part6_ProgAS_1.html</a></p> <p>However, their archive contains only the sources for the Flex version. Here is my attempt to make it work in Flash CS4:</p> <p><a href="http://www.mediafire.com/download.php?j2gkyyntqdo" rel="nofollow">http://www.mediafire.com/download.php?j2gkyyntqdo</a></p> <p>I have changed the sources files to extend sprite instead of UIComponent, and added a little actionscript to the first frame:</p> <pre><code>import com.example.programmingas3.clock.*; var a:SimpleClock = new SimpleClock(); a.initClock(100); </code></pre> <p>This compiles and I can even see the results of my trace commands in the Output window, but the addChild in the initClock function adds nothing to the display.</p> <p>How can I fix this?</p> http://stackoverflow.com/questions/532953/actionscript-3-clock-example-in-flash/532987#532987 1 Answer by Jeff Winkworth for ActionScript 3 clock example in flash Jeff Winkworth 2009-02-10T16:15:43Z 2009-02-10T16:15:43Z <p>try adding to the code below:</p> <pre><code>addChild(a); </code></pre> <p>to add it to the stage.</p> http://stackoverflow.com/questions/532953/actionscript-3-clock-example-in-flash/1198454#1198454 0 Answer by UNKNOWN for ActionScript 3 clock example in flash UNKNOWN 2009-07-29T06:58:07Z 2009-07-29T06:58:07Z <p>Do you want More example about Clock animation using flash/flex/AIR . refer the URL</p> <p><a href="http://www.3dfreeair.com/index.php?option=com%5Fcontent&amp;view=article&amp;id=3" rel="nofollow">Click here</a></p>