Nov 21, 2003 #1 Bob2 Programmer Joined Jul 3, 2000 Messages 228 Location SE Hi I have created a button and assigned this script to it... my_btn.onKeyUp = function() { getURL("contact.aspx", "_blank" } but nothing happend when I click the button in IE Am I missing something here? Regards M
Hi I have created a button and assigned this script to it... my_btn.onKeyUp = function() { getURL("contact.aspx", "_blank" } but nothing happend when I click the button in IE Am I missing something here? Regards M
Nov 21, 2003 #2 oldnewbie Technical User Joined Dec 6, 2000 Messages 9,142 Location CA Make sure your button has the instance name of "my_btn". It cannot be only it's Library name... Code: my_btn.onRelease = function(){ getURL("[URL unfurl="true"]http://www.google.com",[/URL] "_blank"); } Use the full URL, including the http://... Code: my_btn.onRelease = function(){ getURL("[URL unfurl="true"]http://www.rrtobe.com/kst/contact.aspx",[/URL] "_blank"); } Regards, Upvote 0 Downvote
Make sure your button has the instance name of "my_btn". It cannot be only it's Library name... Code: my_btn.onRelease = function(){ getURL("[URL unfurl="true"]http://www.google.com",[/URL] "_blank"); } Use the full URL, including the http://... Code: my_btn.onRelease = function(){ getURL("[URL unfurl="true"]http://www.rrtobe.com/kst/contact.aspx",[/URL] "_blank"); } Regards,