Search found 20 matches

by _Rapid_
11 Jul 2021, 03:03
Forum: Ask for Help (v1)
Topic: MouseClick Emulator Topic is solved
Replies: 8
Views: 952

Re: MouseClick Emulator Topic is solved

1. Yes, thats right!

2. Yes , this is the only open script running. I made this very short script to figure out, why and where the error comes from
by _Rapid_
10 Jul 2021, 15:07
Forum: Ask for Help (v1)
Topic: MouseClick Emulator Topic is solved
Replies: 8
Views: 952

Re: MouseClick Emulator Topic is solved

So that's weird... I have broken the script down to a minimal version, see here: F2:: Click Return The problem is, if I am on the desktop and test the script for a while, then everything is as it should be, i.e. the left click is emulated (double click via pressing F2 two times...), but after a cert...
by _Rapid_
10 Jul 2021, 10:18
Forum: Ask for Help (v1)
Topic: MouseClick Emulator Topic is solved
Replies: 8
Views: 952

Re: MouseClick Emulator Topic is solved

But there is another interesting thing, for example if one wants to emulate a double click of the left mouse button e.g. via:

Code: Select all

!Space::
Send, {Click 2}
Return
This will not open a folder on the desktop in some cases, why is this the case?
by _Rapid_
10 Jul 2021, 09:28
Forum: Ask for Help (v1)
Topic: MouseClick Emulator Topic is solved
Replies: 8
Views: 952

Re: MouseClick Emulator Topic is solved

@mikeyww This is a nice solution! With KeyWait you saved a lot of space (and maybe to complex statements). Thank you!
by _Rapid_
10 Jul 2021, 07:43
Forum: Ask for Help (v1)
Topic: MouseClick Emulator Topic is solved
Replies: 8
Views: 952

MouseClick Emulator Topic is solved

Hello all, I have written a script that can emulate the left and right mouse buttons. However, the problem is that once this program is applied in an application like Chrome/Firefox, it opens new tabs instead of opening a link in the same tab. What I want to do is: 1.) When Ctrl and Space are presse...
by _Rapid_
06 May 2020, 01:39
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 111415

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 ...
by _Rapid_
05 May 2020, 05:57
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 111415

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?
by _Rapid_
30 Apr 2020, 09:26
Forum: Ask for Help (v1)
Topic: Minimize all windows and maximize again Topic is solved
Replies: 8
Views: 2240

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...
by _Rapid_
29 Apr 2020, 07:48
Forum: Ask for Help (v1)
Topic: Minimize all windows and maximize again Topic is solved
Replies: 8
Views: 2240

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...
by _Rapid_
24 Apr 2020, 09:10
Forum: Ask for Help (v1)
Topic: Minimize all windows and maximize again Topic is solved
Replies: 8
Views: 2240

Re: Minimize all windows and maximize again Topic is solved

Thanks (Danke sehr) this works well! I also edited it with WinRestore :)
by _Rapid_
24 Apr 2020, 05:57
Forum: Ask for Help (v1)
Topic: Minimize all windows and maximize again Topic is solved
Replies: 8
Views: 2240

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...
by _Rapid_
24 Apr 2020, 04:44
Forum: Ask for Help (v1)
Topic: Save window size and move maximized windows as well Topic is solved
Replies: 5
Views: 1890

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...
by _Rapid_
22 Apr 2020, 11:22
Forum: Ask for Help (v1)
Topic: Save window size and move maximized windows as well Topic is solved
Replies: 5
Views: 1890

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...
by _Rapid_
22 Apr 2020, 10:06
Forum: Ask for Help (v1)
Topic: Transparency effect for windows leads to lagging Topic is solved
Replies: 2
Views: 299

Re: Transparency effect for windows leads to lagging Topic is solved

I was able to fix the issue with the lagging windows, i replaced:

Code: Select all

WinGet, win, list
with:

Code: Select all

WinGet, win, list,,,Program Manager
PS: @swagfag so you had no problems with my code? So it worked for you well?
by _Rapid_
22 Apr 2020, 03:42
Forum: Ask for Help (v1)
Topic: Save window size and move maximized windows as well Topic is solved
Replies: 5
Views: 1890

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...
by _Rapid_
21 Apr 2020, 08:41
Forum: Ask for Help (v1)
Topic: Transparency effect for windows leads to lagging Topic is solved
Replies: 2
Views: 299

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 ...
by _Rapid_
20 Apr 2020, 10:41
Forum: Ask for Help (v1)
Topic: Set radio button via key Topic is solved
Replies: 7
Views: 3697

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...
by _Rapid_
20 Apr 2020, 10:19
Forum: Ask for Help (v1)
Topic: Set radio button via key Topic is solved
Replies: 7
Views: 3697

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...
by _Rapid_
20 Apr 2020, 09:59
Forum: Ask for Help (v1)
Topic: Set radio button via key Topic is solved
Replies: 7
Views: 3697

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...
by _Rapid_
19 Apr 2020, 10:53
Forum: Ask for Help (v1)
Topic: Multi Monitor Setup - finding out the display areas
Replies: 2
Views: 1991

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...

Go to advanced search