PDA

View Full Version : getURL from FComboBox


eggnogg
06-05-2003, 02:54 PM
how can i do thiS? how can i load an url when i select an item from the comboBox?

regrads
eggnogg

farafiro
06-08-2003, 10:29 AM
//name the combo Box "fsc"
//put some lables in the property panel of it mine is "visit_me"
//in the last tab of its property panel, write the name of your function mine is "doIt"
//then in the AS
function doIt(){
if(fsc.getValue == visit_me){
getURL("http://www.actionscript.org")
}
}