<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How open triggercmd gui with command]]></title><description><![CDATA[<p dir="auto">I would like to know how it is possible to open the panel (gui) of Triggercmd with command or macro, because I can't find anything about it. What I want is to automate this functionality with my voice, without having to click on the sidebar to open it.</p>
]]></description><link>https://www.triggercmd.com/forum/topic/2695/how-open-triggercmd-gui-with-command</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 15:12:46 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/topic/2695.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 05 Sep 2023 17:14:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How open triggercmd gui with command on Sun, 24 Sep 2023 17:51:22 GMT]]></title><description><![CDATA[<p dir="auto">; Defina a cor do pixel que você deseja localizar (no formato RGB hexadecimal)<br />
CorPixelDesejado := 0xd5492a ; Por exemplo, vermelho</p>
<p dir="auto">; Use a função PixelSearch para localizar o pixel<br />
PixelSearch, EncontradoX, EncontradoY, 0, 0, A_ScreenWidth, A_ScreenHeight, %CorPixelDesejado%</p>
<p dir="auto">; Verifique se o pixel foi encontrado<br />
If ErrorLevel = 0<br />
{<br />
; Movimente o mouse para as coordenadas encontradas (X, Y)<br />
MouseMove, %EncontradoX%, %EncontradoY%</p>
<pre><code>; Clique no pixel
Click
</code></pre>
<p dir="auto">}</p>
<p dir="auto">; Sair do script após a execução do macro<br />
ExitApp</p>
]]></description><link>https://www.triggercmd.com/forum/post/7388</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7388</guid><dc:creator><![CDATA[Mauro]]></dc:creator><pubDate>Sun, 24 Sep 2023 17:51:22 GMT</pubDate></item><item><title><![CDATA[Reply to How open triggercmd gui with command on Sun, 24 Sep 2023 17:48:36 GMT]]></title><description><![CDATA[<p dir="auto">I have a new version, using a try icon. U can open triggercmd if u make the program the first icon in tray icon, is fast and simple <img src="https://www.triggercmd.com/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=6sa9akdcpc2" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://www.triggercmd.com/forum/post/7387</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7387</guid><dc:creator><![CDATA[Mauro]]></dc:creator><pubDate>Sun, 24 Sep 2023 17:48:36 GMT</pubDate></item><item><title><![CDATA[Reply to How open triggercmd gui with command on Thu, 07 Sep 2023 12:21:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/21020">@Mauro</a> Nice</p>
]]></description><link>https://www.triggercmd.com/forum/post/7360</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7360</guid><dc:creator><![CDATA[Steve Lee]]></dc:creator><pubDate>Thu, 07 Sep 2023 12:21:25 GMT</pubDate></item><item><title><![CDATA[Reply to How open triggercmd gui with command on Wed, 06 Sep 2023 16:14:17 GMT]]></title><description><![CDATA[<p dir="auto">I found a solution, just select the option for the triggercmd icon to be on the taskbar and trigger the following macro:</p>
<p dir="auto">#NoEnv<br />
SetWorkingDir %A_ScriptDir%<br />
CoordMode, Mouse, Window<br />
SendMode Input<br />
#SingleInstance Force<br />
SetTitleMatchMode 2<br />
#WinActivateForce<br />
SetControlDelay 1<br />
SetWinDelay 0<br />
SetKeyDelay -1<br />
SetMouseDelay -1<br />
SetBatchLines -1</p>
<p dir="auto">Macro1:<br />
WinActivate, ahk_class Shell_TrayWnd<br />
Sleep, 50<br />
Click, 2384, 23 Right, Down<br />
Sleep, 50<br />
Click, 2384, 1063 Right, Up<br />
Sleep, 50<br />
Click, 2418, 1030 Left, Down<br />
Sleep, 50<br />
Click, 2418, 1030 Left, Up</p>
<p dir="auto">; Defina o intervalo entre as execuções em milissegundos (por exemplo, 10 segundos):<br />
Sleep, 50</p>
<p dir="auto">; Sair do script após a execução do macro<br />
ExitApp</p>
]]></description><link>https://www.triggercmd.com/forum/post/7358</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7358</guid><dc:creator><![CDATA[Mauro]]></dc:creator><pubDate>Wed, 06 Sep 2023 16:14:17 GMT</pubDate></item><item><title><![CDATA[Reply to How open triggercmd gui with command on Wed, 06 Sep 2023 14:41:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/21020">@Mauro</a> There used to be a way to access non hidden tray icon menus with autohotkey but looking now it might have been broken in Windows 10 or 11. The only other option I can think of is using UIA but that's really low level coding.</p>
]]></description><link>https://www.triggercmd.com/forum/post/7355</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7355</guid><dc:creator><![CDATA[Steve Lee]]></dc:creator><pubDate>Wed, 06 Sep 2023 14:41:53 GMT</pubDate></item><item><title><![CDATA[Reply to How open triggercmd gui with command on Tue, 05 Sep 2023 21:25:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/21020">@Mauro</a>, that would be tricky to automate.  There's no built-in way to do that in the TRIGGERcmd agent.</p>
]]></description><link>https://www.triggercmd.com/forum/post/7350</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/7350</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Tue, 05 Sep 2023 21:25:00 GMT</pubDate></item></channel></rss>