<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=17341</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=17341&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: как еще в autohotkey можно производить отладку кроме MsgBox?».]]></description>
		<lastBuildDate>Sat, 27 Aug 2022 19:24:09 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154562#p154562</link>
			<description><![CDATA[<p><strong>teadrinker</strong>, действительно удобно. <br /></p><div class="codebox"><pre><code>
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

Gui, +Resize  ; Задаем окну свойство изменять размер.
Gui, Add, Edit, vMainEdit WantTab W600 R20

arr1 := []
arr2 := []
myText := &quot;&quot;
loop,5
{
	arr1[A_Index] := A_Index
	arr2[A_Index] := A_Index+5
}
for index, element1 in arr1
{
	myText .= element1 . &quot;`n&quot;
	for index, element2 in arr2
	{
		myText .= &quot;		&quot; 
		myText .= element2 . &quot;`n&quot;
	}
}

GuiControl,, MainEdit, %myText%

Gui, Show,, Untitled
	
</code></pre></div><p>Я и забыл что в ahk есть gui, спасибо.</p>]]></description>
			<author><![CDATA[null@example.com (pavel.garshin.01)]]></author>
			<pubDate>Sat, 27 Aug 2022 19:24:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154562#p154562</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154533#p154533</link>
			<description><![CDATA[<p>Для VSCode есть такое расширение: <a href="https://marketplace.visualstudio.com/items?itemName=zero-plusplus.vscode-autohotkey-debug">https://marketplace.visualstudio.com/it … tkey-debug</a>.</p>]]></description>
			<author><![CDATA[null@example.com (Phoenixxx_Czar)]]></author>
			<pubDate>Sat, 27 Aug 2022 01:35:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154533#p154533</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154531#p154531</link>
			<description><![CDATA[<p>Можно просто выводить любую информацию в GUI, например в контрол Edit, там есть прокрутка.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Fri, 26 Aug 2022 20:43:04 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154531#p154531</guid>
		</item>
		<item>
			<title><![CDATA[AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=154530#p154530</link>
			<description><![CDATA[<p>Добрый день.<br />Пробовал, как предлагал уважаемый <strong>mozers</strong> в этой теме: <a href="http://forum.script-coding.com/viewtopic.php?id=12604">http://forum.script-coding.com/viewtopic.php?id=12604</a>.<br />Но почему-то у меня ничего не происходит. Что странно, даже ahk не ругается. <br />До этого делал через MsgBox, но когда количество кода увеличивается, это становится неудобным. Хотелось бы видеть общую картину целиком как в консоли. Что посоветуете?</p>]]></description>
			<author><![CDATA[null@example.com (pavel.garshin.01)]]></author>
			<pubDate>Fri, 26 Aug 2022 15:58:15 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=154530#p154530</guid>
		</item>
	</channel>
</rss>
