From ff4adc9c0141740d17e28f2fefcd1d1b97429afb Mon Sep 17 00:00:00 2001 From: Philip Waritschlager Date: Sun, 29 Sep 2024 23:06:19 +0200 Subject: [PATCH 1/3] fix download link in docs closes #91 --- docs/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 8020441..4eefbf5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -939,8 +939,7 @@

Tutorial Contents

# Installation

    -
  1. Download the program from here
  2. -
  3. Extract it
  4. +
  5. Download the latest program in portable AppImage format from here.
  6. Run it, for example by double clicking. If this does not work, then you also need to mark it as executable. This usually works via right click / file properties.
  7. Now the installer should open. Click install and your setup is complete.
  8. Please be aware that so far, there is *no* auto-update function. New features are being added all the time right now, so you should probably repeat the above steps then and again. The documentation (this very site) will always be up to date.
  9. From 13465d5e3de427998f3d3b0f79a0d313b5640107 Mon Sep 17 00:00:00 2001 From: Philip Waritschlager Date: Sat, 19 Oct 2024 23:19:25 +0200 Subject: [PATCH 2/3] add example how to split colors after pixelgetcolor --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 4eefbf5..1776506 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12445,9 +12445,9 @@

    Examples

    Related

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

     

    -

    Example

    +

    Examples

    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%

    From c08d6ca346cb077f0e3c90e7ba325911992443fc Mon Sep 17 00:00:00 2001 From: Philip Waritschlager Date: Sat, 19 Oct 2024 23:23:01 +0200 Subject: [PATCH 3/3] add example how to split colors after pixelgetcolor --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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%