|
|
Search Tutorials
1)1st frame:make 3 movie clips(MC) ; one for hour, one for minutes, one for seconds. in my fla I named them; jam for hour; minit for minutes; saat for second. 2)now in the MC jam. make 12 movieclips of numbers; 1 to 12. and arrange them as what in a clock should be.named all the movieclips of numbers. 3)in the MC saat. arrange number 5 to 60 with increment of five as in the clock note: when arranging the numbers make sure they are equally centered.so the width and height of the movie clips are equal. 4)now make the hands. put them to point 10:10. 5)in the frame 1;
_root.onEnterFrame = function() {
// create a date
myDate = new Date();
//
//rotate movieclip jam,minit,saat
jam._rotation = -(myDate.getHours()*30+(myDate.getMinutes()/2)+60);
minit._rotation = -(myDate.getMinutes()*6+(myDate.getSeconds()/10)-60);
saat._rotation = -(myDate.getSeconds()*6)+30;
//rotate the numbers as thier parent clip rotates
jam.satu._rotation=-(jam._rotation);
jam.dua._rotation=-(jam._rotation);
jam.tiga._rotation=-(jam._rotation);
jam.empat._rotation=-(jam._rotation);
jam.lima._rotation=-(jam._rotation);
jam.enam._rotation=-(jam._rotation);
jam.tujuh._rotation=-(jam._rotation);
jam.lapan._rotation=-(jam._rotation);
jam.sembilan._rotation=-(jam._rotation);
jam.sepuluh._rotation=-(jam._rotation);
jam.sebelas._rotation=-(jam._rotation);
jam.duabelas._rotation=-(jam._rotation);
};
//addition
fscommand("allowscale",false);
fscommand("showmenu",true);
fscommand("fullscreen",false);
|
||||||||||||||||||||||||||||||||||||||||||||||||
![]() |
|||||||||||||||||||||||||||||||||||||||||||||||||
|