# Tesssssssssssst

**URL:** https://forum.kirupa.com/t/tesssssssssssst/23044
**Category:** Uncategorized
**Created:** [June 12, 2003, 5:39am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044 "2003-06-12T05:39:56Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![GarBageBaDger](https://avatars.discourse-cdn.com/v4/letter/g/f05b48/32.png) [@GarBageBaDger](https://forum.kirupa.com/u/GarBageBaDger)
#### Post date: [June 12, 2003, 5:39am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/1 "2003-06-12T05:39:56Z")

</div>

testing…?

---

<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: [June 12, 2003, 6:37am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/2 "2003-06-12T06:37:15Z")

</div>

hmm  
how can i keep the movie repeating until a rollover  
then to play the next frames or scene once someone rollsover  
because the gotoAndplay(1); option dosn’t work  
it wont allow rollovers for some reason  
any help?

---

<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: [June 12, 2003, 6:52am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/3 "2003-06-12T06:52:44Z")

</div>

Here’s an idea:  
Put the repeating thingy on frame 1 in a mc. Also, make the a really big button on the bottom layer the size of the movie. Then apply this code to the main timeline, frame 1:  
[AS]  
stop();  
button.onRollOver = function() {  
gotoAndStop(2);  
}  
[/AS]  
that should do it…

Here is an example .fla with the big button and the AS. I didn’t include the mc, tho. You can do that 🙂

[http://members.cox.net/fazala/examples/blah.fla](http://members.cox.net/fazala/examples/blah.fla)

---

<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: [June 12, 2003, 7:03am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/4 "2003-06-12T07:03:17Z")

</div>

Actually, after reading your post again, change that gotoAndStop in my code to gotoAndPlay…

---

<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: [June 12, 2003, 9:04am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/5 "2003-06-12T09:04:03Z")

</div>

lmao  
NOOO  
you were supposed to help!  
but hey glad i could

---

<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: [June 12, 2003, 9:05am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/6 "2003-06-12T09:05:04Z")

</div>

oh u did try to help  
heh i only say the bottom post  
thanks! ill try and post back!

---

<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: [June 12, 2003, 9:21am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/7 "2003-06-12T09:21:42Z")

</div>

> \*Originally posted by sushis \*  
> \*\*Here’s an idea:  
> Put the repeating thingy on frame 1 in a mc. Also, make the a really big button on the bottom layer the size of the movie. Then apply this code to the main timeline, frame 1:  
> [AS]  
> stop();  
> button.onRollOver = function() {  
> gotoAndStop(2);  
> }  
> [/AS]  
> that should do it…

Here is an example .fla with the big button and the AS. I didn’t include the mc, tho. You can do that 🙂

[http://members.cox.net/fazala/examples/blah.fla](http://members.cox.net/fazala/examples/blah.fla) \*\*

see the thing is if you look closley…i got a tweened image rotation in the upper right hand corner…both images go for about 20 frames…so after that i hit a gotoAndPlay(1); to repeat the movie clip and keep it rotating…  
i was wondering if there is any ANY way to keep it rotating…and at the same time on (RollOver) { gotoAndPlay (“scene 2”, 1);}  
something like that  
i dont know i tried that but it didnt work for this instance…  
if it comes down to it ill show u the fla

---

<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: [June 12, 2003, 9:35am UTC](https://forum.kirupa.com/t/tesssssssssssst/23044/8 "2003-06-12T09:35:45Z")

</div>

alrite well i did it  
with your help  
i fixed the code  
[AS]  
on (rollOver) {  
gotoAndPlay(“Scene 2”, 1);  
button.onRollOver = function() {  
gotoAndPlay(1);  
};  
}

[/AS]

you had a few things mixed up  
but overall it helped (with my edting)  
thanks man  
check out my footer now
