Radio Station Number Build-up

Hi all, hope someone can help me, it’s urgent. I require a number count from 00.0 to 96.3, it’s for a radio station site, and is going to be part of the introduction, and to be honest I have started using a key frame for each number, and its getting very tiresome indeed. I know there is a way of achieving this, please can anyone help in layman’s terms :slight_smile:

Thank you all in advance.

Trevor Saint

well make a movieClip and put the text box in it. Select the movie clip and put this stuff in its actions

[AS]
onClipEvent(load){
this.timer = 0;
}
onClipEvent(enterframe){
this.timer += .1; // you can change this number to go
// slower or faster
this.textbox.text = this.timer;
}
[/AS]

and “textbox” is the name of whatever textbox u put inside the movieClip

And in the timeline where the movieClip is sitting… just put a keyframe 96 or whatever frames after the frame that the movieClip is sitting on

hope that helps
-Aditya
:thumb:

Thanks for that, come to think of it, Not sure if it is such a good idea. Totally at a designers block stage, have no ideas that spring to mind, how about yourself. The radio sites I have looked at are not special. I have the design I just fell some flash may be nice. Anyway thanks for you reply, and it worked. :slight_smile:

Trev