<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=15745&amp;type=atom" />
	<updated>2020-11-02T15:47:20Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=15745</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=143090#p143090" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>kdn14062000 пишет:</cite><blockquote><p>я взял этот код</p></blockquote></div><p>Не ясно какой этот, вам тут и картинки приложили, и много кода написали, и разжевали всё, честно говоря не охота будет в будущем вам отвечать на сообщения в стиле - догадайся сам, а то мне для тебя в падло оформить ссылку, и вобще что то толком объяснять, сам всё спросишь чё тебе там надо задрот.<br /></p><div class="quotebox"><cite>kdn14062000 пишет:</cite><blockquote><p>иногда он находит вместо трех один или 2</p></blockquote></div><p>Скорее всего не хватает variation.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-11-02T15:47:20Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=143090#p143090</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=143087#p143087" />
			<content type="html"><![CDATA[<p><strong>serzh82saratov</strong><br />я взял этот код ,и он работает ,но иногда он находит вместо трех один или 2 .В чем может быть прикол</p>]]></content>
			<author>
				<name><![CDATA[kdn14062000]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41144</uri>
			</author>
			<updated>2020-11-02T15:32:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=143087#p143087</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=143032#p143032" />
			<content type="html"><![CDATA[<p>Да. Через opencv.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-31T09:25:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=143032#p143032</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=143030#p143030" />
			<content type="html"><![CDATA[<p><strong>Malcev</strong><br />А есть вариант сделать так,чтобы искать изображения на экране немного увеличенные или уменьшенные ?</p>]]></content>
			<author>
				<name><![CDATA[kdn14062000]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41144</uri>
			</author>
			<updated>2020-10-31T08:45:21Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=143030#p143030</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142976#p142976" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>serzh82saratov пишет:</cite><blockquote><p>А метод получения снимка может как то влиять на скорость поиска в нём?</p></blockquote></div><p>Нет, так это просто участок памяти к которой мы получаем доступ.<br /></p><div class="codebox"><pre><code>setbatchlines -1
DllCall(&quot;LoadLibrary&quot;, &quot;str&quot;, &quot;gdiplus&quot;)
VarSetCapacity(si, 8+2*A_PtrSize, 0)
NumPut(0x1, si, &quot;uint&quot;)
DllCall(&quot;gdiplus\GdiplusStartup&quot;, &quot;ptr*&quot;, pToken, &quot;ptr&quot;, &amp;si, &quot;ptr&quot;, 0)
hDC := DllCall(&quot;GetDC&quot;, &quot;ptr&quot;, 0, &quot;ptr&quot;)
pDC := DllCall(&quot;CreateCompatibleDC&quot;, &quot;ptr&quot;, hDC, &quot;ptr&quot;)
VarSetCapacity(bi, 40, 0)
NumPut(40, bi, 0, &quot;int&quot;)
NumPut(A_ScreenWidth, bi, 4, &quot;int&quot;)
NumPut(A_ScreenHeight, bi, 8, &quot;int&quot;)
NumPut(1, bi, 12, &quot;short&quot;)
NumPut(bpp:=32, bi, 14, &quot;short&quot;)
hBM := DllCall(&quot;CreateDIBSection&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, &amp;bi, &quot;int&quot;, 0, &quot;ptr*&quot;, Scan, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;ptr&quot;)
Stride:=((A_ScreenWidth*bpp+31)//32)*4
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)


DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
a := a_tickcount
loop % A_ScreenHeight
{
   A_IndexY := A_Index-1
   loop % A_ScreenWidth
      NumGet(Scan+0, (A_Index-1)*4 + A_IndexY*Stride, &quot;uint&quot;)
}
msgbox % a_tickcount - a


hBM := DllCall(&quot;CreateCompatibleBitmap&quot;, &quot;ptr&quot;, hDC, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;)
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)
VarSetCapacity(bi, 40, 0)
NumPut(40, bi, 0, &quot;int&quot;)
NumPut(A_ScreenWidth, bi, 4, &quot;int&quot;)
NumPut(-A_ScreenHeight, bi, 8, &quot;int&quot;)
NumPut(1, bi, 12, &quot;short&quot;)
NumPut(bpp:=32, bi, 14, &quot;short&quot;)
Stride:=((A_ScreenWidth*bpp+31)//32)*4

VarSetCapacity(bits, A_ScreenWidth*A_ScreenHeight*4, 0)
DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
DllCall(&quot;GetDIBits&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, &amp;bits, &quot;ptr&quot;, &amp;bi, &quot;int&quot;, 0)
Scan := &amp;bits
a := a_tickcount
loop % A_ScreenHeight
{
   A_IndexY := A_Index-1
   loop % A_ScreenWidth
      NumGet(Scan+0, (A_Index-1)*4 + A_IndexY*Stride, &quot;uint&quot;)
}
msgbox % a_tickcount - a


hBM := DllCall(&quot;CreateCompatibleBitmap&quot;, &quot;ptr&quot;, hDC, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;)
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)
VarSetCapacity(Rect, 16, 0)
NumPut(A_ScreenWidth, Rect, 8, &quot;uint&quot;)
NumPut(A_ScreenHeight, Rect, 12, &quot;uint&quot;)

DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
DllCall(&quot;gdiplus\GdipCreateBitmapFromHBITMAP&quot;, &quot;ptr&quot;, hBM, &quot;ptr&quot;, 0, &quot;ptr*&quot;, pBitmap)
VarSetCapacity(BitmapData, 16+2*A_PtrSize, 0)
DllCall(&quot;gdiplus\GdipBitmapLockBits&quot;, &quot;ptr&quot;, pBitmap, &quot;ptr&quot;, &amp;Rect, &quot;uint&quot;, ReadWrite := 3, &quot;int&quot;, Format32bppArgb := 2498570, &quot;ptr&quot;, &amp;BitmapData)
Stride := NumGet(BitmapData, 8, &quot;int&quot;)
Scan := NumGet(BitmapData, 16, &quot;ptr&quot;)
a := a_tickcount
loop % A_ScreenHeight
{
   A_IndexY := A_Index-1
   loop % A_ScreenWidth
      NumGet(Scan+0, (A_Index-1)*4 + A_IndexY*Stride, &quot;uint&quot;)
}
msgbox % a_tickcount - a
DllCall(&quot;gdiplus\GdipBitmapUnlockBits&quot;, &quot;ptr&quot;, pBitmap, &quot;ptr&quot;, &amp;BitmapData)
DllCall(&quot;gdiplus\GdipDisposeImage&quot;, &quot;ptr&quot;, pBitmap)</code></pre></div><div class="quotebox"><blockquote><p>Можно предложить ему туда добавить.</p></blockquote></div><p>Попробуй.<br /></p><div class="quotebox"><cite>serzh82saratov пишет:</cite><blockquote><p>Кстати не в курсе как у него дела со второй версией, стабильный релиз ещё не планируется?</p></blockquote></div><p>Не знаю.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-29T11:41:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142976#p142976</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142966#p142966" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Malcev пишет:</cite><blockquote><p>Но только вряд ли lexikosa это заинтересует, так как он погряз в ahk2.</p></blockquote></div><p>Можно предложить ему туда добавить.<br />Кстати не в курсе как у него дела со второй версией, стабильный релиз ещё не планируется?</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-10-29T08:21:57Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142966#p142966</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142965#p142965" />
			<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>2020-10-29T08:08:58Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142965#p142965</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142914#p142914" />
			<content type="html"><![CDATA[<p>Кстати из gdi/gdi+ самый быстрый вариант получать scan через CreateDIBSection (до 1.5 раз быстрее, чем GetDIBits и до 2 раз, чем gdi+ lockbits).<br /></p><div class="codebox"><pre><code>setbatchlines -1
DllCall(&quot;LoadLibrary&quot;, &quot;str&quot;, &quot;gdiplus&quot;)
VarSetCapacity(si, 8+2*A_PtrSize, 0)
NumPut(0x1, si, &quot;uint&quot;)
DllCall(&quot;gdiplus\GdiplusStartup&quot;, &quot;ptr*&quot;, pToken, &quot;ptr&quot;, &amp;si, &quot;ptr&quot;, 0)
hDC := DllCall(&quot;GetDC&quot;, &quot;ptr&quot;, 0, &quot;ptr&quot;)
pDC := DllCall(&quot;CreateCompatibleDC&quot;, &quot;ptr&quot;, hDC, &quot;ptr&quot;)
VarSetCapacity(bi, 40, 0)
NumPut(40, bi, 0, &quot;int&quot;)
NumPut(A_ScreenWidth, bi, 4, &quot;int&quot;)
NumPut(A_ScreenHeight, bi, 8, &quot;int&quot;)
NumPut(1, bi, 12, &quot;short&quot;)
NumPut(bpp:=32, bi, 14, &quot;short&quot;)
hBM := DllCall(&quot;CreateDIBSection&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, &amp;bi, &quot;int&quot;, 0, &quot;ptr*&quot;, Scan, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;ptr&quot;)
Stride:=((A_ScreenWidth*bpp+31)//32)*4
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)

a := a_tickcount
loop 100
   DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
msgbox % a_tickcount - a


hBM := DllCall(&quot;CreateCompatibleBitmap&quot;, &quot;ptr&quot;, hDC, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;)
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)
VarSetCapacity(bi, 40, 0)
NumPut(40, bi, 0, &quot;int&quot;)
NumPut(A_ScreenWidth, bi, 4, &quot;int&quot;)
NumPut(-A_ScreenHeight, bi, 8, &quot;int&quot;)
NumPut(1, bi, 12, &quot;short&quot;)
NumPut(bpp:=32, bi, 14, &quot;short&quot;)
Stride:=((A_ScreenWidth*bpp+31)//32)*4

a := a_tickcount
loop 100
{
   VarSetCapacity(bits, A_ScreenWidth*A_ScreenHeight*4, 0)
   DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
   DllCall(&quot;GetDIBits&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, &amp;bits, &quot;ptr&quot;, &amp;bi, &quot;int&quot;, 0)
   Scan := &amp;bits
}
msgbox % a_tickcount - a


hBM := DllCall(&quot;CreateCompatibleBitmap&quot;, &quot;ptr&quot;, hDC, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;)
oBM := DllCall(&quot;SelectObject&quot;, &quot;ptr&quot;, pDC, &quot;ptr&quot;, hBM, &quot;ptr&quot;)
VarSetCapacity(Rect, 16, 0)
NumPut(A_ScreenWidth, Rect, 8, &quot;uint&quot;)
NumPut(A_ScreenHeight, Rect, 12, &quot;uint&quot;)

a := a_tickcount
loop 100
{
   DllCall(&quot;BitBlt&quot;, &quot;ptr&quot;, pDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;int&quot;, A_ScreenWidth, &quot;int&quot;, A_ScreenHeight, &quot;ptr&quot;, hDC, &quot;int&quot;, 0, &quot;int&quot;, 0, &quot;uint&quot;, 0x00CC0020|0x40000000) ; SourceCopy | CaptureBlt
   DllCall(&quot;gdiplus\GdipCreateBitmapFromHBITMAP&quot;, &quot;ptr&quot;, hBM, &quot;ptr&quot;, 0, &quot;ptr*&quot;, pBitmap)
   VarSetCapacity(BitmapData, 16+2*A_PtrSize, 0)
   DllCall(&quot;gdiplus\GdipBitmapLockBits&quot;, &quot;ptr&quot;, pBitmap, &quot;ptr&quot;, &amp;Rect, &quot;uint&quot;, ReadWrite := 3, &quot;int&quot;, Format32bppArgb := 2498570, &quot;ptr&quot;, &amp;BitmapData)
   Stride := NumGet(BitmapData, 8, &quot;int&quot;)
   Scan := NumGet(BitmapData, 16, &quot;ptr&quot;)
   DllCall(&quot;gdiplus\GdipBitmapUnlockBits&quot;, &quot;ptr&quot;, pBitmap, &quot;ptr&quot;, &amp;BitmapData)
   DllCall(&quot;gdiplus\GdipDisposeImage&quot;, &quot;ptr&quot;, pBitmap)
}
msgbox % a_tickcount - a</code></pre></div>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-28T02:34:07Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142914#p142914</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142843#p142843" />
			<content type="html"><![CDATA[<p>Можно было бы много чего добавить, например получение конкретных окон, а не как сейчас getdc(0).<br />Но только вряд ли lexikosa это заинтересует, так как он погряз в ahk2.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-26T13:09:11Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142843#p142843</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142839#p142839" />
			<content type="html"><![CDATA[<p>Добавить бы туда параметр поиска нескольких совпадений, и нескольких картинок. Если file массив, то искать каждое со своими параметрами в одном снимке. Думаю такое совсем не сложно было сделать из коробки.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-10-26T11:55:24Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142839#p142839</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142835#p142835" />
			<content type="html"><![CDATA[<p>ImageSearch как-раз через GDIский GetDIBits и работает.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-26T00:02:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142835#p142835</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142834#p142834" />
			<content type="html"><![CDATA[<p>C GDI понятно что вариантов много.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-10-25T23:28:18Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142834#p142834</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142833#p142833" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>serzh82saratov пишет:</cite><blockquote><p>По идее должно работать быстрее чем 25 раз pixelgetcolor (при худшем варианте если искомое находится в последней ячейке).</p></blockquote></div><p>Если нужна скорость, то думаю, самое быстрое будет получать 25 раз цвет через lockbits.</p>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2020-10-25T22:37:19Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142833#p142833</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142832#p142832" />
			<content type="html"><![CDATA[<p><strong>serzh82saratov</strong><br />Хм,а установил я его в 6 месяце.<br />А так большое вам спасибо ,вроде все заработало )</p>]]></content>
			<author>
				<name><![CDATA[kdn14062000]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=41144</uri>
			</author>
			<updated>2020-10-25T21:25:17Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142832#p142832</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: Поиск 3-х одинаковых картинок и тык по ним]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=142831#p142831" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>kdn14062000 пишет:</cite><blockquote><p>Да ну нафиг,это реально было из-за версии.А моя версия вышла 3- 4 месяца назад(</p></blockquote></div><p>Не месяца, а 4+ года.</p>]]></content>
			<author>
				<name><![CDATA[serzh82saratov]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27879</uri>
			</author>
			<updated>2020-10-25T21:02:33Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=142831#p142831</id>
		</entry>
</feed>
