|
|||
|
this doesn't seem to fire for me.
Application.SysTray.useDefaultHandler = false; var wnd = getMainWnd(); wnd.onSize = function(type) { if (type == 1) { wnd.hide(); } } Application.SysTray.onLDoubleClicked = function() { wnd.windowState = "normal"; wnd.show(); } the onLDoubleClicked doesn't show up as blue syntax either. It works fine if I change it to onLClicked, but the double click doesn't fire. |
|
|||
|
Sorry, it is a bug in the documentation, the proper code should be:
Code:
Application.SysTray.onLDblClicked = function()
{
wnd.windowState = "normal";
wnd.show();
wnd.bringToTop();
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|