Okay, maybe I’m a dummy, but I can’t comprehend how to use setInterval. I think this is what I need to use to do what I want to do, as shown in the ActionScript (2.0) I’ve pasted here:
bhold.buttonBlue.onPress = function() {
if (ohpNameRed._y == 0) {
MoveNameDn(ohpNameRed, 60, .3);
//i want a second or so delay before the following code is executed MoveNameUp(ohpNameBlue, 0, .4);
FadeClip(small_butts, “in”);
} else {
MoveNameUp(ohpNameBlue, 0, .4);
FadeClip(small_butts, “in”);
}
};
The commented line tells what I want to achieve. I’ve searched for all tutorials, etc. regarding this, and there’s something eluding me… so call me stupid if you’d like… Just lend a hand!
thanks in advance!