|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Disable Buttons in SWF underneath
Disable Buttons in SWF underneath
I have X.swf with a series of buttons that call for SWF's that will lie on top of the original SWF. When Y.swf is on top, the buttons of X.swf are still active. Is there a way to create a "shield" in Y.swf so that the buttons in X.swf are no longer clickable? Thanks A. |
|
#2
|
|||
|
|||
|
On the bottom layer of Y.swf add a movie clip that covers the stage. Drop the alpha to zero so you can't see it. Give it an instance name of 'coverMC' and add this code the frame 1.
Code:
_root.coverMC.onRollOver = function() {
this.useHandCursor = false;
};
|
|
#3
|
|||
|
|||
|
Thanks
Thsnks for the help!
|
|
#4
|
|||
|
|||
|
Quote:
My pleasure ![]() |
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > Disable Buttons in SWF underneath |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|