Skip to main content
January 24, 2007
Question

Link to web page from Combo box

  • January 24, 2007
  • 1 reply
  • 167 views
I made a Combo box and name it comboBox3 ...cause I have 3 combo boxes
How I suppose to create a link from what I wrote in the labels
lets say one of my label his name is first.....How do I create link from the first label to the web page I have....(lets say the link of this page is http://www.cnn.com...?
what do I need to write in the action panel ?
This topic has been closed for replies.

1 reply

Participating Frequently
January 25, 2007
For comboBox3 parameters,
set the label [Adobe, Google, CNN]
set the data [ http://www.adobe.com, http://www.google.com, http://www.cnn.com
attach the following script to the comboBox3 instance:

on (change) {
getURL(this.selectedItem.data);
}