<?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[Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous]]></title><description><![CDATA[<p dir="auto">You'll need to install this on your Windows box to make it work: <a href="https://autohotkey.com" rel="nofollow ugc">https://autohotkey.com</a></p>
<p dir="auto"><strong>This is my media.ahk autohotkey script:</strong></p>
<p dir="auto">Gosub, %1%<br />
return</p>
<p dir="auto">next:<br />
Send {Media_Next}<br />
return</p>
<p dir="auto">previous:<br />
Send {Media_Prev}<br />
return</p>
<p dir="auto">pause:<br />
Send {Media_Play_Pause}<br />
return</p>
<p dir="auto">play:<br />
Send {Media_Play_Pause}<br />
return</p>
<p dir="auto">stop:<br />
Send {Media_Stop}<br />
return</p>
<p dir="auto">volup:<br />
Send {Volume_Up}<br />
return</p>
<p dir="auto">voldown:<br />
Send {Volume_Down}<br />
return</p>
<p dir="auto">mute:<br />
Send {Volume_Mute}<br />
return</p>
<p dir="auto"><strong>These are the corresponding commands.json entries:</strong></p>
<p dir="auto">{"trigger":"Mute","command":"start C:\\autohotkeyscripts\\media.ahk mute","ground":"foreground","voice":"mute"},<br />
{"trigger":"Volume Up","command":"start C:\\autohotkeyscripts\\media.ahk volup","ground":"foreground","voice":"volume up"},<br />
{"trigger":"Volume Down","command":"start C:\\autohotkeyscripts\\media.ahk voldown","ground":"foreground","voice":"volume down"},<br />
{"trigger":"Media Next","command":"start C:\\autohotkeyscripts\\media.ahk next","ground":"foreground","voice":"next"},<br />
{"trigger":"Media Stop","command":"start C:\\autohotkeyscripts\\media.ahk stop","ground":"foreground","voice":"stop"},<br />
{"trigger":"Media Previous","command":"start C:\\autohotkeyscripts\\media.ahk previous","ground":"foreground","voice":"previous"},<br />
{"trigger":"Media Play Pause","command":"start C:\\autohotkeyscripts\\media.ahk pause","ground":"foreground","voice":"pause"},</p>
<p dir="auto">NOTE:  You don't need a Play and a Pause because they do the same thing - they just toggle between play and pause.</p>
<p dir="auto">This is optional, but I'm also using my <a href="https://www.triggercmd.com/forum/topic/26/run-remote-commands-with-an-old-vcr-remote-and-a-raspberry-pi-zero-w">Raspberry Pi based IR receiver</a> to trigger the above commands with a VCR remote.</p>
<p dir="auto">I have these entries in my <strong>/etc/lirc/lircrc</strong> file on the Pi:</p>
<pre><code>  begin
       prog = irexec
       button = KEY_1
       config = export HOME=/root ; /root/triggertest.sh play downstairs
  end
  begin
       prog = irexec
       button = KEY_2
       config = export HOME=/root ; /root/triggertest.sh notepad downstairs
  end
  begin
       prog = irexec
       button = KEY_PLAY
       config = export HOME=/root ; /root/triggertest.sh "Media Play Pause" downstairs
  end
  begin
       prog = irexec
       button = KEY_PAUSE
       config = export HOME=/root ; /root/triggertest.sh "Media Play Pause" downstairs
  end
  begin
       prog = irexec
       button = KEY_RIGHT
       config = export HOME=/root ; /root/triggertest.sh "Media Next" downstairs
  end
  begin
       prog = irexec
       button = KEY_LEFT
       config = export HOME=/root ; /root/triggertest.sh "Media Previous" downstairs
  end
  begin
       prog = irexec
       button = KEY_STOP
       config = export HOME=/root ; /root/triggertest.sh "Media Stop" downstairs
  end
  begin
       prog = irexec
       button = KEY_UP
       config = export HOME=/root ; /root/triggertest.sh "Volume Up" downstairs
  end
  begin
       prog = irexec
       button = KEY_DOWN
       config = export HOME=/root ; /root/triggertest.sh "Volume Down" downstairs
  end
  begin
       prog = irexec
       button = KEY_MUTE
       config = export HOME=/root ; /root/triggertest.sh "Mute" downstairs
  end
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/topic/27/autohotkey-script-for-play-pause-volume-up-down-next-previous</link><generator>RSS for Node</generator><lastBuildDate>Tue, 16 Jun 2026 21:39:17 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/topic/27.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 May 2017 21:26:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Fri, 15 Oct 2021 20:43:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/11389">@William-Santiago-Ortiz-Trejos</a>, for some reason your files with a .ahk extension aren't associated with AutoHotkey.  That's supposed to happen when you install it, but maybe an antivirus program blocked it?</p>
<p dir="auto">To fix it you could try running the batch file in this article from your C:\Program Files\AutoHotkey folder:<br />
<a href="https://www.autohotkey.com/board/topic/13627-no-ahk-file-association/" rel="nofollow ugc">https://www.autohotkey.com/board/topic/13627-no-ahk-file-association/</a></p>
]]></description><link>https://www.triggercmd.com/forum/post/4698</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4698</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Fri, 15 Oct 2021 20:43:06 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Thu, 14 Oct 2021 03:07:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Hi, I have been trying to trigger the media commands the same way that you explain. But I have an issue when I run "media.ahk". My computer always asks me how do I want to open that file. This is a screenshot of TriggerCMD. <img src="/forum/assets/uploads/files/1634180633096-0a8d3e11-891b-4205-8216-608947fbd845-image.png" alt="0a8d3e11-891b-4205-8216-608947fbd845-image.png" class=" img-fluid img-markdown" /> As you see in the previous image that's how I have the "next song" command.</p>
<p dir="auto">And in the following screenshot, you will find the message that I receive.</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1634180842768-02507a58-43e4-4dd8-8341-9992f201bfa0-image.png" alt="02507a58-43e4-4dd8-8341-9992f201bfa0-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Thanks for your help</p>
]]></description><link>https://www.triggercmd.com/forum/post/4692</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4692</guid><dc:creator><![CDATA[William Santiago Ortiz Trejos]]></dc:creator><pubDate>Thu, 14 Oct 2021 03:07:57 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Thu, 08 Jul 2021 02:41:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Thanks man, you made a great explanation and program kkkkkk,<br />
thanks for help.</p>
]]></description><link>https://www.triggercmd.com/forum/post/4244</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4244</guid><dc:creator><![CDATA[Sori _]]></dc:creator><pubDate>Thu, 08 Jul 2021 02:41:17 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Wed, 07 Jul 2021 12:23:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/9371">@Sori-_</a>, you'll need to:</p>
<ul>
<li>Install AutoHotkey</li>
<li>Create a autohotkeyscripts folder on your <img src="https://www.triggercmd.com/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=6sa9akdcpc2" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title="C:" alt="😄" /> drive</li>
<li>Create the media.ahk script in that folder.</li>
<li>Create commands like these:</li>
</ul>
<pre><code>"C:\Program Files\AutoHotkey\AutoHotkey.exe" "C:\autohotkeyscripts\media.ahk" mute
</code></pre>
<pre><code>"C:\Program Files\AutoHotkey\AutoHotkey.exe" "C:\autohotkeyscripts\media.ahk" play
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/4237</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4237</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Wed, 07 Jul 2021 12:23:12 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Tue, 06 Jul 2021 00:48:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> I really liked your skill, but I wanted to know how I can, go back and continue videos on youtube/netflix with alexa's voice command, because when I use the command a message appears on my PC "windows cannot find <code>C://autohotkeyscripts//media.ahh</code>. make sure the name was typed correctly and try again.<br />
PS: I'm very beginner so could you explain to me how to use the codes that are at the top of the page?</p>
]]></description><link>https://www.triggercmd.com/forum/post/4233</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4233</guid><dc:creator><![CDATA[Sori _]]></dc:creator><pubDate>Tue, 06 Jul 2021 00:48:32 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sun, 30 May 2021 04:36:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Sorry for the delay replying! Though week!</p>
<p dir="auto">I ended up installing my Mi Box in my bedroom, I needed the remote control haha.</p>
<p dir="auto">It didn't work, tried everything and nothing.</p>
<p dir="auto">Thanks for the quick replies tho!</p>
]]></description><link>https://www.triggercmd.com/forum/post/4117</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4117</guid><dc:creator><![CDATA[Laaderlappen]]></dc:creator><pubDate>Sun, 30 May 2021 04:36:03 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Thu, 13 May 2021 21:45:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8298">@Laaderlappen</a>, I see.  I was using Plex in the browser yesterday, but I tried Plex for Windows today and it worked for me in that too.</p>
<p dir="auto">I tried Plex for Windows version 1.11.0.1215-1d8c460c and the latest from this page which is currently 1.31.1.2262-74fdc6b7:</p>
<p dir="auto"><a href="https://www.plex.tv/media-server-downloads/#plex-app" rel="nofollow ugc">https://www.plex.tv/media-server-downloads/#plex-app</a></p>
<p dir="auto">Both worked for me.</p>
<p dir="auto">Please confirm the Ground field is set to <strong>foreground</strong>.</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1620942308483-bdfcc56c-61b9-479b-9538-5cfa6fd4565c-image.png" alt="bdfcc56c-61b9-479b-9538-5cfa6fd4565c-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://www.triggercmd.com/forum/post/4050</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4050</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Thu, 13 May 2021 21:45:43 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Wed, 12 May 2021 17:15:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Thanks for the quick reply!</p>
<p dir="auto">Unfortunately it doesn't work.</p>
<p dir="auto">It doesn't even pauses YouTube or Netflix.</p>
<p dir="auto">I use the Plex Media Player app.</p>
<p dir="auto">The regular pause command is working with YouTube and Netflix in the browser but the Plex Media Player app that has its own .exe doesn't recognize anything.</p>
]]></description><link>https://www.triggercmd.com/forum/post/4048</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4048</guid><dc:creator><![CDATA[Laaderlappen]]></dc:creator><pubDate>Wed, 12 May 2021 17:15:35 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Tue, 11 May 2021 22:47:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8298">@Laaderlappen</a>, I use Plex alot myself.  I just tested space and it was able to play/pause on my PC.  There are a few ways, but this is how I did it.</p>
<p dir="auto">This is my command:</p>
<pre><code>wscript d:\tools\space.vbs
</code></pre>
<p dir="auto">These are the contents of my d:\tools\space.vbs file:</p>
<pre><code>Dim Wsh
Set Wsh = Wscript.CreateObject("Wscript.Shell")
Wsh.SendKeys "{ }"
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/4044</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4044</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Tue, 11 May 2021 22:47:23 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Mon, 10 May 2021 19:58:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> Hey, awesome skill to use with Alexa, I set it up with routines and it works like a charm!</p>
<p dir="auto">I can manage to pause and play YouTube and Netflix without any issues but I run Plex Media Player from my PC as well and it can't pause or play Plex at all, do you know how can I achieve that? It's the only thing that I'm missing.</p>
<p dir="auto">It's like it is not recognizing the play and pause command.</p>
<p dir="auto">I wanted to try with space but don't know how to set it up.</p>
]]></description><link>https://www.triggercmd.com/forum/post/4040</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4040</guid><dc:creator><![CDATA[Laaderlappen]]></dc:creator><pubDate>Mon, 10 May 2021 19:58:02 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sat, 08 May 2021 16:36:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8251">@Chabetico</a>, please show me the command you're having TRIGGERcmd run.</p>
<p dir="auto">You might need to specify the full path of the AutoHotkey.exe and your script, so your command would look like this:</p>
<p dir="auto">"C:\Program Files\AutoHotkey\AutoHotkey.exe" "C:\autohotkeyscripts\yourscript.ahk"</p>
]]></description><link>https://www.triggercmd.com/forum/post/4023</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4023</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sat, 08 May 2021 16:36:52 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sat, 08 May 2021 04:37:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/8251">@Chabetico</a> I tested it and triggercmd does not execute the command, I sent him to write a letter through AHK, but nothing came out</p>
]]></description><link>https://www.triggercmd.com/forum/post/4018</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4018</guid><dc:creator><![CDATA[Chabetico]]></dc:creator><pubDate>Sat, 08 May 2021 04:37:23 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sat, 08 May 2021 04:23:05 GMT]]></title><description><![CDATA[<p dir="auto">So, I tell alexa to execute this command but open cmd and say that she couldn't find such a directory. I tried to do without the "start" at the beginning but nothing happens. If you can help me I would appreciate it, I am new to this branch of TriggerCMD, I started yesterday to tell the truth. sorry about my English</p>
]]></description><link>https://www.triggercmd.com/forum/post/4017</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4017</guid><dc:creator><![CDATA[Chabetico]]></dc:creator><pubDate>Sat, 08 May 2021 04:23:05 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Thu, 20 Aug 2020 01:04:48 GMT]]></title><description><![CDATA[<p dir="auto">Another way to play/pause is to simulate pressing the space bar with a command like this:<br />
<strong>wscript c:\scripts\space.vbs</strong></p>
<p dir="auto">The contents of c:\scripts\space.vbs would look like this:</p>
<pre><code>Dim Wsh
Set Wsh = Wscript.CreateObject("Wscript.Shell")
Wsh.SendKeys "{ }"
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/2704</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/2704</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Thu, 20 Aug 2020 01:04:48 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Thu, 30 Jul 2020 00:46:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1483">@sailoreffinmoon</a>, I get that "Target label does not exist" for "Gosub, %1%." error if I run the ahk script with no parameter.</p>
<p dir="auto">So maybe you just need to add one of the parameters, like <strong>mute</strong> to the command line.</p>
<p dir="auto">Example command:</p>
<pre><code>start C:\autohotkeyscripts\media.ahk mute
</code></pre>
<p dir="auto">EDIT:  I just learned that some scripts require you to run the AutoHotKey.exe directly instead of using "start", so the command would be:</p>
<p dir="auto">"C:\Program Files\AutoHotkey\AutoHotkey.exe" C:\autohotkeyscripts\media.ahk mute</p>
]]></description><link>https://www.triggercmd.com/forum/post/891</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/891</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Thu, 30 Jul 2020 00:46:19 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Tue, 31 Jul 2018 12:28:50 GMT]]></title><description><![CDATA[<p dir="auto">First off, I apologize for any stupid things I may say I'm a noob to such things.  I'm just trying to learn new and different ways I can control things with Alexa <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>
<p dir="auto">I got autohotkey, made the script and made sure all commands are linked to the correct script.  It didn't do anything even when I'd trigger it manually.  I tried running the script and it just gives me an error "Target label does not exist" for "Gosub, %1%.</p>
<p dir="auto">Did I miss something or do it wrong?</p>
]]></description><link>https://www.triggercmd.com/forum/post/889</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/889</guid><dc:creator><![CDATA[SailorEffinMoon]]></dc:creator><pubDate>Tue, 31 Jul 2018 12:28:50 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sat, 12 May 2018 02:07:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/825">@concretesurfer</a>, awesome.  Yea if you have spaces you need quotes around your path.</p>
]]></description><link>https://www.triggercmd.com/forum/post/747</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/747</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sat, 12 May 2018 02:07:16 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sat, 12 May 2018 00:45:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@russ</a> It works now! It must have been the spaces in my directory.</p>
]]></description><link>https://www.triggercmd.com/forum/post/746</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/746</guid><dc:creator><![CDATA[Concretesurfer]]></dc:creator><pubDate>Sat, 12 May 2018 00:45:49 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Fri, 11 May 2018 21:45:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/825">@concretesurfer</a>, this might be the issue:</p>
<p dir="auto">When I wrote "start C:\\autohotkeyscripts\\media.ahk stop" above, the context was the commands.json file, but if you're using the GUI Editor, you can skip the double \\'s.</p>
<p dir="auto">Just use "start C:\autohotkeyscripts\media.ahk stop" in the GUI Editor.</p>
<p dir="auto">Or "start G:\autohotkeyscripts\media.ahk stop", if you're using the G: drive.</p>
]]></description><link>https://www.triggercmd.com/forum/post/743</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/743</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Fri, 11 May 2018 21:45:33 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Fri, 11 May 2018 19:39:24 GMT]]></title><description><![CDATA[<p dir="auto">Hey Russ,</p>
<p dir="auto">I have been having trouble with this. I tried getting the directory right but it either cant find the file without using "" or it just opens a CMD with the directory as the title and does not execute code.</p>
<p dir="auto">Does the directory have to use \ before the media.ahk and can this be in another directory separate from the C:Drive?</p>
<p dir="auto">I am new to this program and cant seem to get the AHK scripts working yet.</p>
]]></description><link>https://www.triggercmd.com/forum/post/741</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/741</guid><dc:creator><![CDATA[Concretesurfer]]></dc:creator><pubDate>Fri, 11 May 2018 19:39:24 GMT</pubDate></item><item><title><![CDATA[Reply to Autohotkey script for Play, Pause, Volume Up&#x2F;Down, Next&#x2F;Previous on Sun, 18 Mar 2018 22:01:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/538">@username6</a>, good question.  You take a copy of commands.json in the .triggercmddata folder in your profile folder (c:\users\username\.triggercmddata).</p>
]]></description><link>https://www.triggercmd.com/forum/post/655</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/655</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 18 Mar 2018 22:01:09 GMT</pubDate></item></channel></rss>