# Onrollover with dynamic movie clip

**URL:** https://forum.kirupa.com/t/onrollover-with-dynamic-movie-clip/239673
**Category:** Uncategorized
**Created:** [September 24, 2007, 7:22pm UTC](https://forum.kirupa.com/t/onrollover-with-dynamic-movie-clip/239673 "2007-09-24T19:22:35Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![lordhavoc](https://avatars.discourse-cdn.com/v4/letter/l/3e96dc/32.png) [@lordhavoc](https://forum.kirupa.com/u/lordhavoc)
#### Post date: [September 24, 2007, 7:22pm UTC](https://forum.kirupa.com/t/onrollover-with-dynamic-movie-clip/239673/1 "2007-09-24T19:22:35Z")

</div>

hi

i have a movie clip that is a small dot, when i rollover it the button inside of it creates a dynamic pop up from and external .swf file,

on rollout it closes

my problem is i cant get the pop up to stay open so i can click on it to get url for a web site

an then close if i dont want to click on it

on (rollOver) {  
this.swapDepths(this.\_y);  
createEmptyMovieClip(“Holder”,-1);  
Holder.loadMovie(“FROM\_Pod\_1.swf”);  
Holder.\_x = -155;  
Holder.\_y = -125;  
}  
on (release){  
getURL (“website”)  
}  
on (rollOut) {  
prevFrame();  
}

this is attch to the button

i know this has to to be simple

thank you for your help
