-
Pop up troubles
I am having troubles where some of my pop ups have stopped working. Instead of the pic appearing in a new window at the specified size, the new window just says 'untitled' and is regular size. I have this code on the button:
on (release) {
getURL("javascript : MM_openBrWindow('brace1.html','loading','width=300 ,height=450')", "_blank");
}
Is there any hidden code in the html file/s that I may have overwritten, or can you think of any other reason why they are all not working?
-
Senior Member
Try this one (replace the URL for your own):
Code:
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.YourSite.com/thefile.html','newWin','width=300,height=450,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
You can also generate your code here
Sometimes the most simple things are the most effective...
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|