Combobox works in swf file, but not in container

Hey there,

I’m working on a website using the combobox to control multiple functions. One controls the color, the other controls the lights. I have my “products” file as a separate swf file, which I am plugging into my main site using an empty container. The functionality of the swf works great when I test it on its own, but once I plug it into the main file it doesn’t work. Help!!!

The swf file:
http://www.vliteusa.com/products.swf (only green and red work)

The main site:
http://www.vliteusa.com

Here is the code I am using to control my comboboxes:
var myListener:Object = new Object();
colors_cb.addEventListener(“change”,myListener);
myListener.change = function() {
_root.gotoAndStop(colors_cb.value);

};

var myListener:Object = new Object();
gfunc_cb.addEventListener(“change”,myListener);
myListener.change = function() {
_root.gotoAndStop(gfunc_cb.value);

};

Any help would be hugely appreciated! Thanks so much! :flower: