<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=17341&amp;type=atom" />
	<updated>2022-08-27T19:24:09Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=17341</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=154562#p154562" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[pavel.garshin.01]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42521</uri>
			</author>
			<updated>2022-08-27T19:24:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=154562#p154562</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=154533#p154533" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Phoenixxx_Czar]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=34426</uri>
			</author>
			<updated>2022-08-27T01:35:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=154533#p154533</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=154531#p154531" />
			<content type="html"><![CDATA[<p>Можно просто выводить любую информацию в GUI, например в контрол Edit, там есть прокрутка.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2022-08-26T20:43:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=154531#p154531</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: как еще в autohotkey можно производить отладку кроме MsgBox?]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=154530#p154530" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[pavel.garshin.01]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=42521</uri>
			</author>
			<updated>2022-08-26T15:58:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=154530#p154530</id>
		</entry>
</feed>
