<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=10775&amp;type=atom" />
	<updated>2015-07-14T14:04:12Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=10775</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95479#p95479" />
			<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>2015-07-14T14:04:12Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95479#p95479</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95476#p95476" />
			<content type="html"><![CDATA[<p>Точно знаю, что размер рабочего стола может быть больше размеров монитора. Встречал на ноутбуке; при этом рабочий стол прокручивался, когда курсор достигал границы. Наверно существуют какие-нибудь способы (программы), позволяющие увеличить размеры рабочего стола.</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2015-07-14T12:18:54Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95476#p95476</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95459#p95459" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>И разжеванной информации по этому джаваскрипту нигде не могу найти</p></blockquote></div><p>Уверен тут есть знающие люди по таким вопросам, просто они живут в разделах JavaScript (браузерный) и Windows Script Host, HTA (VBScript, JScript). Попробуй завести там тему.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2015-07-13T23:48:42Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95459#p95459</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95458#p95458" />
			<content type="html"><![CDATA[<p>Со scrollTop можно так. Но все это как-то ненадежно.<br />И разжеванной информации по этому джаваскрипту нигде не могу найти<br /></p><div class="codebox"><pre><code>ComObjError(false)
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.visible := True, oIEHWND := oIE.HWND
WinMaximize ahk_id %oIEHWND%
oIE.Navigate( &quot;https://theme.wordpress.com/themes/features/infinite-scroll/&quot; )
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
loop
{
   pos := oIE.document.documentElement.scrollTop
   loop 20
   {
      oIE.document.parentWindow.scrollBy(0, 10000)
      if (pos != oIE.document.documentElement.scrollTop)
         continue, 2
      sleep, 50
   }
   break
}
MsgBox, DONE!</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-13T23:36:29Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95458#p95458</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95415#p95415" />
			<content type="html"><![CDATA[<div class="quotebox"><blockquote><p>Если бы я знал, как его пробовать...</p></blockquote></div><p>Тут никак, у них свой скролл. Надо как то &quot;Java скрипты контролировать&quot; (наверное), но я не в курсе как.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2015-07-13T18:43:53Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95415#p95415</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95413#p95413" />
			<content type="html"><![CDATA[<p>Если бы я знал, как его пробовать...<br />Подскажешь?<br />Вот 3 варианта загрузки контента:<br /></p><div class="codebox"><pre><code>DetectHiddenWindows, on
ComObjError(false)
OnExit, Exit
site:=&quot;https://theme.wordpress.com/themes/features/infinite-scroll/&quot;

;1 вариант
CloseProcess(&quot;iexplore.exe&quot;)
setZoom(100)
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.navigate(site)
oIE.visible := True, oIEHWND := oIE.HWND
WinMaximize ahk_id %oIEHWND%
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
OuterHtml := oIE.document.documentElement.OuterHtml
msgbox % StrLen(OuterHtml)

;2 вариант
CloseProcess(&quot;iexplore.exe&quot;)
setZoom(10)
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.navigate(site)
oIE.visible := True, oIEHWND := oIE.HWND
WinMaximize ahk_id %oIEHWND%
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
OuterHtml := oIE.document.documentElement.OuterHtml
loop
{
   sleep, 1000
   if (OuterHtml = oIE.document.documentElement.OuterHtml)
      break
   else
      OuterHtml := oIE.document.documentElement.OuterHtml
}
msgbox % StrLen(OuterHtml)

;3 вариант
CloseProcess(&quot;iexplore.exe&quot;)
setZoom(10)
oIE := ComObjCreate(&quot;InternetExplorer.Application&quot;)
oIE.navigate(site)
oIE.visible := True, oIEHWND := oIE.HWND
WinSet, Style, -0x00040000, ahk_id %oIEHWND%
WinSet, Style, +0x80000000, ahk_id %oIEHWND%
WinMove, ahk_id %oIEHWND%,,0,0,1000,16000 
While oIE.readyState != 4 || oIE.document.readyState != &quot;complete&quot; || oIE.busy
   Sleep, 10
OuterHtml := oIE.document.documentElement.OuterHtml
loop
{
   sleep, 1000
   if (OuterHtml = oIE.document.documentElement.OuterHtml)
      break
   else
      OuterHtml := oIE.document.documentElement.OuterHtml
}
msgbox % StrLen(OuterHtml)



Exit:
CloseProcess(&quot;iexplore.exe&quot;)
setZoom(100)
ExitApp

setZoom(number)
{
   number.=&quot;000&quot;
   regwrite,REG_DWORD,HKCU,Software\Microsoft\Internet Explorer\Zoom,ZoomFactor,%number%
}

CloseProcess(MyProc)
{
   ErrorLevel := 1
   While ErrorLevel and A_Index &lt; 10
   {
      Process, Close, %MyProc%
      Process, WaitClose, %MyProc%, 1
   }
   return
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-13T18:35:43Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95413#p95413</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95401#p95401" />
			<content type="html"><![CDATA[<p>Ты пробовал управлять scrollTop? И приведи конкретный код запускающий этот сайт.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2015-07-13T17:10:56Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95401#p95401</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95400#p95400" />
			<content type="html"><![CDATA[<p>Да, если там стоит джаваскрипт - при прокрутке до конца экрана - загружается очередная порция контента.<br />Или это событие как-то можно через джаваскрипт передать?</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-13T17:08:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95400#p95400</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95396#p95396" />
			<content type="html"><![CDATA[<p>Содержимое HTML-кода зависит от размеров окна?</p>]]></content>
			<author>
				<name><![CDATA[ypppu]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=5974</uri>
			</author>
			<updated>2015-07-13T16:58:41Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95396#p95396</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95395#p95395" />
			<content type="html"><![CDATA[<p>Мне скриншот не нужен.<br />Мне нужно занрузить весь хтмл код с сайта.<br />А вот как сделать, чтобы он загрузился без выдумывания всяких костылей - ума не приложу.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-13T16:47:25Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95395#p95395</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95386#p95386" />
			<content type="html"><![CDATA[<p>Жаль, что не Chrome, там есть расширение, которое по хоткею скриншотит страницу целиком.</p>]]></content>
			<author>
				<name><![CDATA[Eduard]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=28482</uri>
			</author>
			<updated>2015-07-13T16:00:03Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95386#p95386</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95384#p95384" />
			<content type="html"><![CDATA[<p>А как по-другому получить весь контент страницы с таких сайтов, по-типу твиттера?<br />Слать ControlSend-ом все время {end} - тормознуто.<br />Страницу в Ie можно уменьшить в 10 раз + с winmove максимум дает увеличить по вертикали окно в 10 раз.<br />Этого иногда недостаточно.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-13T15:49:48Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95384#p95384</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95383#p95383" />
			<content type="html"><![CDATA[<p>У нас было 4 титана, 20 мониторов 4К, ящик пива, 17 кабелей hdmi, 3 камня Intel Core i7-5960X, и целое ведро планшетов всех расширений и мощностей, а также Java, C#, Python, AHK, справочник по Asm, мы растягивали IE как могли. Не то что бы это был необходимый запас для растяжки IE, но если начал растягивать его, становится трудно остановиться. Единственное, что вызывало у меня опасение — это AHK. Ничто в мире не бывает более беспомощным, безответственным и порочным, чем WinMove. Я знал, что рано или поздно мы перейдем и на эту дрянь.</p><p>Как использовать 100К окно IE?</p>]]></content>
			<author>
				<name><![CDATA[Eduard]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=28482</uri>
			</author>
			<updated>2015-07-13T15:35:15Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95383#p95383</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95312#p95312" />
			<content type="html"><![CDATA[<p>Вручную растягивается, но не до таких размеров - тысяч 100 пикселей - меня устроит.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2015-07-12T00:40:50Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95312#p95312</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Увеличить окно IE больше, чем разрешение рабочего стола]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=95310#p95310" />
			<content type="html"><![CDATA[<p>У меня на IE6 фокус прошёл. Растягивал вручную. <br />Не знаю, что такое &quot;100000px&quot;: может, нулей много?</p>]]></content>
			<author>
				<name><![CDATA[k2]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=29678</uri>
			</author>
			<updated>2015-07-11T23:34:05Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=95310#p95310</id>
		</entry>
</feed>
