ID:158639
 
In my interface, i have a Menu for myself with some select admin verbs. I have the Menu Disabled. How do i enable it for just myself?
Use winset() to set the menu's is-disabled parameter to "false". You use the menu's ID the same way as windows and controls.

List of menu parameters here in the Skin Reference.
In response to Kaiochao (#1)
Kaiochao wrote:
Use winset() to set the menu's is-disabled parameter to "false". You use the menu's ID the same way as windows and controls.

List of menu parameters here in the Skin Reference.

Its already disabled from the interface. im trying to enable it for me only.
In response to Raze2 (#2)
Use winset() (conditionally for only you) to set the menu's is-disabled parameter to "false". You use the menu's ID the same way as windows and controls.
In response to Kaiochao (#3)
How would i do that O.o
In response to Raze2 (#4)
To make conditional code blocks, use if() and/or else.
Check the DM reference on how to use winset().
In response to Raze2 (#4)
winset(usr, "menu.Admin", "parent=true")
Like this?
In response to Raze2 (#6)
No, I think that would be windows...not menus...

winset(usr, "playersmenu", "parent=mainmenu;name=Players")
(Example from the guide)

What the hell is playersmenu...