I am trying to create a button that is contained within a tween; is this possible? I can’t seem to get it right.
Hmmm…
ok, I have a tween where a button is blinking from transparent to visible…and on the button I have this script:
on (rollOver) {
tellTarget ("/rollover") {
gotoAndPlay (“1text”);
}
}
on (rollOut) {
tellTarget ("/rollover") {
gotoAndPlay (“1back”);
}
}
I’ve done this before, but last time the buttons were not on tweens, so now I’m having problems.
also, at the end of tween i have this script.
gotoAndPlay(72);
So that the button will keep blinking. Not sure if this affects anything at all…need help!