[Flash 8 Actionscript]
I feel like this is easy, but I can’t figure it out.
I have a combobox with a list of flavors (Apple, Apple Mint, etc…) and there Data is (1,2, etc…)
I also have a empty MC that loads png’s when the flavor is changed:
function dropdown_check() {
if (dropdown.getValue() == 2) {
loadMovie("../images/Lounge/Flavors/Apple.png", flavLoad);
}
if (dropdown.getValue() == 3) {
loadMovie("../images/Lounge/Flavors/AppleMint.png", flavLoad);
}
else {
}
}
Now how do I get the combobox to load these movie’s when the value is changed?
Thanks,
Case