


|
Ne Tentes aut Perfice -If somethings worth doing, its worth doing well |
|
Jonesthephone |






|
How do you do that ? Create a pop-up browser window |
|
In order to create and launch a controllable Pop-up window you have to use a javascript application your HTML code
<script language="JavaScript" type="text javascript"><!--function Show(Url, Name, Features){window.open(Url, Name, Features);}// --></script> Then you need to add the parameter to the individual items that you want to launch new windows for this can be either a text or Graphic objectjavascript:Show('http://www.fourthcoffee.com/', 'newwindow','toolbar=no,scrollbars=yes,resizable=yes,height=250’) The protocol being 3 elements surround by single speech marks‘websitename or file location relative to calling page’ Followed by a comma ,‘ pagename with no gaps’Followed by a comma ,‘enter attributes each comma delimited , which include Toolbar= yes or No,Menubar=yes or no,Location=yes or no,Directories= yes or no,Status=yes or no,Scrollbars= yes or no,Height =x (in pixels),Width=y(in pixels),Left= x(pixels),Top=y (pixels),Resizable=yes or no,Fullscreen=yes or no.Followed by single speech mark ‘ and closed bracket )For Microsoft Publisher users a description is included at the following URL http://office.microsoft.com/en-gb/publisher/HA011587451033.aspx?pid=CL100632931033 |
|
|