How can I make a movie clip appear (a tick for correct response in this instance) for a few seconds then disappear using script and without having to jump to another frame?
I’m using the following code to evaluation whether the user drags the object to the correct mc.
on (press) {
startDrag("");
}
on (release) {
stopDrag();
if (this._droptarget == “/mccau”) {
_root.answer1 = "1";
_root.scroll.btn1.enabled = false;
_root.mc1._visible = false;
_root.tick._ = true;
//_root.gotoAndPlay ("yes");
setProperty(this, _x, 397.6);
setProperty(this, _y, 323.4);
} else {
//_root.d32 = false;
_root.cross._visible = true;
setProperty(this, _x, 387.7);
setProperty(this, _y, 440.9);
}
}
using _visible doesn’t work cause I only want to display the feedback for a few seconds.
Any ideas?
Cle