<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Условие запуска команды]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=12463</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=12463&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Условие запуска команды».]]></description>
		<lastBuildDate>Sat, 18 Feb 2017 16:57:08 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112796#p112796</link>
			<description><![CDATA[<p>И все-таки через массивы, хотелось бы без них как-нибудь обойтись, не получилось.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Sat, 18 Feb 2017 16:57:08 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112796#p112796</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112795#p112795</link>
			<description><![CDATA[<div class="codebox"><pre><code>array := {a: &quot;test&quot;, b: &quot;test2&quot;, c: &quot;test3&quot;}
list = a,b,test2,d
For key, value in array
{
   if value in %list%
      msgbox % key
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Sat, 18 Feb 2017 16:46:24 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112795#p112795</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112794#p112794</link>
			<description><![CDATA[<p>Хочу записать переменную, где много других переменных, и если хоть одна переменная совпадет, то запускается команда. А почему через &quot;If var in&quot;? - Не хочу, чтобы сложно было.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Sat, 18 Feb 2017 16:19:07 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112794#p112794</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112793#p112793</link>
			<description><![CDATA[<p>Объясните словами, что вы хотите и почему именно через конструкцию If var in?</p>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Sat, 18 Feb 2017 16:11:16 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112793#p112793</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112789#p112789</link>
			<description><![CDATA[<p><strong>Malcev</strong>, немного не так. Тут:<br /></p><div class="codebox"><pre><code>var = 
(
string1,string2,string3,string4,
string5,string6,string7,string8,
)

If var in string7,string8

MsgBox работает
return</code></pre></div><p>, что надо поправить, чтобы работало?<br /><strong>serzh82saratov</strong>, мне надо, чтобы команда работала по условию &quot;If var in&quot;, а не с другими способами.</p>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Sat, 18 Feb 2017 15:56:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112789#p112789</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112783#p112783</link>
			<description><![CDATA[<p>Задача не ясна, может так надо, а может ещё как.<br /></p><div class="codebox"><pre><code>
var = 
(
string1
string2
)

If var contains string1,string2
	MsgBox работает
return
</code></pre></div><div class="codebox"><pre><code>var = 
(
string1
string2
)

If var ~= &quot;m`a)^(string1|string2)$&quot;
	MsgBox работает
return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (serzh82saratov)]]></author>
			<pubDate>Sat, 18 Feb 2017 13:19:05 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112783#p112783</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112778#p112778</link>
			<description><![CDATA[<p><strong>ypppu</strong>, IfInString / IfNotInString - немного другие комманды.<br /><strong>svoboden</strong> <br /></p><div class="codebox"><pre><code>var = 
(
string1
string2
)

If var in test,string1`nstring2,test1
    
MsgBox работает
return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Sat, 18 Feb 2017 12:01:40 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112778#p112778</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112767#p112767</link>
			<description><![CDATA[<p>У нас не Pascal, AHK совсем другой язык.</p>]]></description>
			<author><![CDATA[null@example.com (belyankin12)]]></author>
			<pubDate>Sat, 18 Feb 2017 09:37:31 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112767#p112767</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112761#p112761</link>
			<description><![CDATA[<p>Сначала почитайте документацию:<br /></p><ul><li><p>IfInString / IfNotInString;</p></li><li><p>InStr().</p></li></ul>]]></description>
			<author><![CDATA[null@example.com (ypppu)]]></author>
			<pubDate>Sat, 18 Feb 2017 06:15:17 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112761#p112761</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Условие запуска команды]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=112756#p112756</link>
			<description><![CDATA[<p>Кто знает, почему не работает условие? Спасибо!<br /></p><div class="codebox"><pre><code>var = 
(
string1
string2
)

If var in string1,string2
    
MsgBox работает
return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (svoboden)]]></author>
			<pubDate>Sat, 18 Feb 2017 02:43:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=112756#p112756</guid>
		</item>
	</channel>
</rss>
