Reset

hullo
can anyone please help me with my movie ??
i have looked everywhere trying to find the answer
what i am trying to do is to reset it to go back to the beginning

layer one has the mc

layer two has the buttons listed below on it
x
xscale
y
yscale
vis false
vis true
alpha
reset

these buttons all work -but not the reset button --is there a code that will reset the the mc so that i can repeat the functions

Well I can’t look at your code because I don’t have Flash on this machine, but I can guess.

the reset button should have the following code.

on(release){
_xscale=100;
_yscale=100;
_visible=true;
_alpha=100;
}

I’m not sure what you’re doing with _x and _y locations so I can’t say how to reset them. The above example is assuming that the object starts out full size and visible.

Am I not understanding what you’re asking?

Perhaps paste the code for each button. That might help.