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