Hey Guys,
Just wondering if anyone can help out on this...
Im in Flash cs3, Working action script 1 - 2 (not 3)
And I'm looking to make a drop down combo box, and when you select one of the entries, the timeline goes to the frame with that marker text.
I've got it pieced together, but it's not going anywhere...the drop down works, and gets populated, but it won't actually move the timeline...
Any thoughts?
Cheers!
[quote]function cbUpdate() { choice = _root.comboBox.getSelectedItem().data; //choice is now inside the function _root.gotoAndPlay(choice); }
_root.comboBox.setChangeHandler("cbUpdate");
_root.comboBox.setChangeHandler("change"); _root.comboBox.addItem("Home","Main Start"); _root.comboBox.addItem("Online Advertising", "OnlineAdvertising"); _root.comboBox.addItem("Enhancing Placement", "EnhancingPlacement"); _root.comboBox.addItem("Enhancing Content", "EnhancingContent"); _root.comboBox.addItem("Search Engine Exposure", "SearchEngineExposure");