| View previous topic :: View next topic |
| Author |
Message |
Golden Wing Grandmaster Cheater
Reputation: 0
Joined: 29 Aug 2007 Posts: 905
|
Posted: Sun May 04, 2008 12:06 am Post subject: flash 8 |
|
|
in flash 8 i need help in making this:
Example:
you click menu button then a menu pops up how do i make that?and it have a little "x" in the corner to close it
please if someone could help me
|
|
| Back to top |
|
 |
deleted user 111213 Grandmaster Cheater
Reputation: 0
Joined: 09 Nov 2007 Posts: 714
|
Posted: Sun May 04, 2008 7:38 am Post subject: |
|
|
make a menu in the same frame and give it an instance name of "menu1" without the qoutes. put in the same frame, | Code: | | menu1._visible=false; | and on the button, type in | Code: | | menu1._visible=true; | and for the close button type in | Code: | | menu1._visible=false; |
|
|
| Back to top |
|
 |
Golden Wing Grandmaster Cheater
Reputation: 0
Joined: 29 Aug 2007 Posts: 905
|
Posted: Sun May 04, 2008 3:13 pm Post subject: |
|
|
| ghostrider1337 wrote: | make a menu in the same frame and give it an instance name of "menu1" without the qoutes. put in the same frame, | Code: | | menu1._visible=false; | and on the button, type in | Code: | | menu1._visible=true; | and for the close button type in | Code: | | menu1._visible=false; |
| yes finally ty! +rep edit:it dont work..
|
|
| Back to top |
|
 |
deleted user 111213 Grandmaster Cheater
Reputation: 0
Joined: 09 Nov 2007 Posts: 714
|
Posted: Mon May 05, 2008 3:48 am Post subject: |
|
|
o right. sorry, i missed out | Code: | on(release){
menu1._visible=true;
} | for the open button. and for the close | Code: | on(release){
menu1._visible=false;
} | , now that should work for you.
|
|
| Back to top |
|
 |
Golden Wing Grandmaster Cheater
Reputation: 0
Joined: 29 Aug 2007 Posts: 905
|
Posted: Mon May 05, 2008 1:43 pm Post subject: |
|
|
o nvm lol it worked before you posted then other 1 lol but thx anyway
|
|
| Back to top |
|
 |
|