Hello,

Why does this not stop at 250?

code:

onClipEvent (enterFrame) {
_root.display = 0;
if (_root.display < 250) {
_root.display = (int(getTimer()/10));
} else {
_root.display = 250;
}
}



Thanks in advance!