I have a dynamic text box that follow the mouse, giving information on rollover.
on (press, release, rollOver, dragOver) {
_root.mouse.info = "Coins per second: "+_root.cps1+newline+"Coins collected: "+_root.coins1;
}
_root.cps1 changes very quickly (+3 per second), the text box only re-updates (changes the value) everytime I roll in / out, how can I make it constantly update.
Thanks in advance.