|
|||
|
Im sorry, but i really have no idea about how to solve this problem: setting Application.SysTray.balloonTimeout cause no effect. The same with AS2: SysTray.balloonTimeout setter.
A BaloonTip always hangs about 15 seconds :-( I use transparent mode and this code: Code:
Application.SysTray.balloonTimeout = 3000;
Application.SysTray.balloonIcon = "info";
Application.SysTray.balloonTitle = 'Header!';
function showBaloonTip(msg) {
Application.SysTray.balloonTip = msg;
Application.SysTray.showBalloonTip();
}
Thanks in advance!
__________________
#define true false //happy debugging, friends |
|
|||
|
As the MSDN says:
Quote:
|
|
|||
|
You will have to first find the balloon tooltip by using the following code
Code:
var wnd = Window.find("tooltips_class32");
Code:
dllimport "user32.dll" stdcall Boolean PostMessageA(long, long, long, long) as user32_postMessage; user32_postMessage(wnd.handle, /*WM_LBUTTONDOWN*/0x0201, 0, (20 << 16) | 20); user32_postMessage(wnd.handle, /*WM_LBUTTONUP*/0x0202, 0, (20 << 16) | 20); |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|