Language: ChineseGermanSpanishFrenchDutchItalianRussian
123 Flash Chat Forums

Go Back   TOPCMM Community > SWFKit > SWFKit Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 01-10-2006, 11:49 PM
Junior Member
 
Join Date: Dec 2005
Posts: 12
Default Application.SysTray.onLDoubleClicked not firing

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.

Reply With Quote
  #2 (permalink)  
Old 01-13-2006, 02:16 AM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re:Application.SysTray.onLDoubleClicked not firing

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();
}
Reply With Quote
Reply

Was this information helpful?    Yes No



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:09 AM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.