I am using Flash CS4, AS2.
I have a first SWF, the interface, which loads external SWFs, the pages, through attachMovie. The pages themselves contain clickable buttons. What I am trying to do is enable and disable the buttons on the pages, without altering the code of the pages. I can only change the contents of the interface.
I have tried using a blocker, a movieclip with :
onrelease = function() {};
onpress = function() {};
useHandCursor = false;
This however only prevents clicks within the interface and the external pages seems to still get the mouse events.
Is there a way to enable and disable the pages from getting the clicks? I don't want to stop it's execution (nothing that stop()).
Thank you.