It's quite simple to do, sorry to come so late, I suppose you found out how to do this since last year. But in case you did not you just have to define a new color object for each text :
so on the Background scene you add this :
onSelfEvent (load) {
_root.color1 = new Color(_1_txt);
_root.color2 = new Color(_2_txt);
_root.color3 = new Color(_3_txt);
}
then on scene 1 you add
onFrame(1){
_root.color1.setRGB(0xFF0000); which sets the color of _1_txt to red
_root.color2.setRGB(0x000000); which sets the colors of the 2 others to black
_root.color3.setRGB(0x000000);
}
and do the same on scene 2 and 3
Hope it helps,
Black to Red Numbers.swi 1.36MB
9 downloads