<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Переназначение клавиш джойстика]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=5995&amp;type=atom" />
	<updated>2011-07-09T17:00:00Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=5995</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49790#p49790" />
			<content type="html"><![CDATA[<p>Спасибо за совет.</p>]]></content>
			<author>
				<name><![CDATA[Wordmaster]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26514</uri>
			</author>
			<updated>2011-07-09T17:00:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49790#p49790</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49788#p49788" />
			<content type="html"><![CDATA[<p>Сказать, что-то конкретное не могу, такого <em>девайса</em> у меня нет. Можно так для проверки попробовать:</p><div class="codebox"><pre><code>#IfWinActive ahk_class igWin32WindowClass
Joy8::SoundBeep</code></pre></div><p>Вот <a href="http://www.autohotkey.com/docs/misc/RemapJoystick.htm">тут</a> ещё, тема джойстика затронута.</p>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-07-09T13:33:35Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49788#p49788</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49784#p49784" />
			<content type="html"><![CDATA[<p>Теперь код выглядит так :<br /></p><div class="codebox"><pre><code>#IfWinActive ahk_class igWin32WindowClass
Joy8::
   Send, {s}
Return</code></pre></div><p>В игре по прежнему не работает.<br />Провел несколько проб.<br /></p><div class="codebox"><pre><code>#IfWinActive ahk_class igWin32WindowClass
a::b</code></pre></div><p>В игре работает.<br /></p><div class="codebox"><pre><code>#IfWinActive ahk_class AkelPad4
Joy8::
   Send, {s}
Return</code></pre></div><p>И тут тоже всё ок, нажатие на joy8 исправно рисует букву &quot;s&quot; в AkelPad.<br />И все ли сделал правильно?<br />Есть ещё варианты?</p>]]></content>
			<author>
				<name><![CDATA[Wordmaster]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26514</uri>
			</author>
			<updated>2011-07-09T04:46:22Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49784#p49784</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49782#p49782" />
			<content type="html"><![CDATA[<p><a href="http://www.script-coding.com/AutoHotkey/IfWinActive.html">#IfWinActive</a></p>]]></content>
			<author>
				<name><![CDATA[Grey]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=25792</uri>
			</author>
			<updated>2011-07-09T00:40:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49782#p49782</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49780#p49780" />
			<content type="html"><![CDATA[<p>Спасибо конечно.<br />В винде скрипт работает , но в игре работать отказывается.<br />На примере<br /></p><div class="codebox"><pre><code>Joy1::
   Send, {s}
Return</code></pre></div><p>В одной игре он не работает вообще , в другой работает но через раз, обе сингплеерные.<br />Сами игры :Marvel - Ultimate Alliance и Hitman blood money<br />У кого есть догадки?</p>]]></content>
			<author>
				<name><![CDATA[Wordmaster]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26514</uri>
			</author>
			<updated>2011-07-08T21:21:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49780#p49780</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49779#p49779" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Joy1::
Send, {A}
return
Joy2::
Send, {E}
return
Joy3::
Send, {I}
return
Joy4::
Send, {O}
return
Joy7 &amp; Joy1::
Send, {U}
return
AxisUp::
Send, {N}
return
AxisDown::
Send, {H}
return
AxisLeft::
Send, {D}
return
AxisRight:: 
Send, {T}
return
Joy12 ::
Send, {Space}
return
Joy11 :: 
Send, {Up}
return</code></pre></div><p>возможно так?</p>]]></content>
			<author>
				<name><![CDATA[Patriccc]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27028</uri>
			</author>
			<updated>2011-07-08T19:13:14Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49779#p49779</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Переназначение клавиш джойстика]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=49777#p49777" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Joy1::A
Joy2::E
Joy3::I
Joy4::O
Joy7 &amp; Joy1::U
AxisUp::N
AxisDown::H
AxisLeft:: D
AxisRight:: T
Joy12 :: Space
Joy11 :: Up</code></pre></div><p>В чем ошибка?Почему не работает скрипт?<br />Вернее AHK даже не хочет его запускать.</p>]]></content>
			<author>
				<name><![CDATA[Wordmaster]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26514</uri>
			</author>
			<updated>2011-07-08T17:59:04Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=49777#p49777</id>
		</entry>
</feed>
