diff --git a/docs/index.html b/docs/index.html index 1776506..ae43b18 100644 --- a/docs/index.html +++ b/docs/index.html @@ -10018,8 +10018,9 @@

The "Last Found" Window

Related

PixelSearch, CoordMode, MouseGetPos

 

-

Example

+

Examples

^!z::
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
MsgBox, The color at the current cursor position is %color%.
return

+

PixelGetColor, color, 1000, 500
StringMid, red, color, 5, 2
StringMid, green, color, 3, 2
StringMid, blue, color, 0, 2
MsgBox, color is %red% %green% %blue%

@@ -12445,9 +12446,8 @@

Examples

Related

IfInString, StringGetPos, StringLeft, StringRight, StringTrimLeft, StringTrimRight, StringLen, StringLower, StringUpper, StringReplace

 

-

Examples

+

Example

Source = Hello this is a test.
StringMid, the_word_this, Source, 7, 4
-

PixelGetColor, color, 1000, 500
StringMid, red, color, 5, 2
StringMid, green, color, 3, 2
StringMid, blue, color, 0, 2
MsgBox, color is %red% %green% %blue%