<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Проблема с установкой scite4autohotkey]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11130&amp;type=atom" />
	<updated>2015-12-09T12:16:59Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11130</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99593#p99593" />
			<content type="html"><![CDATA[<p>Если по-английски пишете, спросите лучше на офф. форуме.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-12-09T12:16:59Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99593#p99593</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99591#p99591" />
			<content type="html"><![CDATA[<p>Посмотрел и получилось, что в SciTe4 код отрабатывает и возвращает путь установки АНК, а при самостоятельном запуске скрипта пустота. Не прошу особого внимания на мою проблему, хочется исключить лишь свою типичную ошибку, если я ее допускаю.</p>]]></content>
			<author>
				<name><![CDATA[ser-bilichenko]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33515</uri>
			</author>
			<updated>2015-12-09T08:24:06Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99591#p99591</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99589#p99589" />
			<content type="html"><![CDATA[<p>Можно посмотреть в исходнике SciTe4 где он проверяет установку AHK и оттуда уже плясать.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-12-09T05:21:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99589#p99589</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99587#p99587" />
			<content type="html"><![CDATA[<p>Попробуй запускать установщики с правами администратора.</p>]]></content>
			<author>
				<name><![CDATA[Alectric]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26027</uri>
			</author>
			<updated>2015-12-09T04:48:10Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99587#p99587</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99581#p99581" />
			<content type="html"><![CDATA[<p>Спасибо за помощь. Запустил, попробывал - ничего не вернул этот скрипт. Еще раз проинсталлил AHK, запустил установщик SciTe4 и все стало и работает. Попробывал опять ваш скрпит и опять пустой MsgBox. Обидно, что не смог воспользоваться в полной мере вашей помощью.</p>]]></content>
			<author>
				<name><![CDATA[ser-bilichenko]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33515</uri>
			</author>
			<updated>2015-12-08T17:01:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99581#p99581</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99574#p99574" />
			<content type="html"><![CDATA[<p>Так можно определить, правильно ли установлен:<br /></p><div class="codebox"><pre><code>MsgBox, % IsAhkInstalled()

IsAhkInstalled()
{
	if A_Is64bitOS
	{
		Loop, HKLM, SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall, 1, 1
		{
			if (A_LoopRegName = &quot;DisplayName&quot;)
			{
				RegRead, var
				if RegExMatch(var, &quot;i)^autohotkey&quot;)
					Return A_LoopRegKey &quot;\&quot; A_LoopRegSubkey
			}
		}
	}
	
	Loop, HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall, 1, 1
	{
		if (A_LoopRegName = &quot;DisplayName&quot;)
		{
			RegRead, var
			if RegExMatch(var, &quot;i)^autohotkey&quot;)
				Return A_LoopRegKey &quot;\&quot; A_LoopRegSubkey
		}
	}
}</code></pre></div><p>Если возвращает ключ реестра, значит нормально.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-12-08T13:34:39Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99574#p99574</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99570#p99570" />
			<content type="html"><![CDATA[<p>Да я его через инталятор и ставил, может кривой инсталятор, может руки у меня. Не в курсе где его в реестре посмотреть?</p>]]></content>
			<author>
				<name><![CDATA[ser-bilichenko]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33515</uri>
			</author>
			<updated>2015-12-08T11:51:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99570#p99570</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99569#p99569" />
			<content type="html"><![CDATA[<p>Попробуйте переустановить AHK с помощью инсталлера.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2015-12-08T10:42:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99569#p99569</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Проблема с установкой scite4autohotkey]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=99567#p99567" />
			<content type="html"><![CDATA[<p>Доброго времени суток!<br />При установке scite4autohotkey пишет, что не установлен autohotkey, но он установлен. Пробовал на двух компах. В чем причина, никто не подскажет?</p>]]></content>
			<author>
				<name><![CDATA[ser-bilichenko]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33515</uri>
			</author>
			<updated>2015-12-07T18:40:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=99567#p99567</id>
		</entry>
</feed>
