PDA

View Full Version : This script was working on MX and not anymore on MX 2004 !


Averroes
10-23-2003, 07:01 AM
I'm trying just to use the new combobox (mx2004) and Goto "scene1" if the user click on "A" ,
Goto "scene2" if the user click on "B" .

My script was working fine on Flash MX and NOT :mad: :confused: ANYMORE ON THIS NEW MX2004 !!!! It's getting complicated...

Please find attached my file.

Thank you,

Best regards to all of you

hokoga_saeos
10-23-2003, 03:34 PM
i didnt download the file but here is an excellent tut on the combo box flasm mx 2004 ui components.
http://www.ultrashock.com/

it really helped me out ..good luck

windson2002
10-24-2003, 04:40 AM
AS of Frame 1:

stop();
myobj = new Object();
myobj.change = function() {
trace(combobox.selectedItem.data);
gotoAndPlay("combobox.selectedItem.data",1);

};
combobox.addEventListener("change", myobj);

Notice:wirte "combobox", not "comboBox".

Averroes
10-24-2003, 11:16 AM
U took me out from darkness !
Thank you for your time I enjoy to be with people like you.

Take care,