Ask a Question related to Macromedia Flash, Design and Development.
-
Larry Pike #1
PopUp Help
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");
}
Larry Pike Guest
-
popup
When I click the button for the popup, I would like to then click the screen it came from and have the popup stay. Can this be accomplished? If so... -
Is this a bug with PopUP???
I have a pop up that ask user questions and so on.. everything works fine but, when the popup is removed and created again... stuffs that worked... -
Cannot create JavaScript popup menu with Show Popup Menuusing Add Behaviors
Whenever I load a page with this added behavior and test it with my link, I get an "Error on Page" message. Here is what I am doing: Create a... -
Popup menu on popup window
Hi, I want to create a popup menu when a button on a popup window is clicked. I have this in my popup window: myMenu =... -
Popup Ads -HELP
I'm getting ads every :15min. claiming that due to a built in feature that Microsoft included in Windows XP, 2000, and NT. Does anybody have any...



Reply With Quote

