# \[F8\] link to scene from RollOver

**URL:** https://forum.kirupa.com/t/f8-link-to-scene-from-rollover/239821
**Category:** flash
**Created:** [September 26, 2007, 10:34am UTC](https://forum.kirupa.com/t/f8-link-to-scene-from-rollover/239821 "2007-09-26T10:34:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![namelesspace](https://avatars.discourse-cdn.com/v4/letter/n/f4b2a3/32.png) [@namelesspace](https://forum.kirupa.com/u/namelesspace)
#### Post date: [September 26, 2007, 10:34am UTC](https://forum.kirupa.com/t/f8-link-to-scene-from-rollover/239821/1 "2007-09-26T10:34:16Z")

</div>

Hi everyone…i took AS from this site which makes RollOver & Roll Out. all i need is to link it to a scene in the flash file and not to an URL as it is now…is this possible ?!

i tried Goto but it didn’t work ?!

Thanx

this is the code:

```auto

//stop();
 
this.onEnterFrame = function(){
if(rewind == true){
prevFrame();
}
}
 
this.onRollOver = function(){
rewind = false;
play();
}
 
this.onRollOut = function(){
rewind = true;
}
 
this.onRelease = function(){
getURL("[http://www.kirupa.com","_blank](http://www.kirupa.com)");
}

```
