Search found 15 matches
- 06 May 2020, 01:39
- Forum: AutoGUI
- Topic: AutoGUI 2.5
- Replies: 156
- Views: 63471
Re: AutoGUI 2.5
Thanks for your answer. I thought that the GUI can be imported like this. The interesting thing is that I see the GUI, but the code is absolutely incomplete (only the code of the tab is shown, all other code is missing). My GUI consists of a tab control and some group boxes. Also the editing of the ...
- 05 May 2020, 05:57
- Forum: AutoGUI
- Topic: AutoGUI 2.5
- Replies: 156
- Views: 63471
Re: AutoGUI 2.5
Hi, I have created a GUI, but it is not finished yet. I saved the script for it. My problem now is that I cannot edit the GUI anymore. Any ideas how to make the old GUI accessible again?
- 30 Apr 2020, 09:26
- Forum: Ask For Help
- Topic: Minimize all windows and maximize again Topic is solved
- Replies: 6
- Views: 436
Re: Minimize all windows and maximize again Topic is solved
OK, thanks for confirming that the script of mine works. That's good! You can already see from line "WinWaitActive, %active_title%, , 3" that I was a bit "desperate" why the script didn't work, so I added this line as a brute force method :D But a little question: Why did the same script only work f...
- 29 Apr 2020, 07:48
- Forum: Ask For Help
- Topic: Minimize all windows and maximize again Topic is solved
- Replies: 6
- Views: 436
Re: Minimize all windows and maximize again Topic is solved
Lets say I want to restore my old windows but keep the last activated window in the foreground, I tried it with this here, but it seems not to work propper, since it does not bring the last active window back in the focus. Has anyone an idea? ; Restore All Windows #c:: WinGet, WindowList, List,,, Pr...
- 24 Apr 2020, 09:10
- Forum: Ask For Help
- Topic: Minimize all windows and maximize again Topic is solved
- Replies: 6
- Views: 436
Re: Minimize all windows and maximize again Topic is solved
Thanks (Danke sehr) this works well! I also edited it with WinRestore 

- 24 Apr 2020, 05:57
- Forum: Ask For Help
- Topic: Minimize all windows and maximize again Topic is solved
- Replies: 6
- Views: 436
Minimize all windows and maximize again Topic is solved
Hi, i have some code to minimize all windows on my desktop I am also able to maximize the previously minimized windows again. But here something happens which is not intended. With multiple monitors this leads to my taskbar now extending over the whole screen... Is there a remedy for this? ; Minimiz...
- 24 Apr 2020, 04:44
- Forum: Ask For Help
- Topic: Save window size and move maximized windows as well Topic is solved
- Replies: 5
- Views: 445
Re: Save window size and move maximized windows as well Topic is solved
boiler big thanks to you! Your suggested code was something that came to my mind too and see it works! I have also improved the script a bit, for the case if one wants to resize a window which is in the backgrund (I make it active now). But one thing is not working as you suggested the "R" paramete...
- 22 Apr 2020, 11:22
- Forum: Ask For Help
- Topic: Save window size and move maximized windows as well Topic is solved
- Replies: 5
- Views: 445
Re: Save window size and move maximized windows as well Topic is solved
Thanks for your answer, so the last part was implemented like this and see it works! To the first part I have another question: I found the command to change the window: #q:: MouseClickDrag, left, 0, 200, 2, 2 My problem is that I don't quite know how to implement it in my process. The process for r...
- 22 Apr 2020, 10:06
- Forum: Ask For Help
- Topic: Transparency effect for windows leads to lagging Topic is solved
- Replies: 2
- Views: 203
Re: Transparency effect for windows leads to lagging Topic is solved
I was able to fix the issue with the lagging windows, i replaced:
with:
PS: @swagfag so you had no problems with my code? So it worked for you well?
Code: Select all
WinGet, win, list
Code: Select all
WinGet, win, list,,,Program Manager
- 22 Apr 2020, 03:42
- Forum: Ask For Help
- Topic: Save window size and move maximized windows as well Topic is solved
- Replies: 5
- Views: 445
Save window size and move maximized windows as well Topic is solved
Hello, I have found a script on the AHK website that I find very interesting. This script enables the Alt Drag functionality known from KDE Linux. This is very handy for my everyday life. Now I have two questions: 1.) I noticed that when I use the script to resize a window and close this resized win...
- 21 Apr 2020, 08:41
- Forum: Ask For Help
- Topic: Transparency effect for windows leads to lagging Topic is solved
- Replies: 2
- Views: 203
Transparency effect for windows leads to lagging Topic is solved
Hi everybody, i have written an AHK script that makes all windows transparent to me except the active window. The script works too, but there is an unwanted side effect. When i move the windows it comes to window lagging. Which reminds me a bit of the earlier Windows XP times. Maybe someone can see ...
- 20 Apr 2020, 10:41
- Forum: Ask For Help
- Topic: Set radio button via key Topic is solved
- Replies: 7
- Views: 642
Re: Set radio button via key Topic is solved
Thanks a lot, your code was very helpful. I created a own version, but short question is my radio button signature right so far? Gui, Add, Radio, x82 y439 w80 h20 vR1 gUseSetup1, Setup 1 RB1 Gui, Add, Radio, x242 y439 w80 h20 vR2 gUseSetup2, Setup 2 RB2 Gui, Show, x709 y187 h700 w530, Title Return U...
- 20 Apr 2020, 10:19
- Forum: Ask For Help
- Topic: Set radio button via key Topic is solved
- Replies: 7
- Views: 642
Re: Set radio button via key Topic is solved
Hi, thanks for your quick answer. The code in my gui looks like: Gui, Add, Radio, x82 y439 w80 h20 gUseSetup1, Setup 1 ;... ;... ;.. #w:: GuiControl,,, ; for setting Setup 1 radio button checked How has the section at #w:: to look like, if I want to set the radio button from above to checked? The Gu...
- 20 Apr 2020, 09:59
- Forum: Ask For Help
- Topic: Set radio button via key Topic is solved
- Replies: 7
- Views: 642
Set radio button via key Topic is solved
Hi, I have created a AHK gui with some radio buttons. My question is very simple but maybe difficult to solve. The question is, is it possible to set a radio button as checked if I pressed a key. For instance if I press Win + K I want that one specific radio button is now checked. Is this possible i...
- 19 Apr 2020, 10:53
- Forum: Ask For Help
- Topic: Multi Monitor Setup - finding out the display areas
- Replies: 1
- Views: 175
Multi Monitor Setup - finding out the display areas
I was playing around with AHK and I noticed something that confused me. My current PC setup consists of three screens. I have written a tool via AHK that positions the Windows windows depending on the cursor. For my implementation I used the following call: ;numberMonitors = 0 ;SysGet, numberMonitor...