This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
how to add digital clock and add it to your website

here again once you done creating a webpage and if you need to add simple easy way to add clock on your website,

1#you need a flash player.
2#you might need a flash program.


1@once you create a webpage on your website depend on how you creating most people use program like webpage maker it is the easest way to create a wepage and it for beginners some use text and some use other programs like dreamwaver etc.. once you done . search on the internet and type in download digital clock first you see samples downloaded them chose the one you like and add it to your webe by going on insert flash.browse your clock flash and add it. remmber this some do type and and code for it . here are for experts

Creating a JavaScript clock





and for flash program is
1@Create new Flash file. Click File> New...
2@Select Flash Document in a new window.
3@Select "Text Tool".
4@On the Work Space create text form. Select "Dynamic Text" as you may see on the picture.
5@make a triangle.
6@make sure it is dynamic text
7@ Type "timer" in the "Var" field.
8@ Now select the frame with a text field and add action script in the "Action Script" panel
// creating new varables
var timer = new Date();
var hours = timer.getHours();
var minutes = timer.getMinutes();
var sec = timer.getSeconds();
// creating procedure to loop the time refreshing
function onEnterFrame()
{
timer = new Date();
hours = timer.getHours();
minutes = timer.getMinutes();
sec = timer.getSeconds();
// printing out the result
timer = hours + ":" + minutes + ":" + sec;
}
9@Press "Ctrl+Enter"
10@you just made clock save it and uploade to your webpage .please with do respect remmber this i help you, you help other and we help each others .

good luck

KING MAD ICE

Browser: ,3