I want to change the title of the MenuItem after the login process has been completed successfully and once the user logs off.
But if I log in and check the title of the menu item, it has not changed. I have even tried to hide it, with no success.
This is my code
var mainMenu:NSMenu
var LoginButton:NSMenuItem
mainMenu=NSApplication.sharedApplication().mainMenu!
LoginButton=mainMenu.itemWithTitle("Login")!
LoginButton.title="LogOff"
LoginButton.hidden=true
Thanks for any help.