Language: ChineseGermanSpanishFrenchDutchItalianRussian
123 Flash Chat Forums

Go Back   TOPCMM Community > SWFKit > SWFKit Support

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-26-2007, 08:40 AM
Member
 
Join Date: Oct 2004
Posts: 53
Default "balloonTip" Problem

i am using this code to show a Baloon Tip

Code:
Application.SysTray.useDefaultHandler = false;
Application.SysTray.balloonTip = "Please Wait While the Process completes";
Application.SysTray.balloonTitle = "In process..";
Application.SysTray.balloonIcon = "info";
Application.SysTray.balloonTimeout = 1000;
Application.SysTray.showBalloonTip();
The problem comes when i hover my mouse on the tray icon when the baloon is shown.
Either the program terminates or it hangs.
Reply With Quote
  #2 (permalink)  
Old 11-26-2007, 09:13 PM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re: "balloonTip" Problem

Maybe you will have to put the code into an event handler?
Code:
Application.SysTray.useDefaultHandler = false;

Application.SysTray.onMouseMove = function ()
{
  this.balloonTip = "Please Wait While the Process completes";
  this.balloonTitle = "In process...";
  this.balloonIcon = "info";
  this.showBalloonTip();
}
Reply With Quote
  #3 (permalink)  
Old 11-28-2007, 08:29 AM
Member
 
Join Date: Oct 2004
Posts: 53
Default Re: "balloonTip" Problem


Still the same problem???
Reply With Quote
  #4 (permalink)  
Old 12-01-2007, 07:08 PM
Senior Member
 
Join Date: Dec 2002
Posts: 2,015
Default Re: "balloonTip" Problem

It should work well, as we have tested it. There might be some other problems, not because of the balloon tip.
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 04:38 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.