Loaded masked Combobox trouble

Hi,
I have one movie (movie_00.swf) which loads another movie (movie_01.swf) into a MC (loader_Mc)…

Inside the ’ movie_01.swf ’ I have a masked comboBox called ‘info_cb’ which is influenced by this script:

info_cb.setStyle(‘fontFamily’, ‘Arial’);
info_cb.setStyle('fontSize ', ‘8’);
info_cb.setStyle(‘embedFonts’, ‘true’);
info_cb.addItem({data:0, label:“blablabla :”});
info_cb.addItem({data:1, label:“blablabla”});
info_cb.addItem({data:2, label:“blablabla”});

When I test the 'movie_01.swf ’ (on it’s own) it works fine, but when it’s loaded into the main movie nothing happens to the comboBox, it doesn’t drop, just lays there.

Can you help me figure out, what I’m doing wrong ?

Thanks

Here’s da thing…