Jump to content

Taps

Members
  • Posts

    3
  • Joined

  • Last visited

Taps's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. ShareX was just an example. When I click on my application's icons on the desktop, the application immediately appears in the system tray. If I click on the icon on the desktop repeatedly, I will see information that the application is already running
  2. Hello, I need doubleclick icon in system tray. I used this script, but now work. I have win 10. I'm beginner on scripting autoit. Can I help me, please? Thank you very much. _SysTrayIconTitles () is empty #include<SysTray_UDF.au3> #include<Array.au3> Global $title = "ShareX" clickSysTray($title, "right") Func clickSysTray($winTitle, $click = "left", $times = 1) Local $a = _SysTrayIconTitles () Local $p = MouseGetPos() For $i = 1 To UBound($a) - 1 If $a[$i] = $title Then $pos = _SysTrayIconPos ($i) MouseClick($click, $pos[0], $pos[1], $times, 1) sleep(1000) MouseClick($click, $pos[0], $pos[1], $times, 1) ExitLoop EndIf Next MouseMove($p[0], $p[1], 1) EndFunc ;
×
×
  • Create New...