Welcome to Virtual Tutorial World Guest!



Make a Digital Clock

 
Post new topic   Reply to topic    VTW Forum Index -> Actionscript
View previous topic :: View next topic  
Author Message
Please Register and Login to this forum to stop seeing this advertsing.





Tokens:


Posted:     Post subject:

Back to top
computergeek67
Administrator
Administrator


Joined: 31 Jul 2007
Posts: 144


Tokens: 147
Location: US

PostPosted: Sat Mar 15, 2008 10:02 am    Post subject: Make a Digital Clock Reply with quote

Step 1: Create a Blank Flash Document
Start by creating a new Flash Document about 150x40 pixels, make sure you set it to ActionScript 2.0...  

Step 2: Create a Dynamic Text that stretches across the frame
Start by selecting the Text Tool and dragging it across the frame to make a text. Then under the properties panel, change it from Static text to Dynamic Text... After you have done this, set the Variable area (Var: ) to the variable Time



Step 3: Add the code to the frame
We are going to use the variables, sec, min, hour, and ampm during this process

Code:
// Create a new clock
 mydate = new Date();</p> <div class="codemain">
 // Set the variables to the correct times
 sec = mydate.getSeconds();
 min = mydate.getMinutes();
 hour = mydate.getHours();
 ampm = " AM";
 
 if(sec &lt; 10) sec = "0" + sec;
 if(min &lt; 10) min = "0" + min;
 if(hour &gt; 12){
 hour -= 12;
 ampm = " PM";
 }
 if(hour &lt; 10) hour = "0" + hour;
 
 Time = hour + ":"  + min + ":" + sec + ampm;


Step 4: Stretch the frame out so it runs continuously
Here we want to right click frame 2 and press insert frame



VIEW THE RESULT BELOW


-Project Finale Deigns





_________________



Come to me if you have any questions
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    VTW Forum Index -> Actionscript All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Card File  Gallery  Forum Archive
Powered by phpBB © 2001, 2005 phpBB Group
Virtual Tutorial World ©2007-2008 computergeek67

Affiliates