<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Gui+html+css]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11186&amp;type=atom" />
	<updated>2016-05-25T20:14:14Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11186</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104232#p104232" />
			<content type="html"><![CDATA[<p><strong>serzh82saratov</strong>, Вы правы. Только что заглянул - у меня IE 8...</p>]]></content>
			<author>
				<name><![CDATA[yarrroslav]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33908</uri>
			</author>
			<updated>2016-05-25T20:14:14Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104232#p104232</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104225#p104225" />
			<content type="html"><![CDATA[<p>Надо чтобы IE был не ниже 9.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2016-05-25T19:37:33Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104225#p104225</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104223#p104223" />
			<content type="html"><![CDATA[<p>AHK v1.1.23.01, Win 7 x64<br /></p><div class="fancy_spoiler_switcher"><div class="fancy_spoiler_switcher_header" data-lang-open="открыть спойлер" data-lang-close="скрыть спойлер"><strong>+</strong>&nbsp;открыть спойлер</div><div class="fancy_spoiler"><div class="codebox"><pre><code>
html = 
( %
&lt;!doctype html&gt;
&lt;html&gt;
 
&lt;body&gt; 
&lt;label class=&quot;button&quot; onselectstart=&#039;return false&#039; oncontextmenu=&#039;return false&#039;&gt;
  &lt;input type=&quot;checkbox&quot; id=&quot;checkbox&quot;&gt;
  &lt;span&gt;&lt;/span&gt;
  &lt;span&gt;&lt;/span&gt;
&lt;/label&gt;

&lt;/body&gt;
&lt;head&gt;
&lt;style&gt;
body {
  background-color: #1c1d1f;
  overflow: hidden; 
}
*,
*:before,
*:after {
  box-sizing: border-box;
} 
.button {
  display: block; 
  width: 400px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000000;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2) inset;
  border-radius: 20px; 
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button span {
  display: block;
  position: absolute;
  top: 6px;
  width: 194px;
  height: 108px;
  background-color: #1c1d1f;
  -webkit-transition: box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
}
.button span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: &quot;Open Sans&quot;;
  font-weight: 800;
  font-size: 48px;
  -webkit-transition: text-shadow 800ms ease 100ms, color 800ms ease 100ms;
  transition: text-shadow 800ms ease 100ms, color 800ms ease 100ms;
}
.button span:after {
  content: &quot;&quot;;
  width: 4px;
  height: 108px;
  position: absolute;
  top: 0;
  background: -webkit-radial-gradient(center ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.button span:first-of-type {
  left: 6px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  -webkit-transform-style: preserve3d;
          transform-style: preserve3d;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: perspective(2000px) rotateY(40deg);
          transform: perspective(2000px) rotateY(40deg);
  box-shadow: -1px 0 1px rgba(255, 255, 255, 0.1) inset, 4px 0 8px rgba(255, 255, 255, 0.1) inset, 1px 0 0 rgba(255, 255, 255, 0.1) inset, -10px 0 8px rgba(40, 42, 44, 0.9), -20px 0 8px rgba(28, 29, 31, 0.7), -30px 0 8px rgba(28, 29, 31, 0.4);
}
.button span:first-of-type:before {
  content: &quot;ON&quot;;
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 1px 4px 6px #1c1d1f, 0 0 0 black, 1px 4px 6px #1c1d1f;
}
.button span:first-of-type:after {
  left: -1px;
}
.button span:last-of-type {
  right: 6px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  box-shadow: -1px 1px 1px rgba(255, 255, 255, 0.1) inset, 2px 0 2px rgba(255, 255, 255, 0.05) inset;
}
.button span:last-of-type:before {
  content: &quot;OFF&quot;;
  color: #ff4847;
  text-shadow: 0 0 24px rgba(255, 72, 71, 0.6);
}
.button span:last-of-type:after {
  right: -1px;
  opacity: 0;
}
.button input[type=&quot;checkbox&quot;] {
  display: none;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type {
  -webkit-transform: none;
          transform: none;
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1) inset, -2px 0 2px rgba(255, 255, 255, 0.05) inset;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type:before {
  color: #93c913;
  text-shadow: 0 0 24px rgba(147, 201, 19, 0.6);
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type:after {
  opacity: 0;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type {
  -webkit-transform: perspective(2000px) rotateY(-40deg);
          transform: perspective(2000px) rotateY(-40deg);
  box-shadow: 1px 0 1px rgba(255, 255, 255, 0.1) inset, -4px 0 8px rgba(255, 255, 255, 0.1) inset, -1px 0 0 rgba(255, 255, 255, 0.1) inset, 10px 0 8px rgba(40, 42, 44, 0.9), 20px 0 8px rgba(28, 29, 31, 0.7), 30px 0 8px rgba(28, 29, 31, 0.4);
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type:before {
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 1px 4px 6px #1c1d1f, 0 0 0 #000000, 1px 4px 6px #1c1d1f;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type:after {
  opacity: 1;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;/html&gt;
) 
Global oDoc 
Gui, margin, 0, 0 
FixIE(1)
Gui, Add, ActiveX, w444 h444 voDoc, HTMLFile  
oDoc.body.innerHTML := html
ComObjError(false)
ComObjConnect(oDoc, Events) 
oDoc.querySelector(&quot;.button&quot;).click()
Gui, Show
return   

Class Events  {
	onclick()  { 
		oevent := oDoc.parentWindow.event.srcElement
		tagname := oevent.tagname
		If tagname = input 
			ToolTip % !(oevent.checked + 1) ? &quot;ON&quot; : &quot;OFF&quot; 
	}
}

FixIE(Fix)  {
	Static Key := &quot;Software\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION&quot;
	If A_IsCompiled
		ExeName := A_ScriptName
	Else
		SplitPath, A_AhkPath, ExeName
	If Fix
		RegWrite, REG_DWORD, HKCU, %Key%, %ExeName%, 0
	Else
		RegDelete, HKCU, %Key%, %ExeName%
}</code></pre></div></div></div><p>вот так выглядит скрипт уважаемого serzh82saratov.<br />Если поубирать все и открыть как хтмл - то таки да - виднеется очень красивый и плавный переключатель.<br />serzh82saratov - а может ли быть так, что у меня браузер по умолчанию Опера и от того у меня скрипт не работает как у всех нормальных?</p>]]></content>
			<author>
				<name><![CDATA[yarrroslav]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33908</uri>
			</author>
			<updated>2016-05-25T19:27:55Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104223#p104223</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104205#p104205" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Drugoy пишет:</cite><blockquote><p>hidden не должно быть в кавычках.</p></blockquote></div><p>Ага, поправил.<br /></p><div class="quotebox"><cite>Dr.Jekyll пишет:</cite><blockquote><p>И еще вопрос. Можно ли сделать так, чтобы позиция кнопки запоминалась на выходе ExitApp и была восстановлена при старте скрипта (по умолчанию это позиция &quot;Off&quot;) ... или это из области unreal?</p></blockquote></div><p>Добавил:<br /></p><div class="codebox"><pre><code>oDoc.querySelector(&quot;.button&quot;).click()</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2016-05-25T13:39:27Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104205#p104205</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104203#p104203" />
			<content type="html"><![CDATA[<p><strong>yarrroslav</strong>, у меня на w7x64sp1, скрипт <strong>serzh82saratov</strong>а работает ок.</p><div class="quotebox"><cite>Dr.Jekyll пишет:</cite><blockquote><p>У меня тоже работает ... но при первом клике по кнопке идет небольшое смещение картинки вниз относительно Gui.</p></blockquote></div><p>Всё дело в ошибке в CSS-стиле: для body там надо применять overflow: hidden и hidden не должно быть в кавычках.</p>]]></content>
			<author>
				<name><![CDATA[Drugoy]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27463</uri>
			</author>
			<updated>2016-05-25T13:34:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104203#p104203</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=104149#p104149" />
			<content type="html"><![CDATA[<p>Тема очень интересная. Жаль у меня на Win 7 х64 что то пошло не так. Скрипт Сержа создает окно с черным ничто. А твой хтмл весьма достоин (открыл его оперой, IE что то не открыл его). И как он это у вас там работает и почему не работает у меня - очень даже не понятно и прискорбно.</p>]]></content>
			<author>
				<name><![CDATA[yarrroslav]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=33908</uri>
			</author>
			<updated>2016-05-23T21:57:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=104149#p104149</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100041#p100041" />
			<content type="html"><![CDATA[<p>html здесь маловероятен. Скорее всего надо искать в css где там выставляется положение по-молчанию, загонять ее в переменную и писать все это в ini или реестр. ... К сожалению, css я вообще не знаю.<br />В общем, это большие заморочки. Думаю остановиться на варианте двух Picture, которые будут изменяться под GuiControl - будет нечто вроде анимашки. Уже написал тестовый вариант, вроде неплохо ... просто быстрее переключается, но эффект похож.</p><p>Всех благодарю за помощь! Задача слишком сложная.</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-30T16:27:09Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100041#p100041</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100035#p100035" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>или это из области unreal?</p></blockquote></div><p>Думаю это просто, но нужен тот кто разбирается в html.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2015-12-30T06:38:26Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100035#p100035</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100034#p100034" />
			<content type="html"><![CDATA[<p>Добрый вечер, <strong>serzh82saratov</strong>! Большое спасибо! У меня тоже работает ... но при первом клике по кнопке идет небольшое смещение картинки вниз относительно Gui.<br />А почему Вы поставили &lt;head&gt; после &lt;body&gt; ?<br />И еще вопрос. Можно ли сделать так, чтобы позиция кнопки запоминалась на выходе ExitApp и была восстановлена при старте скрипта (по умолчанию это позиция &quot;Off&quot;) ... или это из области unreal?</p><p>... в принципе, тег &lt;head&gt; тогда можно вообще удалить ....</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-29T22:50:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100034#p100034</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100030#p100030" />
			<content type="html"><![CDATA[<p>Если совсем наобум, у меня так работает:<br /></p><div class="codebox"><pre><code>
html = 
( %
&lt;!doctype html&gt;
&lt;html&gt;
 
&lt;body&gt; 
&lt;label class=&quot;button&quot; onselectstart=&#039;return false&#039; oncontextmenu=&#039;return false&#039;&gt;
  &lt;input type=&quot;checkbox&quot; id=&quot;checkbox&quot;&gt;
  &lt;span&gt;&lt;/span&gt;
  &lt;span&gt;&lt;/span&gt;
&lt;/label&gt;

&lt;/body&gt;
&lt;head&gt;
&lt;style&gt;
body {
  background-color: #1c1d1f;
  overflow: hidden; 
}
*,
*:before,
*:after {
  box-sizing: border-box;
} 
.button {
  display: block; 
  width: 400px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000000;
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.2) inset;
  border-radius: 20px; 
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button span {
  display: block;
  position: absolute;
  top: 6px;
  width: 194px;
  height: 108px;
  background-color: #1c1d1f;
  -webkit-transition: box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: box-shadow 300ms ease, -webkit-transform 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease;
  transition: transform 300ms ease, box-shadow 300ms ease, -webkit-transform 300ms ease;
}
.button span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: &quot;Open Sans&quot;;
  font-weight: 800;
  font-size: 48px;
  -webkit-transition: text-shadow 800ms ease 100ms, color 800ms ease 100ms;
  transition: text-shadow 800ms ease 100ms, color 800ms ease 100ms;
}
.button span:after {
  content: &quot;&quot;;
  width: 4px;
  height: 108px;
  position: absolute;
  top: 0;
  background: -webkit-radial-gradient(center ellipse, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.button span:first-of-type {
  left: 6px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  -webkit-transform-style: preserve3d;
          transform-style: preserve3d;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: perspective(2000px) rotateY(40deg);
          transform: perspective(2000px) rotateY(40deg);
  box-shadow: -1px 0 1px rgba(255, 255, 255, 0.1) inset, 4px 0 8px rgba(255, 255, 255, 0.1) inset, 1px 0 0 rgba(255, 255, 255, 0.1) inset, -10px 0 8px rgba(40, 42, 44, 0.9), -20px 0 8px rgba(28, 29, 31, 0.7), -30px 0 8px rgba(28, 29, 31, 0.4);
}
.button span:first-of-type:before {
  content: &quot;ON&quot;;
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 1px 4px 6px #1c1d1f, 0 0 0 black, 1px 4px 6px #1c1d1f;
}
.button span:first-of-type:after {
  left: -1px;
}
.button span:last-of-type {
  right: 6px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  box-shadow: -1px 1px 1px rgba(255, 255, 255, 0.1) inset, 2px 0 2px rgba(255, 255, 255, 0.05) inset;
}
.button span:last-of-type:before {
  content: &quot;OFF&quot;;
  color: #ff4847;
  text-shadow: 0 0 24px rgba(255, 72, 71, 0.6);
}
.button span:last-of-type:after {
  right: -1px;
  opacity: 0;
}
.button input[type=&quot;checkbox&quot;] {
  display: none;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type {
  -webkit-transform: none;
          transform: none;
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1) inset, -2px 0 2px rgba(255, 255, 255, 0.05) inset;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type:before {
  color: #93c913;
  text-shadow: 0 0 24px rgba(147, 201, 19, 0.6);
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:first-of-type:after {
  opacity: 0;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type {
  -webkit-transform: perspective(2000px) rotateY(-40deg);
          transform: perspective(2000px) rotateY(-40deg);
  box-shadow: 1px 0 1px rgba(255, 255, 255, 0.1) inset, -4px 0 8px rgba(255, 255, 255, 0.1) inset, -1px 0 0 rgba(255, 255, 255, 0.1) inset, 10px 0 8px rgba(40, 42, 44, 0.9), 20px 0 8px rgba(28, 29, 31, 0.7), 30px 0 8px rgba(28, 29, 31, 0.4);
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type:before {
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 1px 4px 6px #1c1d1f, 0 0 0 #000000, 1px 4px 6px #1c1d1f;
}
.button input[type=&quot;checkbox&quot;]:checked ~ span:last-of-type:after {
  opacity: 1;
}
&lt;/style&gt;
&lt;/head&gt;
&lt;/html&gt;
) 
Global oDoc 
Gui, margin, 0, 0 
FixIE(1)
Gui, Add, ActiveX, w444 h444 voDoc, HTMLFile  
oDoc.body.innerHTML := html
ComObjError(false)
ComObjConnect(oDoc, Events) 
oDoc.querySelector(&quot;.button&quot;).click()
Gui, Show
return   

Class Events  {
	onclick()  { 
		oevent := oDoc.parentWindow.event.srcElement
		tagname := oevent.tagname
		If tagname = input 
			ToolTip % !(oevent.checked + 1) ? &quot;ON&quot; : &quot;OFF&quot; 
	}
}

FixIE(Fix)  {
	Static Key := &quot;Software\Microsoft\Internet Explorer\MAIN\FeatureControl\FEATURE_BROWSER_EMULATION&quot;
	If A_IsCompiled
		ExeName := A_ScriptName
	Else
		SplitPath, A_AhkPath, ExeName
	If Fix
		RegWrite, REG_DWORD, HKCU, %Key%, %ExeName%, 0
	Else
		RegDelete, HKCU, %Key%, %ExeName%
}
</code></pre></div>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2015-12-29T20:04:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100030#p100030</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100028#p100028" />
			<content type="html"><![CDATA[<p>у меня 10 винда х64. Ишак 11 версии.</p><p>AutoHotkey L 1.1.22.07</p><p>... может битность AHK имеет значение???</p><p>У меня х64 unicode</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-29T19:31:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100028#p100028</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100026#p100026" />
			<content type="html"><![CDATA[<p>... видимо, это большие заморочки с html. Сделаю пару скриншотов кнопки в положении On и Off и добавлю в Gui как Picture ... будет нечно похожее на анимашку. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-29T19:21:34Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100026#p100026</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100025#p100025" />
			<content type="html"><![CDATA[<p><strong>stealzy</strong>, у меня в этом Gui все работает. Только сейчас проверил все. .... Не пойму в чем причина .....</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-29T19:14:02Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100025#p100025</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100024#p100024" />
			<content type="html"><![CDATA[<p>Я только проверял сейчас в браузерах.<br />В Gui тоже все работает. Мне для скрипта нужно .... ну и для общего развития тоже. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p><p>Обычный скрипт с Gui без всякой связи с браузерами.</p>]]></content>
			<author>
				<name><![CDATA[Dr.Jekyll]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=30028</uri>
			</author>
			<updated>2015-12-29T19:08:31Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100024#p100024</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Gui+html+css]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=100023#p100023" />
			<content type="html"><![CDATA[<p>:facepalm<br />Вы из браузера хотите запускать скрипт?<br />Я то - думал вы хотите использовать нативный элемент ActiveX внутри GUI скрипта.<br />В браузере у меня тоже все ок.<br />Я про то ваш html не отображается в ActiveX, как в браузере.</p><p>Я запускаю ваш код отсюда:</p><div class="quotebox"><cite>Dr.Jekyll пишет:</cite><blockquote><div class="codebox"><pre><code>	Gui About: +LastFound -Caption +ToolWindow +AlwaysOnTop
	
	Gui About: Add, Picture, x500 y10 w20 h20 BackgroundTrans gCloseAbout vCloseAbout, % CloseExit
	Gui About: Add, ActiveX, x0 y0 w530 h320, % A_ScriptDir &quot;\Switcher.html&quot;
	
	Gui About: Show, Center w530 h320, About
	WinSet Region, w530 h320 0-0 R20-20
	Return</code></pre></div></blockquote></div><p>Убираем строку с несущ. label CloseAbout.<br />Вот что я вижу:<a href="http://hostingkartinok.com/show-image.php?id=4f413832a312f214707a458d5ace455b"><span class="postimg"><img src="http://s8.hostingkartinok.com/uploads/thumbs/2015/12/4f413832a312f214707a458d5ace455b.png" alt="http://s8.hostingkartinok.com/uploads/thumbs/2015/12/4f413832a312f214707a458d5ace455b.png" /></span></a></p>]]></content>
			<author>
				<name><![CDATA[stealzy]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=31937</uri>
			</author>
			<updated>2015-12-29T19:05:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=100023#p100023</id>
		</entry>
</feed>
