# Help me

**URL:** https://forum.kirupa.com/t/help-me/261817
**Category:** Uncategorized
**Created:** [May 31, 2008, 7:37am UTC](https://forum.kirupa.com/t/help-me/261817 "2008-05-31T07:37:34Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![gubba1986](https://avatars.discourse-cdn.com/v4/letter/g/e495f1/32.png) [@gubba1986](https://forum.kirupa.com/u/gubba1986)
#### Post date: [May 31, 2008, 7:37am UTC](https://forum.kirupa.com/t/help-me/261817/1 "2008-05-31T07:37:34Z")

</div>

hi,  
I made one gallery page in flash, I gave motion tween in a movieclip  
but i want stop the motion tweening on mouse over

please help  
it is urgent

Thanx,  
Srikanth

---

<div class="post-metadata">

### Author: ![explor3](https://avatars.discourse-cdn.com/v4/letter/e/b5a626/32.png) [@explor3](https://forum.kirupa.com/u/explor3)
#### Post date: [May 31, 2008, 6:04pm UTC](https://forum.kirupa.com/t/help-me/261817/2 "2008-05-31T18:04:42Z")

</div>

put all your animations in a movie clip and give it an instance name my\_mc and put this actions on this movie clip:

```auto
my_mc.onRollOver = function() {
    this.stop();
};

```
