# Scroll navigation

**URL:** https://forum.kirupa.com/t/scroll-navigation/142427
**Category:** Uncategorized
**Created:** [March 28, 2005, 8:41pm UTC](https://forum.kirupa.com/t/scroll-navigation/142427 "2005-03-28T20:41:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![marathon\_ben](https://avatars.discourse-cdn.com/v4/letter/m/439d5e/32.png) [@marathon\_ben](https://forum.kirupa.com/u/marathon_ben)
#### Post date: [March 28, 2005, 8:41pm UTC](https://forum.kirupa.com/t/scroll-navigation/142427/1 "2005-03-28T20:41:43Z")

</div>

I’d like to recreate the navigation used on this site: [http://www.scottmillerstyle.com](http://www.scottmillerstyle.com)

So I created a button with an image on the up frame, a looping component on the over frame. But when I test it, i get nothing.

I also tried using movie clips with onrollover and onrollout, and it will start looping, but won’t stop.

```auto
stop();

_root.button.onRollOver = function() {
	gotoAndStop(5);
}

```

this part works, and I get the loop, however when I do try this:

```auto
stop();

_root.loop.onRollOut = function() {
	gotoAndStop(1);
}

```

It refuses to return to frame one.

Any ideas about my problem? is there a better way to do this?

Thanks,  
-b
