First of all: 25 min between your posts! Let people get a chance to check it out first!

Well; i downloaded the file, and found one button script repeated over all your frames:
Code:
on(rollOver){
gotoAndStop(2);
}
How are you planning on going from frame 2 -> 10??

make a movie clip with just the animation on it from frame 1->10 (as you have) , drag it to the scene and name it "man", drag a button to the stage and attach the following to it:
Code:
on(rollOver){
    tellTarget("_root.man"){
        gotoAndPlay(2);
    }
}
That should do it
[Edited by nucleuz on 04-26-2002 at 08:43 PM]