Hello!
I have tried to run simple code from help file and got an unexpected result:
Is it normal or a bug? OS: Win 7 x64 Home Pro
Thanks!
I have tried to run simple code from help file and got an unexpected result:
![bug.gif](http://www.autoitscript.com/forum/uploads/monthly_01_2013/post-77500-0-56982500-1359274199_thumb.gif)
Is it normal or a bug? OS: Win 7 x64 Home Pro
[ autoit ]
#NoTrayIcon Opt("TrayMenuMode", 1) ; Default tray menu items (Script Paused/Exit) will not be shown. Local $settingsitem = TrayCreateMenu("Settings") TrayCreateItem("Display", $settingsitem) TrayCreateItem("Printer", $settingsitem) TrayCreateItem("") Local $aboutitem = TrayCreateItem("About") TrayCreateItem("") Local $exititem = TrayCreateItem("Exit") TraySetState(5) While 1 Local $msg = TrayGetMsg() Select Case $msg = 0 ContinueLoop Case $msg = $aboutitem MsgBox(64, "about:", "AutoIt3-Tray-sample") Case $msg = $exititem ExitLoop EndSelect WEnd Exit