Copy link to clipboard
Copied
Hi,
I need to create a simple drop down menu that when a certain option is selected it takes you to a certain frame.
So for example when Location 1 is selected from the drop down menu it goes and stops at frame 21.
I have the code in AS3 but it needs to work in HTML5 Canvas and I have very little experience working with JS.
Is someone able to help ??
Here is my AS3 code:
stop();
combobox.addItem( { label: "Please choose a location" } );
combobox.addItem( { label: "Location1" } );
combobox.addItem( { label: "Location2" } );
combobox.addItem( { label: "Location3" } );
combobox.addItem( { label: "Location4" } );
combobox.addEventListener (Event.CHANGE, changelocation);
function changelocation (event:Event) :void{
if (combobox.selectedItem.label == "Location1") gotoAndStop (21);
if (combobox.selectedItem.label == "Location2") gotoAndStop (22);
if (combobox.selectedItem.label == "Location3") gotoAndStop (23);
if (combobox.selectedItem.label == "Location4") gotoAndStop (24);
}
click window>code snippets>html5>components>combobox to see:
if(!this.cb_change_cbk) { // where this.cb is your combobox
function cb_change(evt) {
// Start your custom code
console.log(evt.target.value); // use switch/case or multiple if-statments
// End your custom code
}
$("#dom_overlay_container").on("change", "#cb", cb_change.bind(this));
this.cb_change_cbk = true;
}
if that isn't enough info to answer this (and many more questions), repost.
Copy link to clipboard
Copied
click window>code snippets>html5>components>combobox to see:
if(!this.cb_change_cbk) { // where this.cb is your combobox
function cb_change(evt) {
// Start your custom code
console.log(evt.target.value); // use switch/case or multiple if-statments
// End your custom code
}
$("#dom_overlay_container").on("change", "#cb", cb_change.bind(this));
this.cb_change_cbk = true;
}
if that isn't enough info to answer this (and many more questions), repost.
Copy link to clipboard
Copied
balasan pekok kglad itu.itu ms newbie bertanya,pelit amat
Copy link to clipboard
Copied
if you have a question, you'll need to explain it more clearly (or maybe find someone that can read your text without using a translation tool).
Copy link to clipboard
Copied
Hello Kglad,
About your combobox component code, Can you be more specific PLEASE by an example ? I mean that the code you are writing is the automatic code of adobe animate cc combobox component. But what should i write exactly to the "custom code area (Start your custom code / End your custom code)" in order to go to a certain frame when i select a specific location in the combobox?
For a example can you give me the specific custom code to add when i select "label01" location in the combobox and gotoANDstop to the frame 5 ?
Thank you so much in advance for your reply !!!
Num
Copy link to clipboard
Copied
use the value property, not the label of the combobox:
if(!this.cb_change_cbk) { // where this.cb is your combobox
function cb_change(evt) {
if(evt.target.value=="data01"){
this.gotoAndStop(5)
}
}
$("#dom_overlay_container").on("change", "#cb", cb_change.bind(this));
this.cb_change_cbk = true;
}
Copy link to clipboard
Copied
Copy link to clipboard
Copied