Tag Archive | digital

Simple Digital Clock using flash

May 29th, 2008

It is very simple to build a digital clock. All you need to do is follow the steps given below.

STEPS TO FOLLOW

Insert 3 layers in your time line window and name them, “background“, “text” and “actions“. Similar to the one shown below

  1. Select Frame1 of background layer, Design the framework for your digital clock.
  2. Select frame2 and press F5
  3. Now go to Frame1 of your text layer and insert Dynamic text field in your work area. Select frame2 and press F5To insert a Dynamic text field- Select text tool from your tool box,
    Select Dynamic text from Text pop-up menu in the Property inspector.
    Click on your work area wherever you want the digital clock to appear.
  4. Name this Dynamic text field instance as “clock_txt
  5. Go to frame1 of actions layer. Copy and paste the below mentioned script in the action.
  6. time=new Date(); // time object
    var seconds = time.getSeconds()
    var minutes = time.getMinutes()
    var hours = time.getHours()
    if (hours<12) {
    ampm = “AM”;
    }
    else{
    ampm = “PM”;
    }
    while(hours >12){
    hours = hours – 12;
    }
    if(hours<10)
    {
    hours = “0″ + hours;
    }
    if(minutes<10)
    {
    minutes = “0″ + minutes;
    }
    if(seconds<10)
    {
    seconds = “0″ + seconds;
    }
    clock_txt.text = hours + “:” + minutes + “:” + seconds +” “+ ampm;

  7. Now go to frame2 of actions layer and press F6 to insert a new keyframe.
    Still keeping the play head on the frame2, go to action panel and copy paste the below mentioned script.
  8. gotoAndPlay(1);

Download : Digital Clock (328)

Tags : ,

Follow me Socially

Follow me on Twitter.

Join me on Linkedln.

Join me at Facebook.

Subscribe to RSS feeds.

Subscribe to Newsletter

Quote of the day

Buddhism has the characteristics of what would be expected in a cosmic religion for the future: it transcends a personal God, avoids dogmas and theology; it covers both the natural & spiritual, and it is based on a religious sense aspiring from the experience of all things as a meaningful unity