Simple mathematical troubles

I’m a bit rusty with my Flash skillz from not having touched Flash in quite a few months. So I have a very simple question.

I have a dynamic textbox represented by the variable “sidereal” with an initial value of 00.00, and I want it to continually increment by 0.38.

The code I have right now is:


onClipEvent(enterFrame) {
	_root.sidereal=sidereal+0.38;
}

But the output that gives me is “0.38” and it then doesn’t increment after that point. Also I would like it to say “00.38” if at all possible.

Thanks in advance for any help… Sorry to trouble you with such a nitpicky detail, but I seem to be having a braindead moment today. :frowning: