<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Бесконечный while]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=16846</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=16846&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Бесконечный while».]]></description>
		<lastBuildDate>Sat, 25 Dec 2021 09:02:22 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151399#p151399</link>
			<description><![CDATA[<p><strong>yakmuve</strong>, не забывайте ставить точки, в конце предложений.</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sat, 25 Dec 2021 09:02:22 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151399#p151399</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151397#p151397</link>
			<description><![CDATA[<p><strong>__Михаил__</strong>, спасибо, всё работает.</p>]]></description>
			<author><![CDATA[null@example.com (yakmuve)]]></author>
			<pubDate>Sat, 25 Dec 2021 05:28:12 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151397#p151397</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151395#p151395</link>
			<description><![CDATA[<div class="codebox"><pre><code>Loop, % BoxVarTrue</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (__Михаил__)]]></author>
			<pubDate>Fri, 24 Dec 2021 22:09:26 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151395#p151395</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151391#p151391</link>
			<description><![CDATA[<p><strong>__Михаил__</strong>, пользователь вводит число от 1 до 30, это записывается в переменную BoxVarTrue. Т.е. у меня идёт генерация окна, конкретно сколько &quot;строк&quot; в окне и какой он будет ширины я не знаю. Пользователь вводит кол-во &quot;строк&quot;, после чего работает уже данный цикл.</p>]]></description>
			<author><![CDATA[null@example.com (yakmuve)]]></author>
			<pubDate>Fri, 24 Dec 2021 21:06:23 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151391#p151391</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151389#p151389</link>
			<description><![CDATA[<p>Корявый код. Что мешает сделать цикл по условию: &#039;while(HotkeyY&lt;200)&#039; ?</p>]]></description>
			<author><![CDATA[null@example.com (__Михаил__)]]></author>
			<pubDate>Fri, 24 Dec 2021 20:43:17 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151389#p151389</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Бесконечный while]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=151379#p151379</link>
			<description><![CDATA[<p>Приветствую форумчане. Почему-то while идёт бесконечно:<br /></p><div class="codebox"><pre><code>BoxVarTrue = 15
Gui, 3:Font, s9 Bold, Segoe UI
Gui, 3:Add, Text, x32 y0 w75 h23 +0x200 +Center, Открыть чат
Gui, 3:Add, Text, x8 y0 w21 h23 +0x200 +Center, №
Gui, 3:Add, Text, x113 y0 w67 h23 +0x200, Отыгровка
Gui, 3:Add, DropDownList, x181 y0 w360 vDrop5, %ReplayingDownList%
Gui, 3:Add, Text, x656 y0 w75 h23 +0x200 +Center, Закрыть чат
Gui, 3:Add, Text, x560 y0 w90 h23 +0x200 +Center, Задержка (мс)
Gui, 3:Add, Text, x740 y0 w75 h23 +0x200, Скрин

	GuiBindsNumber = 1
	HotkeyY = 24
	Sleep 100

	while %A_Index% != %BoxVarTrue%
	{
		MsgBox % BoxVarTrue
		msgBox % A_Index
		Gui, 3:Add, Text, x7 y%HotkeyY% w21 h23 +0x200 +Center, %A_Index%

		Var := Bind%GuiBindsNumber%
		Gui, 3:Add, CheckBox, x60 y%HotkeyY% w14 h23 vBind%GuiBindsNumber%, %Var%
		GuiBindsNumber += 1

		Var := Bind%GuiBindsNumber%
		HotkeyY += 3
		Gui, 3:Add, Edit, x112 y%HotkeyY% w440 h21 vBind%GuiBindsNumber%, %Var%
		GuiBindsNumber += 1

		Var := Bind%GuiBindsNumber%
		HotkeyY -= 3
		Gui, 3:Add, CheckBox, x688 y%HotkeyY% w14 h23 vBind%GuiBindsNumber%,
		GuiBindsNumber += 1

		Var := Bind%GuiBindsNumber%
		HotkeyY += 3
		Gui, 3:Add, Edit, x561 y%HotkeyY% w90 h21 vBind%GuiBindsNumber%, %Var%
		GuiBindsNumber += 1

		Var := Bind%GuiBindsNumber%
		HotkeyY -= 3
		Gui, 3:Add, CheckBox, x751 y%HotkeyY% w14 h23 vBind%GuiBindsNumber%,
		GuiBindsNumber += 1

		HotkeyY += 30
		Sleep 50
	}
			MsgBox % GeneringGuiBinds
			HotkeyY += 30
	Gui, 3:Add, Text, x30 y0 w1 h%HotkeyY% +0x200 +Border
	Gui, 3:Add, Text, x109 y0 w1 h%HotkeyY% +0x200 +Border
	Gui, 3:Add, Text, x556 y0 w1 h%HotkeyY% +0x200 +Border
	Gui, 3:Add, Text, x655 y0 w1 h%HotkeyY% +0x200 +Border
	Gui, 3:Add, Text, x735 y0 w1 h%HotkeyY% +0x200 +Border
	Gui, 3:Add, Text, x0 y%HotkeyY% w822 h1 +0x200 +Border
	HotkeyY += 5
	Gui, 3:Add, Button, x600 y%HotkeyY% w109 h23, Сохранить
	Sleep 100
	SplashTextOff, , 60, Настройка, Генерируем окно.`nОжидайте..
	Sleep 300

	HotkeyY += 30
	Gui, 3:Show, w780 h%HotkeyY%, Редактор отыгровок</code></pre></div><p>P.s. В моей программе BoxVarTrue пользователь вводит в EditBox</p>]]></description>
			<author><![CDATA[null@example.com (yakmuve)]]></author>
			<pubDate>Fri, 24 Dec 2021 18:19:25 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=151379#p151379</guid>
		</item>
	</channel>
</rss>
