Search the Community
Showing results for tags 'trayicon'.
-
Traytip remove unwanted content & custom icon
Iraj posted a topic in AutoIt General Help and Support
Hi Team, Greetings! I need to embed traytip in some autoit code where I dont need highlighted unwanted content & also can I have a custom logo instead of the presets. Thanks! #include <TrayConstants.au3> TrayTip("TrayTip Title", "TrayTip Content", 2, $TIP_ICONASTERISK) -
I need to open an INTEL Graphic Tool clicking on a Win7 Tray Icon. This icon is not shown on the Win7 Tray but it is shown once you click on a button that shows a little arrow-up. This button opens up an extension of the tray and there is my INTEL Graphic Tool Icon. The first ControlClick('[Class:Shell_TrayWnd]', '', 1502 ) at line 26 of my source code (Rotatedisplays.au3) works fine as it clicks on the up-arrow shown on the uparrowfirst Menu.jpg picture and opens up an extension of the tray. Then I'm trying to click on the INTEL Graphic Tool Icon which is the first blue icon (up-left)
-
I have a problem with changeing the trayicon while program is running, is it possible? my script seems to be running for a while then it becomes unresponcive I have a script thats sets the tray icon to a "red icon" when i lose ping connection, then when ping resumes it sets it back to green icon. But for some reason the script gets unresponsive and nothing happens, there are no errors just have to kill the trayicon the hardway. Some times it can run for hours before it starts to "hang" again. $nTrayIcon1 = _TrayIconCreate("Datornamn: " & @ComputerName &
-
Hi, I'm wondering why my code snippet isn't working. I copied most of it from a script where it work's. Here is the code: #include <Constants.au3> Opt("TrayAutoPause", 0) ; no pause while click Opt("TrayMenuMode", 1) ; no exit and pause Opt("TrayOnEventMode", 1); While 1 Sleep(100) WEnd Exit #Region ### START Tray section Global $hIni = TrayCreateItem("open INI") TrayItemSetOnEvent (-1, "_INI") TrayCreateItem("") Global $hExit = TrayCreateItem("Exit") TrayItemSetOnEvent (-1, "_Quit&q