Can you clarify these what action should i give to the "go" button & where should i place this
function toFrame(){
frame = Number(myCombo.selectedItem.data) + Number(myOtherCombo.selectedItem.data)
_root.gotoAndStop(frame)
}
for reference i am sending you the file
http://www.acmevac.com/flash-files/combo-double.zip-----------------------------------------------------------------------------
I had been successful with the script of combo box. I had also applied it to list box in the same file with script like this
combo box "myCombo" script
listener = new Object()
listener.change = function(obj){
_root.gotoAndStop(obj.target.selectedItem.data)
}
myCombo.addEventListener("change", listener)
& for list box "myList01" script
listener01 = new Object()
listener01.change = function(obj){
_root.gotoAndStop(obj.target.selectedItem.data)
}
myList01.addEventListener("change", listener01)
When i select a category from combo box, it opens list box but when i click it does not perform but when once again i click on combo box & select different category then it works.
I want to create no. of list box when clicked on combo category. kindly help me out
I am giving reference file
http://www.acmevac.com/flash-files/combo-list.zip