Search found 14 matches

by a0l0e0x000
17 Nov 2022, 17:54
Forum: Scripts and Functions (v1)
Topic: Adding functionality to known taskbar-volume-scrolling script
Replies: 0
Views: 375

Adding functionality to known taskbar-volume-scrolling script

Seen the cool script in AHK documentation that allows you to scroll on taskbar to change volume? Here it is: #If MouseIsOver("ahk_class Shell_TrayWnd") WheelUp::Send {Volume_Up} WheelDown::Send {Volume_Down} MouseIsOver(WinTitle) { MouseGetPos,,, Win return WinExist(WinTitle . " ahk_id " . Win) } N...
by a0l0e0x000
13 Jan 2022, 11:30
Forum: Scripts and Functions (v1)
Topic: Systemwide Scroll by panning
Replies: 1
Views: 588

Systemwide Scroll by panning

Want to scroll by panning in any of the 4 directions, EVEN SIDEWAYS , as if you were operating a touchscreen? It's simple, it's ugly, but it works . 1. Change both F22 in the code to your desired hotkey (i recommend using a macro button on your mouse) 2. Hold down the key and move mouse to scroll u...
by a0l0e0x000
11 Oct 2021, 15:30
Forum: Scripts and Functions (v1)
Topic: Reduce brightness when inactive to save battery
Replies: 0
Views: 473

Reduce brightness when inactive to save battery

Want to prolong your battery life when taking notes with a pen/keyboard on a tablet/laptop? Use this script to automatically dimm your display to a specified brightness when you are inactive, and increase brightness again as soon as you start using your pen. You can set the dimming timer, specify b...
by a0l0e0x000
18 Aug 2021, 13:54
Forum: Scripts and Functions (v1)
Topic: Search selected text in google (script)
Replies: 10
Views: 5397

Search selected text in google (script)

Script will search selected text in your default browser using google search. If you selected an "https://" link it will send you directly to the site rather than searching the link in google. ^Numpad1:: ; change to preferred hotkey clip := clipboard send, ^c url := "https://www.google.com/search?q=...
by a0l0e0x000
23 May 2021, 09:09
Forum: Scripts and Functions (v1)
Topic: Print current date and time in different formats depending on how many times the same hotkey is pressed
Replies: 0
Views: 524

Print current date and time in different formats depending on how many times the same hotkey is pressed

Press once you get: 23. 5. 2021 Press twice you get: 23/5/2021 Press 3 times you get: 16:06:28 23/5/2021 Script resets after 5 seconds. Feel free to change or add time formats as well as change the F15 hotkey ( CHANGE ALL "F15" IN THE SCRIPT FOR IT TO WORK ) ;) F15:: SendMode Input Hotkey, F15, , T3...
by a0l0e0x000
16 Feb 2021, 09:37
Forum: Scripts and Functions (v1)
Topic: Custom volume control with custom GUI
Replies: 2
Views: 595

Re: Custom volume control with custom GUI

Fixed: no error message if you press both buttons at the same time ^NumpadMult:: soundset, -4 #singleinstance, force CustomColor := "000000" ; Can be any RGB color (it will be made transparent below). Gui +LastFound +AlwaysOnTop -Caption +ToolWindow ; +ToolWindow avoids a taskbar button and an alt-t...
by a0l0e0x000
14 Feb 2021, 09:58
Forum: Scripts and Functions (v1)
Topic: Set any YouTube playback speed (script)
Replies: 5
Views: 1475

Re: Set any YouTube playback speed (script)

Interesting, would make sense that it's a youtube issue. I'll give the other code a try, thanks! On second thought it may also be your GPU. YouTube is not optimized for this so if you set the speed at 10x your GPU is going to be drawing 10-times the frames, so if you don't have a capable one it wil...
by a0l0e0x000
09 Feb 2021, 13:23
Forum: Scripts and Functions (v1)
Topic: Fast Scrolling Script (alternative to Logitech infinite scroll wheel)
Replies: 0
Views: 1534

Fast Scrolling Script (alternative to Logitech infinite scroll wheel)

When holding Right mouse button scrolling with the scroll wheel will be accelerated. If you press the Right mouse button and scroll, right-click will not register, hence no unwanted menu will open. If you don't scroll, right-click will work. RButton:: FastScroll := 0 hotkey, Wheelup , HK1, on hotkey...
by a0l0e0x000
04 Feb 2021, 08:51
Forum: Scripts and Functions (v1)
Topic: Right-click + scroll to adjust system sound volume
Replies: 0
Views: 358

Right-click + scroll to adjust system sound volume

Scrolling while you hold right-click will let you adjust system sound volume quickly and easily. Simple script, but I only tested it for a bit, so I hope it works well. You can adjust the increments by changing the numbers (+2 and -2) in the script. ~RButton:: hotkey, WheelUp, Volup, on hotkey, Whee...
by a0l0e0x000
02 Feb 2021, 17:45
Forum: Scripts and Functions (v1)
Topic: Custom volume control with custom GUI
Replies: 2
Views: 595

Custom volume control with custom GUI

I like to adjust volume with my mouse's programmable buttons and have been getting annoyed by a) "send, {volume_up}" because it displays Windows's annoying overlay in the top left b) "SoundSet, +4" because it doesn't indicate to me how loud the sound is at all So I took the Gui example #6 form ahk's...
by a0l0e0x000
26 Jan 2021, 17:03
Forum: Scripts and Functions (v1)
Topic: Set any YouTube playback speed (script)
Replies: 5
Views: 1475

Re: Set any YouTube playback speed (script)

Have you noticed that the audio and video become desynced when you change the speed up and then to a slower speed? Oh and whatever causes the desyncing is a browser or YouTube issue, as all the script does is to use the browser's built it Dev console to send a command. And all that command does is ...
by a0l0e0x000
26 Jan 2021, 16:45
Forum: Scripts and Functions (v1)
Topic: Set any YouTube playback speed (script)
Replies: 5
Views: 1475

Re: Set any YouTube playback speed (script)

Have you noticed that the audio and video become desynced when you change the speed up and then to a slower speed? Interesting, no, I have never had that happen and I use the script a lot. BTW here is an updated version which fixes a problem with autocomplete ruining the code, however it has it's o...
by a0l0e0x000
14 Jan 2021, 16:54
Forum: Scripts and Functions (v1)
Topic: Set any YouTube playback speed (script)
Replies: 5
Views: 1475

Set any YouTube playback speed (script)

Youtube only allows you to set speeds from 0.25x to 2x and in 0.25x steps. However this script will let you set YouTube playback speed to anything from 0.1x to 16x easily (remap "^F12" to any hotkey you desire) 1. Script will open your browser console (Works at least in Chrome) and type in a command...
by a0l0e0x000
26 Dec 2020, 08:47
Forum: Scripts and Functions (v1)
Topic: Simple auto-enumerate-rename files script
Replies: 0
Views: 309

Simple auto-enumerate-rename files script

My first script, with very simple commands. Open to suggestions :) Hotkey: The script is assigned to Ctrl+shift+alt+F12, but can easily be remapped by editing the code. (You need to edit the code in all 3 places!) How To Use: It will rename files in order, adding "n " at the beginning of the file na...

Go to advanced search