Yea I'm on a laptop.
So you mean this has to be entered via powershell?
can't be set to be controlled by scroll wheel via AHK for example?
Search found 16 matches
- 17 Nov 2019, 19:30
- Forum: Ask For Help
- Topic: Brightness adjust via scroll wheel
- Replies: 5
- Views: 1312
- 15 Nov 2019, 02:22
- Forum: Ask For Help
- Topic: Brightness adjust via scroll wheel
- Replies: 5
- Views: 1312
Brightness adjust via scroll wheel
HI Guys, this is way beyond me. Back in Windows Xp, I found and used a script that could let me change brightness via Ctrl + Shift + Scroll wheel. Is there a script that can do this properly in Windows 10? Properly as in, not just reducing RGB color values, but actually changing the physical backlig...
- 11 Oct 2019, 19:39
- Forum: Scripts and Functions
- Topic: GetMouseGesture() - as simple as mouse gestures can get! [updated]
- Replies: 14
- Views: 5488
Re: GetMouseGesture() - as simple as mouse gestures can get! [updated]
Awsome work. but the rightclick still gets executed. how do you prevent that?
- 23 Sep 2019, 06:26
- Forum: Ask For Help
- Topic: How come some time ahk doesn't work
- Replies: 2
- Views: 347
Re: How come some time ahk doesn't work
Here's one that didn't work just then, until i click on the taskbar, then it worked. #d::Run, C:\Users\A\Dropbox i'm not sure if the above code IS the problem, since many many other scripts have the same issue. Can the following script be causing this problem? ~WheelUp::mouseWheelVolume("+4") ~Wheel...
- 22 Sep 2019, 21:54
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
Love this forums. That worked!
Although I wasn't able to get it working out side of chrome, is there any thing I need to activate?
Although I wasn't able to get it working out side of chrome, is there any thing I need to activate?
- 21 Sep 2019, 22:24
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
It's working, But the normal right click and drag is still broken by the script
e.g. mouse gestures where you right click, hold and drag. Or marquee select using right mouse button
e.g. mouse gestures where you right click, hold and drag. Or marquee select using right mouse button
- 21 Sep 2019, 22:16
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
useless comment removed by me
- 21 Sep 2019, 09:20
- Forum: Ask For Help
- Topic: How come some time ahk doesn't work
- Replies: 2
- Views: 347
How come some time ahk doesn't work
This applies to most scripts, it seems sometimes a script doesn't work. and I'd have to click the taskbar, then it works. Is it a focus thing?
- 21 Sep 2019, 02:24
- Forum: Ask For Help
- Topic: Can't seem to send Function key in my script.
- Replies: 2
- Views: 297
Re: Can't seem to send Function key in my script.
Thanks so much! The code is now: for anyone else who stumbles on this. setTitleMatchMode,2 $F1:: if(WinActive("ahk_exe SLDWORKS.exe")) Sendinput {f1} else SendInput ^+{tab} return $F2:: if(WinActive("ahk_exe SLDWORKS.exe") or WinActive("ahk_exe explorer.exe")) Sendinput {f2} else SendInput ^{tab} re...
- 21 Sep 2019, 00:44
- Forum: Ask For Help
- Topic: Can't seem to send Function key in my script.
- Replies: 2
- Views: 297
Can't seem to send Function key in my script.
setTitleMatchMode,2 F1:: if(WinActive("ahk_exe SLDWORKS.exe")) Send {f1} else SendInput ^+{tab} return F2:: if(WinActive("ahk_exe SLDWORKS.exe") or WinActive("ahk_exe explorer.exe")) Send {f2} else SendInput ^{tab} return If I don't used the {}, it seems to send the literal F1 and F2 properly
- 20 Sep 2019, 21:19
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
really appreciate the help. It's still having issues. F1::SendInput ^+{tab} F2::SendInput ^{tab} #if GetKeyState("RButton", "P") *pgup:: actionDone := true send, ^+`t return *pgdn:: actionDone := true send, ^`t return #if this is the current code. (My side buttons are pgup and pgdn btw). What's happ...
- 19 Sep 2019, 18:19
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
#if GetKeyState("RButton") *XButton1:: actionDone := true send, ^+`t return *XButton2:: actionDone := true send, ^`t return #if This one seemed to no longer work. RButton Up:: if( mouseMoved ) SendInput {Esc} return this one do I add it to the bottom of the original script? It seems to make the scr...
- 18 Sep 2019, 21:58
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
Thanks that works, but a new issue:
btw, My side buttons are mapped to pgup and pgdn.
Now,clicking right mouse + a side button still executes a right click as well. Some times it also executes a browser back as well?
btw, My side buttons are mapped to pgup and pgdn.
Now,clicking right mouse + a side button still executes a right click as well. Some times it also executes a browser back as well?
- 18 Sep 2019, 20:56
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
Thanks it works!
but 1 issue. When executing Right click and drag, it still ends up clicking the right mouse when letting go (rmb context menu comes up). Is there a way to get rid of that?
but 1 issue. When executing Right click and drag, it still ends up clicking the right mouse when letting go (rmb context menu comes up). Is there a way to get rid of that?
- 18 Sep 2019, 20:52
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Re: Right click and drag broken
totally missed the title. Added now.
LOL, this is hilarious, you fixed my issue in 1 second.! thanks man
LOL, this is hilarious, you fixed my issue in 1 second.! thanks man
- 18 Sep 2019, 18:38
- Forum: Ask For Help
- Topic: Right click and drag broken
- Replies: 14
- Views: 2007
Right click and drag broken
Hey guys, I am a noob. I've made a script to double the funtionality of my mouse side buttons. Hold Right Mouse Button and the side buttons becomes another key. My script works. but I can't click and hold rbutton and drag any more. (e.g. hold right click mouse gestures in chrome, hold right click to...