hi, i found this swf file and i kinda like the animation in this… but i don’t how to implement this in flash… may i request some assistance. thanks
// Action script…
// [Action in Frame 1]
stop();
// [Action in Frame 6]
tellTarget("/ImagesMasked/Images")
{
_x = _x - 100
_x = _x * 0.8
_x = _x + 100
} // end of tellTarget
// [Action in Frame 7]
prevFrame();
play();
// [Action in Frame 16]
tellTarget("/ImagesMasked/Images")
{
_x = _x - 0
_x = _x * 0.8
_x = _x + 0
} // end of tellTarget
// [Action in Frame 17]
prevFrame();
play();
// [Action in Frame 26]
tellTarget("/ImagesMasked/Images")
{
_x = _x - -100
_x = _x * 0.8
_x = _x + -100
} // end of tellTarget
// [Action in Frame 27]
prevFrame();
play();
//For the buttons:
// Action script…
on (rollOver)
{
tellTarget("/")
{
gotoAndPlay(“Move Image 1”);
} // end of tellTarget
}
¿hmmmm? … methinks this is more what you need::
…you could alter it to make the mask round, diff size, etc. … just compensate in the code that aligns the masked clip to the mask’s frame
…and you could change the triggering event to a rollover instead of onRelease
hope this helps
¿hmmmm? … methinks this is more what you need…
–I took the code directly from the .swf he posted, so methinks he needed what i posted…