# May i request help on this.. :D

**URL:** https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601
**Category:** Uncategorized
**Created:** [August 15, 2003, 3:23pm UTC](https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601 "2003-08-15T15:23:25Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![kyutipay](https://avatars.discourse-cdn.com/v4/letter/k/ac91a4/32.png) [@kyutipay](https://forum.kirupa.com/u/kyutipay)
#### Post date: [August 15, 2003, 3:23pm UTC](https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601/1 "2003-08-15T15:23:25Z")

</div>

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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 15, 2003, 4:00pm UTC](https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601/2 "2003-08-15T16:00:48Z")

</div>

// 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  
}

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 15, 2003, 4:52pm UTC](https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601/3 "2003-08-15T16:52:54Z")

</div>

¿hmmmm? … methinks this is more what you need::

[\>\>\>THIS\<\<\<](http://www.kirupa.com/developer/flash5/slidingmenu.htm)

…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

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 20, 2003, 11:10pm UTC](https://forum.kirupa.com/t/may-i-request-help-on-this-d/28601/4 "2003-08-20T23:10:07Z")

</div>

¿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…
