|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
how do I disable buttons?
Is there a script that disables a button and a script that let's you enable it again? Otherwise any suggestions?
|
|
#2
|
|||
|
|||
|
Code:
//btn1
myBtn.onRelease=function(){
_root.gotoAndPlay("2");
this.enabled=false;
};
//btn2
myBtn.onRelease=function(){
_root.gotoAndStop("34");
_root.btn1.enabled=true;
this.enabled=false;
};
cheers
__________________
please see my site http://www.f-web.net also tutorials coming soon.. I am for hire .timo@f-web.net |
![]() |
| Viewing: Dev Shed Forums > Web Design > Flash Help > how do I disable buttons? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|