Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

whats wrong with this open window script?

Status
Not open for further replies.

Horrid

Programmer
May 20, 1999
373
The javascript section of this script works fine if called directly but when called from VBscript it doesn't open the page. Any ideas? Currently only tested under IE5 on Pc.

<SCRIPT language=&quot;vbscript&quot;>
sub shockwave_ExternalEvent(byVal aCommand)
call openURL(&quot;end sub
</SCRIPT>
<SCRIPT language=&quot;javascript>
var windowID
function openURL(passedFromShockwave){
windowID = window.open(passedFromShockwave);
}
</SCRIPT>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top