Newest Articles

Photo Reel
Image Color Tinting using Actionscript
3d Rotating Image Cube
Image Slider with Easing
Catapult Game
Mp3 Player with XML Playlist


Popular Articles

True Fullscreen Flash Mode
FLV Player
Image Slider
Mp3 Player with XML Playlist
Album Slide
Page Flipper


Random Articles

Drivable Car
Gilbert
Bouncing Ball with Smoke Effect
Custom Mouse Cursor
Image Color Tinting using Actionscript
3d Rotating Image Cube


Links

Foundation-Flash
Tutorial4Me
MickM
TutorialQuest
Tutorialsphere.com - Free Online Tutorials
Photochopz
Newgrounds
TWiT
Link to SwfSpot
Swf Spot



rss feed

12 Hour Clock with Hands

12 Hour Clock with Hands
AddThis Social Bookmark Button
Description: An analog-style clock with hour, minute, and second hands
Author: John Bezanis
Added: February 6th 2007
Version: Flash 8
Total Views: 4244
Views in the Past 7 Days: 71


Here's a simple example of a clock with hands. It uses the windows time. This is all of the actionscript required to get the clock working:
  1. onClipEvent(enterFrame){
  2.   var time = new Date();
  3.   this.seconds._rotation=time.getSeconds()*6-90;
  4.   this.minutes._rotation=time.getMinutes()*6-90;
  5.   this.hours._rotation=(time.getHours()%12)*30-90;
  6. }

The source file is available below for download.
Download Source File
Questions and Suggestions
Your staff is ok and useful too! Keep it up. Please can you give us digital clocks, calculators and calendars?
January 11th 2008 04:01AM   -   Emmanuel Aigbovbiosa
A digital clock would be something like this: sometextbox=time.getHours()+":"+time.getMinutes()+" "+time.getSeconds();
January 11th 2008 06:01AM   -   John
Add a Question or Suggestion
name:
website (optional):
captcha type the characters into the box
message (5000 characters or less):