On my timeline I have several navigation buttons (mcs) that i would like to be deacivated on frame 1 only. The mcs have a button within them. There are 10 mcs with buttons inside them with instance names like this:
mc_btn1
btn1
mc_btn2
btn2
etc etc.
my code in the first frame of the timeline is set to deactivate the buttons and looks liek this:
_root.btn1.enabled = false;
_root.btn2.enabled = false;
_root.btn3.enabled = false;
_root.btn4.enabled = false;
_root.btn5.enabled = false;
_root.btn6.enabled = false;
_root.btn7.enabled = false;
_root.btn8.enabled = false;
_root.btn9.enabled = false;
_root.btn10.enabled = false;
I have tried several variations, with and without the _root adding the mc_btn1 reference etc, but still does not deactivate the buttons. i can still click them in frame 1. any ideas?
thanks