What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Creating 'Pop-Up' Windows

Creating 'Pop-Up' Windows
Author: Message:
Supersonicdarky
Veteran Member
*****

Avatar

Posts: 2317
Reputation: 48
– / – / Flag
Joined: Feb 2005
Status: Away
RE: Creating 'Pop-Up' Windows
my version (put in body):

code:
<script language="javascript">

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',no-resizable'
win = window.open(mypage,myname,settings)
}

</script>

and for links/images:
code:
<a onclick="NewWindow(this.href,'name','400','400','yes');return false" href="http://shoutbox.menthix.net">f0RUMZ</a>

(i stole the code from the shoutbox before ;))
06-01-2006 09:31 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Creating 'Pop-Up' Windows - by Tasha on 06-01-2006 at 07:55 PM
RE: Creating 'Pop-Up' Windows - by Nathan on 06-01-2006 at 08:03 PM
RE: Creating 'Pop-Up' Windows - by Plik on 06-01-2006 at 08:05 PM
RE: Creating 'Pop-Up' Windows - by Nathan on 06-01-2006 at 08:09 PM
RE: Creating 'Pop-Up' Windows - by Tasha on 06-01-2006 at 08:17 PM
RE: Creating 'Pop-Up' Windows - by Nathan on 06-01-2006 at 08:22 PM
RE: Creating 'Pop-Up' Windows - by Tasha on 06-01-2006 at 08:26 PM
RE: Creating 'Pop-Up' Windows - by Nathan on 06-01-2006 at 08:32 PM
RE: Creating 'Pop-Up' Windows - by Tasha on 06-01-2006 at 09:21 PM
RE: Creating 'Pop-Up' Windows - by Supersonicdarky on 06-01-2006 at 09:31 PM
RE: Creating 'Pop-Up' Windows - by Nathan on 06-01-2006 at 09:32 PM
RE: Creating 'Pop-Up' Windows - by lordy on 06-01-2006 at 09:45 PM
RE: Creating 'Pop-Up' Windows - by Tasha on 06-01-2006 at 10:04 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On