Search found 10 matches

by PumpkinShortie
09 Sep 2018, 10:59
Forum: Ask for Help (v1)
Topic: ImageSearch unable to find image when in Chrome on second monitor
Replies: 5
Views: 2180

Re: ImageSearch unable to find image when in Chrome on second monitor

What I did find though, thanks to guest3456, was that in my video card settings, the color range on the second monitor was set to limited. So the color range was something like 8-254 bits instead of 0-256 bits. In fixing that I also removed the color profile that was on that monitor. I hadn't tested...
by PumpkinShortie
09 Sep 2018, 10:32
Forum: Ask for Help (v1)
Topic: ImageSearch unable to find image when in Chrome on second monitor
Replies: 5
Views: 2180

Re: ImageSearch unable to find image when in Chrome on second monitor

There might be transparent components of the png file, often the background, that are displayed differently in file explorer and chrome. Try to up the allowed variation and/or cut the image to the smallest distinct version possible (this should be done anyway)... There is no transparency in that im...
by PumpkinShortie
08 Sep 2018, 16:58
Forum: Ask for Help (v1)
Topic: ImageSearch unable to find image when in Chrome on second monitor
Replies: 5
Views: 2180

Re: ImageSearch unable to find image when in Chrome on second monitor

guest3456 wrote:do you use different scaling %s for each monitor?
I don't. Even if that was the case though, why would the script be able to find the picture when it's displayed in file explorer but not chrome? I just tested in Firefox and it's not working either.
by PumpkinShortie
07 Sep 2018, 15:46
Forum: Ask for Help (v1)
Topic: ImageSearch unable to find image when in Chrome on second monitor
Replies: 5
Views: 2180

ImageSearch unable to find image when in Chrome on second monitor

[Moderator's note: Topic moved from Bug Reports.] #KeyHistory 0 #InstallMouseHook #InstallKeybdHook ;SysGet, leftMostPoint, 76 ;SysGet, topMostPoint, 77 SysGet, totalWidth, 78 SysGet, totalHeight, 79 CoordMode, Pixel, Screen CoordMode, Mouse, Screen CoordMode, ToolTip, Screen ^esc::exitapp ; <- PAN...
by PumpkinShortie
30 Dec 2015, 14:55
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 422501

Re: AutoGUI - GUI Designer and Script Editor

This looks great. I gave it a try. I encountered a few issues. Recreating the window from source will cause the text in text labels to be lost the first time. This can be reproduced. The snapping to grid behavior for default size text labels v.s. edit box, hotkey boxes, drop down lists (and probably...
by PumpkinShortie
30 Dec 2015, 13:25
Forum: Ask for Help (v1)
Topic: Unbind hotkey on GUI control
Replies: 4
Views: 1489

Re: Unbind hotkey on GUI control

Okay this works, but can you enlighten me as to why putting

Code: Select all

startTaxiHotkey = GuiControl,,startTaxiHotkey
on the same line does not work?

Edit : Actually, startTaxiHotkey = is not needed. Thanks!
by PumpkinShortie
29 Dec 2015, 15:25
Forum: Ask for Help (v1)
Topic: Unbind hotkey on GUI control
Replies: 4
Views: 1489

Unbind hotkey on GUI control

I am using a Hotkey box in a GUI and I want to use a button or something to unset the hotkey. This is what I have : Gui, Add, Hotkey, x110 y30 w190 h21 vstartTaxiHotkey, Hotkey Gui, Add, Button, x310 y29 w43 h23 gunsetStartTaxiHotkey, Unset [...] unsetStartTaxiHotkey: vstopTaxiHotkey := None Return ...
by PumpkinShortie
29 Dec 2015, 13:45
Forum: Scripts and Functions (v1)
Topic: GUI Creator (formerly Basic GUI Creator)
Replies: 64
Views: 159032

Re: GUI Creator (formerly Basic GUI Creator)

How do you add more options to things like the drop down list?
Edit : Found it. It's by using pipes. |
by PumpkinShortie
14 Nov 2015, 14:01
Forum: Scripts and Functions (v1)
Topic: Toggle any number of keys with 1 simple function call.
Replies: 0
Views: 1175

Toggle any number of keys with 1 simple function call.

toggleKeys(keys*){ for i, key in keys if (!GetKeyState(key)) { Send {%key% Down} } else { Send {%key% Up} } } Usage : ^Right:: toggleKeys("Up", "Right") return The function takes any number of keys you want. Caveat : This basically reverses whatever state the keys are in. So if you have a toggle th...

Go to advanced search