thenobody, credo che summerday volesse riprodurre dal 15simo al secondo frame.
La sparo:
al Movie Clip img associ questo codice:
codice:
onClipEvent (enterFrame)
{
if(this.muoviti)
{
if (this.verso)
{
if(this.currentFrame < 12)
{
this.nextFrame();
}
else
{
this.muoviti = false;
}
}
else
{
if(this.currentFrame > 2)
{
this.prevFrame();
}
else
{
this.muoviti = false;
}
}
}
}
Al pulsante invece:
codice:
on(release)
{
_root.img.verso = !(_root.img.verso);
_root.img.muoviti = true;
}
Non ho modo di testarlo... prova e fammi sapere!