<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: Определение положения каретки для ввода текста]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=14104</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=14104&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: Определение положения каретки для ввода текста».]]></description>
		<lastBuildDate>Wed, 05 Sep 2018 21:44:09 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128513#p128513</link>
			<description><![CDATA[<p>Так вот же условие:<br /></p><div class="codebox"><pre><code>If ((Clipboard = &quot;`n&quot;) Or (Clipboard = &quot;`r&quot;) Or (Clipboard = &quot;`r`n&quot;) Or (Clipboard = &quot;.&quot;) Or (Clipboard = &quot;&quot;))
	MsgBox</code></pre></div><p><em>(Clipboard = &quot;.&quot;)</em> - после точки.<br /><em>(Clipboard = &quot;&quot;)</em> - в начале строки.<br /><em>(Clipboard = &quot;`n&quot;) Or (Clipboard = &quot;`r&quot;) Or (Clipboard = &quot;`r`n&quot;)</em> - после переноса строки.</p>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Wed, 05 Sep 2018 21:44:09 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128513#p128513</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128512#p128512</link>
			<description><![CDATA[<p><strong>Malcev</strong>, как из этого скрипта верно сделать условие? Т.е. если каретка в начале строки или после точки, то..</p>]]></description>
			<author><![CDATA[null@example.com (becauseim)]]></author>
			<pubDate>Wed, 05 Sep 2018 21:33:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128512#p128512</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128511#p128511</link>
			<description><![CDATA[<p>У меня в предыдущем коде ошибка:<br /></p><div class="quotebox"><blockquote><p>ClipboardAll is not supported inside comma-separated expressions; that is, it should be assigned on a line by itself such as ClipSaved := ClipboardAll.</p></blockquote></div><p>Правильно так:<br /></p><div class="codebox"><pre><code>F1::
tmp := ClipboardAll
Clipboard := &quot;&quot;
Send +{Left}^{vk43}
If (Clipboard != &quot;&quot;)
   Send {Right}
If ((Clipboard = &quot;`n&quot;) Or (Clipboard = &quot;`r&quot;) Or (Clipboard = &quot;`r`n&quot;) Or (Clipboard = &quot;.&quot;) Or (Clipboard = &quot;&quot;))
	MsgBox
Clipboard := tmp
Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Wed, 05 Sep 2018 21:18:49 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128511#p128511</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128312#p128312</link>
			<description><![CDATA[<p>Правильней так:<br /></p><div class="codebox"><pre><code>F1::
tmp := ClipboardAll, Clipboard := &quot;&quot;
Send +{Left}^{vk43}
If (Clipboard != &quot;&quot;)
   Send {Right}
If ((Clipboard = &quot;`n&quot;) Or (Clipboard = &quot;`r&quot;) Or (Clipboard = &quot;`r`n&quot;) Or (Clipboard = &quot;.&quot;) Or (Clipboard = &quot;&quot;))
	MsgBox
Clipboard := tmp
Return</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Tue, 28 Aug 2018 14:01:11 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128312#p128312</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128311#p128311</link>
			<description><![CDATA[<p><strong>stealzy</strong>, спасибо! Но не понял, как скрипт работает и что он определяет. Вне зависимости от того, где находится каретка - она возварщается на прежнее место без уведомлений.</p>]]></description>
			<author><![CDATA[null@example.com (becauseim)]]></author>
			<pubDate>Tue, 28 Aug 2018 13:38:35 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128311#p128311</guid>
		</item>
		<item>
			<title><![CDATA[AHK: Определение положения каретки для ввода текста]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=128204#p128204</link>
			<description><![CDATA[<p>Как определить, что текущее положение каретки находится после точки или в начале строки? Спасибо!</p>]]></description>
			<author><![CDATA[null@example.com (becauseim)]]></author>
			<pubDate>Thu, 23 Aug 2018 16:15:56 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=128204#p128204</guid>
		</item>
	</channel>
</rss>
