ActionScript 3 clock example in flash - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T05:27:54Zhttp://stackoverflow.com/feeds/question/532953http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/532953/actionscript-3-clock-example-in-flash1ActionScript 3 clock example in flashRichard J. Terrell2009-02-10T16:07:46Z2009-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#5329871Answer by Jeff Winkworth for ActionScript 3 clock example in flashJeff Winkworth2009-02-10T16:15:43Z2009-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#11984540Answer by UNKNOWN for ActionScript 3 clock example in flashUNKNOWN2009-07-29T06:58:07Z2009-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&view=article&id=3" rel="nofollow">Click here</a></p>