Help please...
I've got a picture page on my bands web site.
What I want to do is use the PopUpManager to open a window when you click on
the thumbnail for each picture. There is three items in the same area,
Picture, ph1, and a Button.
ph1 is a symbol that makes the picture highlight. The Button is where the
script resides.

How do I enable the click after the rollOver?? Any thoughts, or am I way off
base? Any clues would help...
Thanks in advance,
Larry

The code I'm using on the Button is...

//shimmer effect
on(rollOver){
ph1.gotoAndPlay(2);
/*display window with photo
on(press){
var myPW = PopUpManager.createPopUp(this, Window, true,
{closeButton: true});
myPW.content,"Rodent1";
//Should scale the PopUp to the Photo's size
lo = new Object();
lo.handleEvent = function(evtObj){
if(evtObj.type == "complete"){
this.myPW.setSize(myPW.content._width,
myPW.content._height +25);
}
}
windowListener = new Object();
windowListener.click = function(evt){
this.myPW.deletePopUp();
}
myPW.addEventListener("click", windowListener);
}*/
}
//removes shimmer effect
on(rollOut){
ph1.gotoAndPlay("go");
}