Get Latest Nokia Press Release Click Here

Search in Site

Create Analog Clock In Flash

Learn To Create Analog Clock In Flash
Here You Have To Follow The Simple Steps To Make Your Own Flash Analog Clock.


Create 3 MovieClips Of Clock's Hands. Named These MovieClips As:

  • hh_mc for Hours.
  • mm_mc for Minutes.
  • ss_mc for Seconds.
After It Create A New Layer Named Action
Press F9 To Enter The Action Dialog
Now Type The Following Codes In Red Color

Fscommand2("fullscreen",true);
var n:Date = new Date();
var hhh = n.getHours();
var mmm = n.getMinutes();
var sss = n.getSeconds();
hhh = hhh + (mmm/60);
mmm = mmm + (sss/60);
hhh = hhh*30;
mmm = mmm*6;
sss = sss*6;
hh_mc._rotation = hhh;
mm_mc._rotation = mmm;
ss_mc._rotation = sss;

You Can Download My Project For Help

0 comments:

Post a Comment