<?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=10078&amp;type=atom" />
	<updated>2014-10-25T17:10:03Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10078</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87736#p87736" />
			<content type="html"><![CDATA[<p>Так как я сам постоянно использую вставку в буфер обведенного текста, то раз в энное количество дней такое бывает из-за человеческого фактора - переключился между окнами, ничего не выделил. Так что рекомендую подстраховаться.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2014-10-25T17:10:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87736#p87736</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87735#p87735" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>А если что-то подглючит?</p></blockquote></div><p>Всё будет хорошо. <img src="//forum.script-coding.com/img/smilies/wink.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2014-10-25T17:04:01Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87735#p87735</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87733#p87733" />
			<content type="html"><![CDATA[<p>А если что-то подглючит?<br />Правильнее так:<br /></p><div class="codebox"><pre><code>SendInput, ^{vk43}   ; Ctrl + C
ClipWait, 2
if ErrorLevel
{
   MsgBox, Буфер обмена пуст!
   Return
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2014-10-25T17:02:00Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87733#p87733</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87732#p87732" />
			<content type="html"><![CDATA[<p>Чтобы после нажатия ждать поступления данных в буфер, без задержки часто бывает пусто.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2014-10-25T16:57:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87732#p87732</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87728#p87728" />
			<content type="html"><![CDATA[<p>А зачем тут ClipWait, 2 без ErrorLevel?</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2014-10-25T16:48:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87728#p87728</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87726#p87726" />
			<content type="html"><![CDATA[<p>И чем же эта тема отличается от <span class="bbu"><a href="http://forum.script-coding.com/viewtopic.php?id=10075">AHK: изменение цвета текста</a></span>?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2014-10-25T16:45:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87726#p87726</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87718#p87718" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>#vkBA::    ;  &quot;;&quot;
    ClipBoard =
    SendInput ^{vk43}    ;  &quot;C&quot;
    ClipWait, 2
    Clipboard = [color=#FFFF00]%Clipboard%[/color]
    SendInput ^{vk56}    ;  &quot;V&quot;
    return </code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2014-10-25T14:57:37Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87718#p87718</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: Выделение желтым цветом слова или фразы]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=87717#p87717" />
			<content type="html"><![CDATA[<p>Уважаемые форумчане, пожалуйста помогите написать следующий скрипт:</p><p>Необходимо, чтобы после нажатия клавиши Windows и vkBA (то есть, #vkBA::) любая выделенная фраза, например, «фармацевтическая субстанция» выделялась желтым цветом.</p><p>Если я правильно рассуждаю, то внутри скрипта после использования функции ClipBoard должна происходить вставка фразы «фармацевтическая субстанция». И перед этой фразой должно быть следующее <span style="color: #FFFF00">, а после нее </span>.</p><p>Другими словами, должно происходить копирование фразы «фармацевтическая субстанция», а потом вставка <span style="color: #FFFF00">фармацевтическая субстанция</span></p>]]></content>
			<author>
				<name><![CDATA[Maxim]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=32458</uri>
			</author>
			<updated>2014-10-25T14:53:52Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=87717#p87717</id>
		</entry>
</feed>
