|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
combobox change handler
I want to have a combobox that works like a javascript onclick dropdown box. When it is clicked, i want to fscommand to javascript i have written in my HTML page. can anyone find any mistakes in this code or help me? this code is in frame one, the same frame as my combo box. the combobox is named "music_combobox" and the change handler is "changehandler"
Code:
function changehandler(whichbox) {
if (whichbox == "music_combobox") {
var select = music_combobox.getSelectedItem().data;
if (select != 0) {
fscommand(playit, select);
}
else if (select == 0) {
fscommand(stopit);
}
}
}
|
|
#2
|
||||
|
||||
|
How did you tell the comboBox to trigger the function?
|
|
#3
|
|||
|
|||
|
Re: combobox change handler
Quote:
shouldnt that mean when a combo box selection is made or changed or anything else, the function is triggerd? i'm trying to do this without a button, but if i must use a button i will...but i dont know what code to use for that either because that didnt work either. |
|
#4
|
|||
|
|||
|
Re: combobox change handler
Quote:
shouldnt that mean when a combo box selection is made or changed or anything else, the function is triggerd? i'm trying to do this without a button, but if i must use a button i will...but i dont know what code to use for that either because that didnt work either. |
|
#5
|
||||
|
||||
|
right. I was asking what method you used to do this, since there are multiple ways. Here's how to do it using a listener:
Code:
music_combobox.addlistener("change", changehandler);
so when the music_combobox gets changed, the changehandler function gets called. |
|
#6
|
|||
|
|||
|
oooh...im not experienced at this. i've never heard of a listener...i'll try that then post here again when i come across another problem (which i probably will)
|
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > combobox change handler |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|