<?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[Start netflix app]]></title><description><![CDATA[<p dir="auto">"trigger": "Netflix",<br />
"command": "start netflix:",<br />
"ground": "foreground",<br />
"voice": "Netflix no Computador",<br />
"voiceReply": "",<br />
"allowParams": "false"</p>
]]></description><link>https://www.triggercmd.com/forum/topic/763/start-netflix-app</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 21:18:32 GMT</lastBuildDate><atom:link href="https://www.triggercmd.com/forum/topic/763.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 01 Jul 2020 08:34:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Start netflix app on Sun, 15 Aug 2021 15:51: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> , es mi mismo caso, si esta instalado pero me sale el anuncio, me podrias ayudar por favor.</p>
]]></description><link>https://www.triggercmd.com/forum/post/4389</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/4389</guid><dc:creator><![CDATA[Rodolfo Lincango]]></dc:creator><pubDate>Sun, 15 Aug 2021 15:51:49 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 22 Mar 2021 12:01:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/7330">@Anthony-Gustavo</a>, it's getting that error because this line is expecting a parameter:</p>
<pre><code>Send($CmdLine[1] &amp; "{ENTER}") 
</code></pre>
<p dir="auto">You can compile that script to an .exe with AutoIT.</p>
<p dir="auto">The command in the TRIGGERcmd GUI editor would either be:</p>
<p dir="auto">C:\Users(your user)\netflix.exe suits</p>
<p dir="auto">... if you want your command to always search for suits, or:</p>
<pre><code>  C:\\Users\\(your user)\\netflix.exe
</code></pre>
<p dir="auto">If you want to pass suits or something else as a parameter.  For that, don't forget to flip <strong>Allow parameters</strong> to true.</p>
]]></description><link>https://www.triggercmd.com/forum/post/3806</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3806</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Mon, 22 Mar 2021 12:01:54 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 22 Mar 2021 00:00:39 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> For me is happening this error</p>
<p dir="auto">ShellExecute ( "netflix:" )</p>
<p dir="auto">Sleep(2000)  ; wait 2 seconds for Prime Video to start</p>
<p dir="auto">WinActivate ( "Netflix" )<br />
$pos = WinGetPos("Netflix")</p>
<p dir="auto">$x = 1764<br />
$y = 72<br />
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the Search box</p>
<p dir="auto">;suits<br />
Send("^a") ; Select all text, in case something was typed in the Search box already.</p>
<p dir="auto">Sleep(2000)  ; wait 2 seconds</p>
<p dir="auto">;;; For testing:     ;; Send("suits{ENTER}")</p>
<p dir="auto">Send($CmdLine[1] &amp; "{ENTER}")   ; type the first parameter of the .exe, and press enter</p>
<p dir="auto">Sleep(2000)  ; wait 2 seconds</p>
<p dir="auto">$x = 231<br />
$y = 289<br />
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the show icon</p>
<p dir="auto">Sleep(1500) ; wait 1 seconds</p>
<p dir="auto">$x = 962<br />
$y = 268<br />
MouseClick("left", $pos[0] + $x, $pos[1] + $y)   ; click Watch now</p>
<p dir="auto">I changed my coordinates, can you create an .exe for me or tell me which program you use? And also how do I configure the command in Triggercmd?</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1616369441730-c3a30e35-24be-45d7-b20a-1403f36867c2-image.png" alt="c3a30e35-24be-45d7-b20a-1403f36867c2-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://www.triggercmd.com/forum/post/3803</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3803</guid><dc:creator><![CDATA[Anthony Gustavo]]></dc:creator><pubDate>Mon, 22 Mar 2021 00:00:39 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Sun, 21 Mar 2021 22:13:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/7330">@Anthony-Gustavo</a>, here's a similar script for Netflix:</p>
<pre><code>ShellExecute ( "netflix:" )

Sleep(2000)  ; wait 2 seconds for Prime Video to start

WinActivate ( "Netflix" )
$pos = WinGetPos("Netflix")

$x = 1797
$y = 63
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the Search box

;suits
Send("^a") ; Select all text, in case something was typed in the Search box already.

Sleep(2000)  ; wait 2 seconds

;;; For testing:     ;; Send("suits{ENTER}")

Send($CmdLine[1] &amp; "{ENTER}")   ; type the first parameter of the .exe, and press enter

Sleep(2000)  ; wait 2 seconds

$x = 194
$y = 248
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the show icon

Sleep(1500) ; wait 1 seconds

$x = 961
$y = 220
MouseClick("left", $pos[0] + $x, $pos[1] + $y)   ; click Watch now
</code></pre>
<p dir="auto">Here's a link to the two compiled .exe files:<br />
<a href="https://triggercmdagents.s3.amazonaws.com/tools/prime.exe" rel="nofollow ugc">Prime</a><br />
<a href="https://triggercmdagents.s3.amazonaws.com/tools/netflix.exe" rel="nofollow ugc">Netflix</a></p>
]]></description><link>https://www.triggercmd.com/forum/post/3800</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3800</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 21 Mar 2021 22:13:57 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Sun, 21 Mar 2021 21:49:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/7276">@Quasar-07</a>, I'm glad you figured out the first question.  About changing your account's email address - you can't.  The email address you opened the account with is tied to that account.  You'd have to subscribe the other account, and then cancel the first one.  You'd want to do that near your anniversary date to save some money.</p>
]]></description><link>https://www.triggercmd.com/forum/post/3799</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3799</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Sun, 21 Mar 2021 21:49:37 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Sun, 21 Mar 2021 14:24:48 GMT]]></title><description><![CDATA[<p dir="auto">@Russfor netflix how can i do the same to start it suits for example</p>
]]></description><link>https://www.triggercmd.com/forum/post/3798</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3798</guid><dc:creator><![CDATA[Anthony Gustavo]]></dc:creator><pubDate>Sun, 21 Mar 2021 14:24:48 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Sun, 21 Mar 2021 09:55:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/7276">@Quasar-07</a> said in <a href="/forum/post/3794">Start netflix app</a>:</p>
<blockquote>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/1">@Russ</a> How can I do the same, but instead from the windows app, from the Chrome browser and my prime video account.<br />
Thanks<br />
I have already learned it by myself, thank you very much even so for the program.<br />
A question? I registered with the same email as the PayPal account, how can I change it, if possible? Thanks again.</p>
</blockquote>
]]></description><link>https://www.triggercmd.com/forum/post/3797</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3797</guid><dc:creator><![CDATA[Quasar 07]]></dc:creator><pubDate>Sun, 21 Mar 2021 09:55:19 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Fri, 19 Mar 2021 05:08:41 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> How can I do the same, but instead from the windows app, from the Chrome browser and my prime video account.<br />
Thanks</p>
]]></description><link>https://www.triggercmd.com/forum/post/3794</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3794</guid><dc:creator><![CDATA[Quasar 07]]></dc:creator><pubDate>Fri, 19 Mar 2021 05:08:41 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 07 Dec 2020 23:30:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/5819">@Rex-Bones</a>, I made this <a href="https://www.autoitscript.com/site/" rel="nofollow ugc">AutoIt</a> script and compiled it to a Windows .exe file.  It takes a parameter for what you want to search for and play in Amazon Prime Video (installed from the Windows App store).  I also made <a href="https://youtu.be/54GkWb98bc8" rel="nofollow ugc">this video</a> to demo it.</p>
<pre><code>ShellExecute ( "primevideo:" )

Sleep(2000)  ; wait 2 seconds for Prime Video to start

WinActivate ( "Amazon Prime Video" )
$pos = WinGetPos("Amazon Prime Video")

$x = 120
$y = 150
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the Search box

Send("^a") ; Select all text, in case something was typed in the Search box already.

;;; For testing:   Send("the boys season 1{ENTER}")

Send($CmdLine[1] &amp; "{ENTER}")   ; type the first parameter of the .exe, and press enter

Sleep(2000)  ; wait 2 seconds

$x = 550
$y = 250
MouseClick("left", $pos[0] + $x, $pos[1] + $y)  ; click the show icon

Sleep(1500) ; wait 1.5 seconds

$x = 450
$y = 515
MouseClick("left", $pos[0] + $x, $pos[1] + $y)   ; click Watch now
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/3292</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3292</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Mon, 07 Dec 2020 23:30:35 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 07 Dec 2020 09:44:30 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> is it possible to have the Amazon Prime app (on Windows) launch and begin playing a specific title?</p>
]]></description><link>https://www.triggercmd.com/forum/post/3287</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3287</guid><dc:creator><![CDATA[Rex Bones]]></dc:creator><pubDate>Mon, 07 Dec 2020 09:44:30 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Sat, 14 Nov 2020 00:54:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/3850">@MAX-MAGALHAES</a> said in <a href="/forum/post/2428">Start netflix app</a>:</p>
<blockquote>
<p dir="auto">:</p>
</blockquote>
<p dir="auto">o que é esse voiceReply man ?</p>
]]></description><link>https://www.triggercmd.com/forum/post/3163</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3163</guid><dc:creator><![CDATA[Igor Penha]]></dc:creator><pubDate>Sat, 14 Nov 2020 00:54:06 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 11 Nov 2020 00:19:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/5398">@Nico</a>, are you able to manually run Netflix?  It looks like it's not installed.  You can install it from the Windows app store.</p>
]]></description><link>https://www.triggercmd.com/forum/post/3148</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3148</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Wed, 11 Nov 2020 00:19:17 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Tue, 10 Nov 2020 23:49:55 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> a mi tampoco me funciona, lo he hecho tal cual dijeron.<br />
<img src="/forum/assets/uploads/files/1605052144970-ca54848c-d059-4ad6-a40f-cbd1779793be-image.png" alt="ca54848c-d059-4ad6-a40f-cbd1779793be-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://www.triggercmd.com/forum/post/3145</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3145</guid><dc:creator><![CDATA[Nico]]></dc:creator><pubDate>Tue, 10 Nov 2020 23:49:55 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 02 Nov 2020 23:43:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/5275">@Renan-Paes</a>, this worked for me:</p>
<pre><code>taskkill /f /im primevideo.exe
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/3119</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3119</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Mon, 02 Nov 2020 23:43:19 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Mon, 02 Nov 2020 04:10:25 GMT]]></title><description><![CDATA[<p dir="auto">How to execute close prime video?</p>
]]></description><link>https://www.triggercmd.com/forum/post/3114</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3114</guid><dc:creator><![CDATA[Renan Paes]]></dc:creator><pubDate>Mon, 02 Nov 2020 04:10:25 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 21 Oct 2020 14:53:25 GMT]]></title><description><![CDATA[<p dir="auto">Very simple ... lol<br />
Thank you.</p>
]]></description><link>https://www.triggercmd.com/forum/post/3037</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3037</guid><dc:creator><![CDATA[Tribo]]></dc:creator><pubDate>Wed, 21 Oct 2020 14:53:25 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Tue, 20 Oct 2020 22:29:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/5031">@Tribo</a>, long is ok, but that one is actually short:</p>
<pre><code>start primevideo:
</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/3034</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3034</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Tue, 20 Oct 2020 22:29:54 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Tue, 20 Oct 2020 20:38:15 GMT]]></title><description><![CDATA[<p dir="auto">and in the case when the application name is long, like: Amazon Prime Video for Windows?</p>
]]></description><link>https://www.triggercmd.com/forum/post/3033</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/3033</guid><dc:creator><![CDATA[Tribo]]></dc:creator><pubDate>Tue, 20 Oct 2020 20:38:15 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 09 Sep 2020 23:50:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/4593">@Philippe-Machado</a> said in <a href="/forum/post/2824">Start netflix app</a>:</p>
<blockquote>
<p dir="auto">Não ta funcionando no meu computador. Alguém tem alguma dica?</p>
</blockquote>
<p dir="auto">Please tell me more.  What are you saying to Alexa?  If you run this at the cmd prompt does it run Netflix?  If not, maybe it's not installed.  I assume you're using Windows 10.</p>
<pre><code>start netflix:</code></pre>
]]></description><link>https://www.triggercmd.com/forum/post/2825</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/2825</guid><dc:creator><![CDATA[Russ]]></dc:creator><pubDate>Wed, 09 Sep 2020 23:50:50 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 09 Sep 2020 23:27:59 GMT]]></title><description><![CDATA[<p dir="auto">Não ta funcionando no meu computador. Alguém tem alguma dica?</p>
]]></description><link>https://www.triggercmd.com/forum/post/2824</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/2824</guid><dc:creator><![CDATA[Philippe Machado]]></dc:creator><pubDate>Wed, 09 Sep 2020 23:27:59 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 08 Jul 2020 06:05:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://www.triggercmd.com/forum/uid/3850">@MAX-MAGALHAES</a> Sempre usei a Netflix via navegador, não sabia o comando para iniciar o aplicativo da loja, obrigado Max.</p>
]]></description><link>https://www.triggercmd.com/forum/post/2477</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/2477</guid><dc:creator><![CDATA[Robertofilho]]></dc:creator><pubDate>Wed, 08 Jul 2020 06:05:39 GMT</pubDate></item><item><title><![CDATA[Reply to Start netflix app on Wed, 01 Jul 2020 14:56:53 GMT]]></title><description><![CDATA[<p dir="auto">Valeu cara! passei horas tentando colocar no meu, mas so agora vendo o seu, lembrei de colocar ":" em "netflix:" kkk</p>
]]></description><link>https://www.triggercmd.com/forum/post/2430</link><guid isPermaLink="true">https://www.triggercmd.com/forum/post/2430</guid><dc:creator><![CDATA[Rodrigo Andrade]]></dc:creator><pubDate>Wed, 01 Jul 2020 14:56:53 GMT</pubDate></item></channel></rss>