Jump to content
xisto Community
Sign in to follow this  
flash4satheesh

Digital Time Create a Digital Time in flash.

Recommended Posts

Digital Time

1.Create a Text Field and Create set them instance name = time.
2.Select the first Frame.
3.Press F9 and Copy Code Below and paste it.

_root.onEnterFrame = function() {	var time:Date = new Date();	hour = (time.getHours()<=12) ? time.getHours() : (time.getHours()-12);	hour = (hour<10) ? ["0"+hour] : hour;	second = time.getSeconds();	second = (second<10) ? ["0"+second] : second;	Minutes = time.getMinutes();	Minutes = (Minutes<10) ? ["0"+Minutes] : Minutes;	_root.time.text = [hour+"."+Minutes+"."+second];};

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.