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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

button action

Status
Not open for further replies.

Bob2

Programmer
Jul 3, 2000
228
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
 
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
Code:
my_btn.onRelease = function(){
	getURL("[URL unfurl="true"]http://www.rrtobe.com/kst/contact.aspx",[/URL] "_blank");
}


Regards,

cubalibre2.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top