Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: RE: [flasher] play a movieclip on mouseDown
From: Phillip Kerman
Date: Thu, 25 Jan 2001 01:59:22 -0000

On the button:
on (press) {
theClip.animate=1;
}
on (release) {
theClip.animate=0;
}


On the clip instance(not in the clip):
onClipEvent (enterFrame) {
if (animate){
nextFrame ();
if (_currentframe == _totalframes) {
gotoAndStop (1);
}
}
}

I know Director real well too... I think it's probably easier in Flash.

Phillip



[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]