Search found 54 matches

by MedBooster
15 Mar 2024, 03:28
Forum: Scripts and Functions (v1)
Topic: GUI for searching selected text or last copied text
Replies: 2
Views: 575

Re: GUI for searching selected text or last copied text

https://www.autohotkey.com/boards/viewtopic.php?f=6&t=122691&p=563219#p563219 sadly regedit does not prompt the "how do you want to open" window anymore ... RegRead, browserPath, HKLM, SOFTWARE\Classes\http\shell\open\command RegWrite, REG_SZ, HKCU, Software\Microsoft\Windows\Shell\Associations\UrlA...
by MedBooster
15 Mar 2024, 03:26
Forum: Scripts and Functions (v1)
Topic: V1 change default browser
Replies: 3
Views: 522

Re: V1 change default browser

Alright this will have to do... but this just opens the default section in the Windows settings at there you can not use keyboard shortcuts to choose the browser it seems edit: no you can use tab/shift+tab and Enter to navigate and then Alt+F4 to close the settings window. https://www.autohotkey.com...
by MedBooster
14 Mar 2024, 08:06
Forum: Scripts and Functions (v1)
Topic: V1 change default browser
Replies: 3
Views: 522

Re: V1 change default browser

This is sad, with Windows 10 updated, it seems this does not work anymore.... It was a great way to change the default browser quickly. Now I am not able to provoke the opening of the "how do you want to open this" window anymore :(
by MedBooster
14 Mar 2024, 07:59
Forum: Scripts and Functions (v2)
Topic: Centre Gui in middle of current monitor
Replies: 2
Views: 1047

Re: Centre Gui in middle of current monitor

This is working for me in V1, but I have to put the 2nd part separately above the first. See this post for an example of a script with the GUI centre function. https://www.autohotkey.com/boards/viewtopic.php?f=6&t=122359 1st part ;reference https://www.autohotkey.com/boards/viewtopic.php?t=31716 Get...
by MedBooster
03 Dec 2023, 09:59
Forum: Ask for Help (v1)
Topic: Hide/show taskbar in Windows 10
Replies: 32
Views: 18894

Re: Hide/show taskbar in Windows 10

I've been trying to use struckrects3 in the registry. You can see it described in the website I linked to. ' ;move taskbar to top ;this does not work yet ;reference https://www.tomshardware.com/how-to/windows-11-taskbar-move-to-top ^+#Space:: ; Set the registry key path RegPath := "HKEY_CURRENT_USER...
by MedBooster
03 Dec 2023, 09:40
Forum: Ask for Help (v1)
Topic: Hide/show taskbar in Windows 10
Replies: 32
Views: 18894

Re: Hide/show taskbar in Windows 10

Would there be a way to modify this to even keep the taskbar on top when in full screen mode in different programs?
by MedBooster
03 Dec 2023, 09:38
Forum: Ask for Help (v1)
Topic: How to always show taskbar in full screen if the certain window is active?
Replies: 4
Views: 466

Re: How to always show taskbar in full screen if the certain window is active?

I was also looking for a way to always keep the taskbar on top, and toggling it on and off, despite being in full screen mode. This way I could still use my taskbar on a 16:10 ratio Laptop, while using a program in full screen mode.
by MedBooster
03 Dec 2023, 09:29
Forum: Ask for Help (v1)
Topic: Taskbar always on top or window always on bottom
Replies: 2
Views: 386

Re: Taskbar always on top or window always on bottom

Did you find any solution to this?
by MedBooster
20 Nov 2023, 06:32
Forum: Scripts and Functions (v1)
Topic: GUI for searching selected text or last copied text
Replies: 2
Views: 575

Re: GUI for searching selected text or last copied text

This new version centers the GUI to the display in which the cursor currently is positioned. You can also press Escape to close the window. There is also a toggle to keep the window open. ;GUI search pro 2 by MedBooster ;reference https://www.autohotkey.com/boards/viewtopic.php?f=6&t=122359&p=543307...
by MedBooster
08 Nov 2023, 09:23
Forum: Scripts and Functions (v1)
Topic: Scroll over TITLEBAR (not taskbar) to move Window between displays
Replies: 2
Views: 434

Re: Scroll over TITLEBAR (not taskbar) to move Window between displays

However, an issue is that !MouseIsOver("ahk_class Shell_TrayWnd") only excludes the taskbar of the primary display
by MedBooster
06 Nov 2023, 09:05
Forum: Ask for Help (v2)
Topic: Closing a GUI with Escape key Topic is solved
Replies: 9
Views: 1524

Re: Closing a GUI with Escape key Topic is solved

I need Gui, Destroy because I might want to open the GUI again This is a v2 thread, and Gui, Destroy is v1 syntax, which is what your other posts also indicate you are using. Please ask questions regarding v1 in the v1 section. Almost nothing posted in this thread applies to v1. Hello everyone of c...
by MedBooster
06 Nov 2023, 03:33
Forum: Ask for Help (v2)
Topic: Closing a GUI with Escape key Topic is solved
Replies: 9
Views: 1524

Re: Closing a GUI with Escape key Topic is solved

Thanks for that. ExitApp was a bit drastic for my always running script but urgui.Destroy() instead of ExitApp() worked a treat. Could you please paste the whole line? I tried doing this myself, I need Gui, Destroy because I might want to open the GUI again ExitApp would make me have to open the sc...
by MedBooster
06 Nov 2023, 03:25
Forum: Scripts and Functions (v1)
Topic: Show GUI at center of the current screen - multiple monitors
Replies: 4
Views: 4028

Re: Show GUI at center of the current screen - multiple monitors

I was aaalmost able to make your script work, but for some reason it closes the GUI right away... but it does open correctly in multiple displays also on top of each other edit: of course the trick was just to add a return, I edited it into the script now. #NoEnv #Warn SendMode Input SetWorkingDir %...
by MedBooster
06 Nov 2023, 03:10
Forum: Scripts and Functions (v2)
Topic: Centre Gui in middle of current monitor
Replies: 2
Views: 1047

Re: Centre Gui in middle of current monitor

Thank you for the script. It would have helped a lot if you showed what to write in the "Gui, Show" part of the script I like that yours use the current monitor the *cursor* is in, as opposed to the monitor the active window is in Could you maybe link to the V1 version of this script? as I am gettin...
by MedBooster
05 Nov 2023, 11:45
Forum: Scripts and Functions (v1)
Topic: Scroll over TITLEBAR (not taskbar) to move Window between displays
Replies: 2
Views: 434

Re: Scroll over TITLEBAR (not taskbar) to move Window between displays

This shows how you can combine it with something which only works for hovering over the taskbar (no exception for the titlebar needed) ;reference https://www.autohotkey.com/boards/viewtopic.php?t=31119 ;https://www.autohotkey.com/boards/viewtopic.php?p=435006#p435006 ;reference for overTitleBar ;htt...
by MedBooster
05 Nov 2023, 11:02
Forum: Scripts and Functions (v1)
Topic: Scroll over TITLEBAR (not taskbar) to move Window between displays
Replies: 2
Views: 434

Scroll over TITLEBAR (not taskbar) to move Window between displays

Scroll over TITLEBAR (not taskbar) to move Window between displays ;reference https://www.autohotkey.com/boards/viewtopic.php?t=31119 ;https://www.autohotkey.com/boards/viewtopic.php?p=435006#p435006 ;reference for overTitleBar ;https://www.autohotkey.com/boards/viewtopic.php?t=31119 ;move window wi...
by MedBooster
03 Nov 2023, 13:21
Forum: Ask for Help (v1)
Topic: V1 change DPI scale for selected multiple displays GUI
Replies: 4
Views: 430

Re: V1 change DPI scale for selected multiple displays GUI

Now this works pretty well: Some improvements including showing the current DPI value unfortunately Lenovo have implemented some auto-changing DPI which means the DPI will always be set to the same even if you try changing the DPI of just one of the two monitors of the laptop Edit: until you rename ...
by MedBooster
03 Nov 2023, 07:53
Forum: Ask for Help (v1)
Topic: Can I detect mouse over window title?
Replies: 7
Views: 4048

Re: Can I detect mouse over window title?

This excludes the taskbar from activating the script #If !MouseIsOver("ahk_class Shell_TrayWnd") && overTitleBar() !MouseIsOver("ahk_class Shell_TrayWnd") basically means if the mouse is NOT over the taskbar ;reference https://www.autohotkey.com/boards/viewtopic.php?t=31119 ;https://www.autohotkey.c...
by MedBooster
31 Oct 2023, 07:01
Forum: Ask for Help (v1)
Topic: Can I detect mouse over window title?
Replies: 7
Views: 4048

Re: Can I detect mouse over window title?

Gui, Drag:New, +AlwaysOnTop +LastFound +ToolWindow, Dragging Gui, Font, s20 Gui, Color, FFFF9E Gui, Add, Text,, Release the hotkey when done dragging WinSet, Transparent, 200 #If overTitleBar() F1:: ; Hold key to drag title bar of a non-maximized window Click, D Gui, Drag:Show, NoActivate SoundBeep...
by MedBooster
29 Oct 2023, 09:33
Forum: Scripts and Functions (v1)
Topic: V1 change default browser
Replies: 3
Views: 522

Re: V1 change default browser

And I added it as a part of my GUI for searching copied or highlighted text So basically you get this pop-up after you click a button to search if you click the change default browser button first image.png #NoEnv #Warn SendMode Input SetWorkingDir %A_ScriptDir% ; Hotkey to activate the search engin...

Go to advanced search