Thank you.
Thank you.
you can disable the buttons
on the timeline containing them
for (var obj in this) {
if (this[obj] instanceof Button) {
this[obj].enabled = false;
trace(this[obj]);
}
}
_root.your_but._visible = false;
Barn idea!
Create an invisible button in the bottom of your external movie with the same size as it's stage. Make sure it lasts for the whole movie. Give it an instancename. (For my example code I've assumed an instancename of "anticlick_btn".) Then add this script on the first frame:
anticlick_btn.onRelease = function(){};
anticlick_btn.useHandCursor = false;
Now the "anticlick_btn" button will catch all mouseevents without showing a handcursor.
/Mirandir
#If you have any other info about this subject , Please add it free.# |