I am using the code below which I would like to include the possibility of changing the colour of the text inside a button, is that even possible?
code:
for (mc in this) {
this[mc].onPress = startDrag;
this[mc].onRelease = stopDrag;
}
thisLevel = this
for (i = 0; i<= 3; i++) {
thisLevel ["circle"+i].onPress = stopDrag;
this["circle"+i].onRelease = stopDrag;
}
