Search found 165 matches

by PipeDreams
10 Jul 2023, 05:33
Forum: Scripts and Functions (v1)
Topic: [Class] Monitor (Brightness, Contrast, Gamma Ramp)
Replies: 75
Views: 51842

Re: [Class] Monitor (Brightness, Contrast, Gamma Ramp)

@jNizM This script is so useful; I love it! Thank you. Here are some basic controls for anyone too lazy to set them up. I just wanted to throw my 2 cents in. #SingleInstance Force OnExit, ExitSub GoSub, SetUp ; ===== Controls =========================================================================...
by PipeDreams
06 Jul 2023, 19:46
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

Re: How can I get the hand cursor to stop flickering? Topic is solved

@just me

It works!
Thanks for your time friend. I've learned a lot here. :)
by PipeDreams
04 Jul 2023, 14:21
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

Re: How can I get the hand cursor to stop flickering? Topic is solved

Hi @just me Ok, I see; I was using SoundBeep, 100, 10 to find where the the loop runs unhindered and where it does not. So If I put SoundBeep, 100, 10 above If (Ctrl = MouseOver) I hear it no matter where the pointer is. But if I place SoundBeep, 100, 10 below the return point for If (Ctrl = MouseOv...
by PipeDreams
04 Jul 2023, 02:46
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

Re: How can I get the hand cursor to stop flickering? Topic is solved

Wow! Nice cleanup just me . :bravo: I have some questions, however. 1. How did you get the Blinker timer only to run when the mouse moves? I Also wanted the text to blink from Aqua to Orange when the mouse is over it, but I could not get it to work in the Blinker timer you set up because it only run...
by PipeDreams
02 Jul 2023, 16:20
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

Re: How can I get the hand cursor to stop flickering? Topic is solved

Oh, I see what you mean by user-defined function . No, MouseOver is not in the AHK doc. It was something left over from another script I saw long ago, and this script never complained about it not being defined, so I just assumed it was necessary for the pointer thing to work and never tried removin...
by PipeDreams
02 Jul 2023, 14:29
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

Re: How can I get the hand cursor to stop flickering? Topic is solved

Hello, 1. Is this from ChatGPT? 2. Does the script intend to call a user-defined function? 3. What should happen if you run the following script by itself? #Requires AutoHotkey v1.1.33 If (MouseOver (Ctl=Ctl) AND !(a)) MsgBox 123 1. No, it’s not from chat GDP. Is my coding that bad? :lol: I am curi...
by PipeDreams
02 Jul 2023, 01:33
Forum: Ask for Help (v1)
Topic: A problem with remapping Windows key
Replies: 2
Views: 279

Re: A problem with remapping Windows key

Lwin and L lock your PC, I don't think you can disable the combo, but you can disable your windows key, just not the combo as far as I know.

Code: Select all

LWin::Return
https://www.autohotkey.com/docs/v1/KeyList.htm#modifier
by PipeDreams
02 Jul 2023, 00:13
Forum: Ask for Help (v1)
Topic: How can I get the hand cursor to stop flickering? Topic is solved
Replies: 12
Views: 759

How can I get the hand cursor to stop flickering? Topic is solved

When I move the mouse over any text it flickers.. How can I keep it sold when I move it over the text, and change it back to the arrow when not over the text? HandFlicker.gif Here's my script: ;<=======================================================================================================> ...
by PipeDreams
26 May 2023, 12:17
Forum: Gaming Scripts (v1)
Topic: Secret of Mana Remake Support Caster Spell Leveling Bot
Replies: 0
Views: 1175

Secret of Mana Remake Support Caster Spell Leveling Bot

I was playing with ImageSearch and made this little bot, hope you all like it. You will need the pix to make it work. You can DL mine or make your own with the windows snipping tool. Secret of Mana Pix.zip ;<============================================================================================...
by PipeDreams
05 May 2023, 21:30
Forum: Ask for Help (v1)
Topic: ControlSend question Topic is solved
Replies: 1
Views: 215

ControlSend question Topic is solved

So in the AHK Doc it says, ControlSend fails on win 11 when using it to send simulated keystrokes to a minimized window or control... Is there a work around, or do we just have to wait for AHK to be updated? Run, Notepad,, Min, PID ; Run Notepad minimized. WinWait, ahk_pid %PID% ; Wait for it to app...
by PipeDreams
01 Jul 2021, 05:28
Forum: Ask for Help (v1)
Topic: Issue with launching AHK from Note Pad ++
Replies: 1
Views: 233

Issue with launching AHK from Note Pad ++

Whenever I launch this script from NP++ via NP++’s run window using "C:\Program Files\AutoHotkey\AutoHotkey.exe" "$(FULL_CURRENT_PATH)" or just using "$(FULL_CURRENT_PATH)" ImageSearch fails. However, if I launch the AHK script by double-clicking it from windows explorer, ImageSearch works as expect...
by PipeDreams
15 Apr 2021, 13:20
Forum: Ask for Help (v1)
Topic: Loop, Parse, and Keywait Topic is solved
Replies: 3
Views: 289

Re: Loop, Parse, and Keywait Topic is solved

oh i see, thank you!
by PipeDreams
15 Apr 2021, 13:13
Forum: Ask for Help (v1)
Topic: Loop, Parse, and Keywait Topic is solved
Replies: 3
Views: 289

Loop, Parse, and Keywait Topic is solved

KeyWait only works with one key at a time in my Var, when I add others it, it no longer works. Why? What am I doing wrong here? I have used this same Loop, Parse, thing with colors and PixelSearch with out issues. I don't see the issue. Loop, { ;MyHotkey :="Shift" ;Working MyHotkey :="w|a|s|d|Shift"...
by PipeDreams
08 Apr 2021, 06:16
Forum: Ask for Help (v1)
Topic: Is there a more efficient way to read keys from an ini file using FileRead or FileReadLine instead of iniRead? Topic is solved
Replies: 2
Views: 274

Re: Is there a more efficient way to read keys from an ini file using FileRead or FileReadLine instead of iniRead? Topic is solved

Using the file-based commands may allow you to set up the .ini file in fewer lines, but it’s not a good practice in general because it doesn’t update those entries if they already exist. And while it would be possible to read the .ini file and parse it, you would pretty much be rewriting what alrea...
by PipeDreams
08 Apr 2021, 06:01
Forum: Ask for Help (v1)
Topic: Is there a more efficient way to read keys from an ini file using FileRead or FileReadLine instead of iniRead? Topic is solved
Replies: 2
Views: 274

Is there a more efficient way to read keys from an ini file using FileRead or FileReadLine instead of iniRead? Topic is solved

So if FileAppend can be used more efficiently than IniWrite Example: FileAppend, [section1] `nClass=%Class% `nX=%X% `nY=%Y% `nWidth=%Width% `nHeight=%Height%, LastWindowSeen.ini Instead of IniWrite, %Class%, LastWindowSeen.ini, section1, Class IniWrite, %X%, LastWindowSeen.ini, section1, X IniWrite,...
by PipeDreams
06 Mar 2020, 02:33
Forum: Scripts and Functions (v1)
Topic: [Class] Monitor (Brightness, Contrast, Gamma Ramp)
Replies: 75
Views: 51842

Re: Class Monitor (Brightness, ColorTemperature)

Hi, Since the latest Windows 10 preview build 18305.rs_prerelease.181213-2133 installed, the script no longer works, anyone else who have the same issue? OMFG YES!!! I have been putting off this update for ever, but I can no longer do that if I want other things to work on my PC. So, now I'm forced...
by PipeDreams
06 Jan 2020, 15:52
Forum: Ask for Help (v1)
Topic: Multiple GUIs differing shade of color. Please Help. Topic is solved
Replies: 6
Views: 1303

Re: Multiple GUIs differing shade of color. Please Help. Topic is solved

6 sections with R value decrementing by 50 (i.e 255, 205, etc): sections := 6 width := ceil(800/ sections), height := 500 gui, margin,0,0 gui, -dpiscale -caption loop,% sections { r := substr("00" Format("{:X}", 255 - (a_index - 1) * 50), -1) b := "00" g := "00" RGB := R . G . B, y := a_index = 1 ?...
by PipeDreams
04 Jan 2020, 23:11
Forum: Ask for Help (v1)
Topic: Multiple GUIs differing shade of color. Please Help. Topic is solved
Replies: 6
Views: 1303

Re: Multiple GUIs differing shade of color. Please Help. Topic is solved

If the ultimate intent is to have a gui showing scales of color, you might try to do something like this: sections := 14 width := ceil(800/ sections), height := 500 gui, margin,0,0 gui, -dpiscale -caption loop,% sections { R := substr("00" Format("{:X}", round(255 - (a_index - 1) * 255/sections)), ...
by PipeDreams
03 Jan 2020, 16:21
Forum: Ask for Help (v1)
Topic: Multiple GUIs differing shade of color. Please Help. Topic is solved
Replies: 6
Views: 1303

Re: Multiple GUIs differing shade of color. Please Help. Topic is solved

Loop, %ValueSet% { n := FreeGuiNumber() ; or in simple cases: n += 1 Subtract:=(Value * n) ; <<<<<<<<<< it's an expression, removed the %-signs ... Do you only want to show some colors? Thank you, but no. It needs to scale the selected color to look more like this: R.png But what I'm getting ATM is...

Go to advanced search