Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | Making a menu |
From: | IzzEddeen Al Karajeh |
Date: | Tue, 20 Feb 2001 11:36:38 -0000 |
I'm planning to make a button that works like the windows start button, so
when it is clicked a menu shows up, when it is clicked while the menue is
visible then I want the button to hide it.
I used a variable to hold the status of the menu, (menu_visible),
This is the code I used for the button:
__________
on (release) {
if (menu_visible=1) {
setProperty ("menu", _visible, 0);
menu_visible = "0";
} else {
setProperty ("menu", _visible, 1);
menu_visible = "1";
}
}
___________
The button is not working with me
Any suggestions?
Thanks..
______________________________________________
FREE Personalized Email at Mail.com
Sign up at http://www.mail.com/?sr=signup
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]