<?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>http://forum.script-coding.com/viewtopic.php?id=14166</link>
		<atom:link href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=14166&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Вставка случайной строки(слова) из заданного текстового файла.».]]></description>
		<lastBuildDate>Mon, 17 Sep 2018 07:52:26 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128738#p128738</link>
			<description><![CDATA[<p><strong>Sandslash</strong>&nbsp; Попробуйте Return писать после каждого действия.</p><div class="codebox"><pre><code>f1::
Random, rand, 1, 50000
FileReadLine, read, emal.txt,rand
Send, % read
Return 

1::
FileRead, Out, login.txt
Sendraw, %Out% 
Return 

F3::Send ^{c}
Return 
F7::Send ^{a}
Return 
F4::Send ^{v}
Return 

F2::
FileRead, OutputVar, lol.txt
Sendraw, %OutputVar% 
Exit
Return 

F11::Send ^+{j}
Return 
f10::Send !{Left}
Return </code></pre></div>]]></description>
			<author><![CDATA[null@example.com (pro100andrik94)]]></author>
			<pubDate>Mon, 17 Sep 2018 07:52:26 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128738#p128738</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128728#p128728</link>
			<description><![CDATA[<div class="codebox"><pre><code>f1::
Random, rand, 1, 50000
FileReadLine, read, emal.txt,rand
Send, % read


1::
FileRead, Out, login.txt
Sendraw, %Out% 



F3::Send ^{c}
F7::Send ^{a}
F4::Send ^{v}

F2::
FileRead, OutputVar, lol.txt
Sendraw, %OutputVar% 
Exit


F11::Send ^+{j}
f10::Send !{Left}
</code></pre></div><p>Подскажите, почему при нажатие &quot;f2&quot;. Вставляется и текст с хоткея &quot;1&quot;, как это исправить?</p>]]></description>
			<author><![CDATA[null@example.com (Sandslash)]]></author>
			<pubDate>Sun, 16 Sep 2018 18:15:11 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128728#p128728</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128719#p128719</link>
			<description><![CDATA[<p><strong>Sandslash</strong>,<br /></p><div class="codebox"><pre><code>
f2::
FileRead, OutputVar, love.txt
Send, %OutputVar%
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Gutalin)]]></author>
			<pubDate>Sun, 16 Sep 2018 14:00:08 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128719#p128719</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128718#p128718</link>
			<description><![CDATA[<p>А тут как? Чтобы вставить содержимое файла<br /></p><div class="codebox"><pre><code>f2::
FileRead, OutputVar, love.txt
Send, ???</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Sandslash)]]></author>
			<pubDate>Sun, 16 Sep 2018 13:34:01 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128718#p128718</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128710#p128710</link>
			<description><![CDATA[<p>Логично будет так:<br /></p><div class="codebox"><pre><code>
^V::
Random, rand, 1, 1000
FileReadLine, read, file.txt, % rand
Send, % read
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (slavafedora)]]></author>
			<pubDate>Sun, 16 Sep 2018 05:44:17 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128710#p128710</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128692#p128692</link>
			<description><![CDATA[<div class="codebox"><pre><code>Send, ^{sc2F} ; Нажать Ctrl + V на любой раскладке</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (qqlexa)]]></author>
			<pubDate>Sat, 15 Sep 2018 11:28:11 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128692#p128692</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128689#p128689</link>
			<description><![CDATA[<p><strong>qqlexa</strong></p><p>Как сделать, чтобы вместо отображение в месседж боксе, просто вставляло текст, как команда &quot;Сtrl+V&quot; ?</p><br /><br /><p>//////////////////////////</p><p>Вроде дошло,&nbsp; send же</p>]]></description>
			<author><![CDATA[null@example.com (Sandslash)]]></author>
			<pubDate>Fri, 14 Sep 2018 20:45:06 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128689#p128689</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128688#p128688</link>
			<description><![CDATA[<p>Создаем рандомное число от 1 до 1000 и читаем строку с этим числом.<br /></p><div class="codebox"><pre><code>^V::
Random, rand, 1, 1000
FileReadLine, read, file.txt,rand
MsgBox, % read
</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (qqlexa)]]></author>
			<pubDate>Fri, 14 Sep 2018 20:28:32 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128688#p128688</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Вставка случайной строки(слова) из заданного текстового файла.]]></title>
			<link>http://forum.script-coding.com/viewtopic.php?pid=128687#p128687</link>
			<description><![CDATA[<p>Например есть текстовый файл, с 1000 имейлами. Как сделать так, чтобы при нажатии клавиш(и) (например Контрл+V) вставлялась случайная строка(имейл) из данного текстового файла.</p>]]></description>
			<author><![CDATA[null@example.com (Sandslash)]]></author>
			<pubDate>Fri, 14 Sep 2018 19:54:16 +0000</pubDate>
			<guid>http://forum.script-coding.com/viewtopic.php?pid=128687#p128687</guid>
		</item>
	</channel>
</rss>
