pausing a flash loop
pausing a flash loop
Out of context: Reply #1
- Started
- Last post
- 1 Response
- ganon0
this is what i have now, still doesnt work...:
//first frame root
loop01Position=loop01.position/1...
_root.createEmptyMovieClip ("loop01Mc",1);
loop01=new Sound(loop01Mc);
loop01.attachSound("loop_one");
loop01Volume=15;
loop01Volume2=5;
loop01.setVolume(loop01Volume);//frame 5 root
_root.loop01.start(_root.loop01P...//actions on button, which is in a MC (exit) on the stage
on (release) {
fscommand ("quit");
_root.loop01.stop("loop_one");
_root.loop01Position=0;
}on (rollOver) {
this.gotoAndStop (7);
_root.loop01.stop("loop_one");
}on (rollOut, dragOut) {
this.gotoAndStop (6);
_root.loop01.start(_root.loop01P...
}thank you....