Search found 148 matches

by Mulsiphix
09 Sep 2022, 09:37
Forum: Gaming Help (v1)
Topic: Change screen resolution when game is launched and switch back on exit
Replies: 15
Views: 6230

Re: Change screen resolution when game is launched and switch back on exit

I quickly skimmed your script and it looks good to me. So lets try ruling out Qres as a potential issue. Lets use the Windows Command Line and Qres to test your resolution changes. 1. Open a Windows Command Window (Win+R, type "cmd", press OK) 2. Type " qres /c:32 /r:0 /x 1360 /y 768 ". Resolution s...
by Mulsiphix
17 Aug 2022, 09:06
Forum: Ask for Help (v1)
Topic: Help Starting A Script At System Boot Using RegEdit
Replies: 2
Views: 475

Re: Help Starting A Script At System Boot Using RegEdit

Thank you for responding mikeyww . There must be something else happening on my end, because it still doesn't work. I copied the AHK startup Registry entry directly into a Windows Command window. It launches the script perfectly, so I know the pathnames are correct. But for whatever reason, it does ...
by Mulsiphix
15 Aug 2022, 12:16
Forum: Ask for Help (v1)
Topic: Help Starting A Script At System Boot Using RegEdit
Replies: 2
Views: 475

Help Starting A Script At System Boot Using RegEdit

Is it possible to start an AHK script using an entry in the Windows 10 Registry? I have no problem starting compiled scripts that are EXE files, but AHK files will not start. RegEdit Location [Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] String Value "location of ahk fi...
by Mulsiphix
11 May 2022, 07:43
Forum: Ask for Help (v1)
Topic: Can I Send Lots Of Text In An Easier Fashion Topic is solved
Replies: 12
Views: 4963

Re: Can I Send Lots Of Text In An Easier Fashion Topic is solved

My wife went into labor soon after I made my last reply in this post. I never went back to finish working this problem. I honestly couldn't tell you if the Lintalist approach works. Sorry Zubarm 😞
by Mulsiphix
27 Apr 2022, 23:08
Forum: Gaming Help (v1)
Topic: Change screen resolution when game is launched and switch back on exit
Replies: 15
Views: 6230

Re: Change screen resolution when game is launched and switch back on exit

Thanks for writing those scripts and helping me out by the way. You are most welcome :D It definitely seems like qres is not properly installed. Try downloading this version of QRes from MajorGeeks. It is just a single exe file, unlike the multi-file and folder sourceforge download. Place qres.exe ...
by Mulsiphix
27 Apr 2022, 16:59
Forum: Gaming Help (v1)
Topic: Change screen resolution when game is launched and switch back on exit
Replies: 15
Views: 6230

Re: Change screen resolution when game is launched and switch back on exit

It doesn't seem to be changing my pc resolution. I just manually changed it to see what it would like like at 800x600 and it was totally different than when I use the ahk to change my pc resolution before the game launches. You can use qres itself to check your current resolution. Simply open a CMD...
by Mulsiphix
27 Apr 2022, 11:50
Forum: Gaming Help (v1)
Topic: Change screen resolution when game is launched and switch back on exit
Replies: 15
Views: 6230

Re: Change screen resolution when game is launched and switch back on exit

I recommend using my script above and just changing the parameters you need. I tried to document everything you might need in the script comments. I do not mind updating the script for you. But I need some additional information. What is the exact path on your system to TeknoParrotUi.exe? I will nee...
by Mulsiphix
05 Apr 2022, 14:25
Forum: Ask for Help (v1)
Topic: Gui MaximizeBox and Minimize Box, Unexpected Behavior
Replies: 5
Views: 572

Re: Gui MaximizeBox and Minimize Box, Unexpected Behavior

That's very interesting! Must be a Windows thing. Gui, -Resize -MinimizeBox +MaximizeBox +LastFound also removes the minimize button and shows the maximize Yeah, you're probably right about it being a Windows thing. It is actually still there if you look closely. I took an image of it on my compute...
by Mulsiphix
05 Apr 2022, 13:45
Forum: Ask for Help (v1)
Topic: InputBox With Three Buttons?
Replies: 1
Views: 188

InputBox With Three Buttons?

Is there a three button version of the InputBox? I know I can build a GUI to achieve the same result, but InputBox is faster when I am short on time. Is there any way to squish a third button in there? :lol:
by Mulsiphix
05 Apr 2022, 13:42
Forum: Ask for Help (v1)
Topic: Gui MaximizeBox and Minimize Box, Unexpected Behavior
Replies: 5
Views: 572

Re: Gui MaximizeBox and Minimize Box, Unexpected Behavior

Note that the docs say that the respective buttons will be "disabled", not removed. Ah, I misinterpreted it :oops:. Any idea if they can be removed, like it occurs when you use the following line:   Gui, -Resize -MinimizeBox +LastFound ; Neither Minimize or Maximize boxes are present. Fully removed.
by Mulsiphix
05 Apr 2022, 13:23
Forum: Ask for Help (v1)
Topic: Gui MaximizeBox and Minimize Box, Unexpected Behavior
Replies: 5
Views: 572

Gui MaximizeBox and Minimize Box, Unexpected Behavior

I would like to keep the MinimizeBox and Close buttons for the window, but remove MaximizeBox. It doesn't seem to be working for me though. The Maximize Box is still present. This same behavior works if I apply it to only the MinimizeBox. Is it possible to show one but not the other? Gui, -Resize -M...
by Mulsiphix
04 Apr 2022, 11:09
Forum: Ask for Help (v1)
Topic: Question About DetectHiddenWindows Topic is solved
Replies: 9
Views: 922

Re: Question About DetectHiddenWindows Topic is solved

See how many windows are generated: DetectHiddenWindows, On ToolTip, % "Hello World" WinGet, hwnd, List, ahk_class tooltips_class32 Loop, %hwnd% { WinGetTitle, Title, % "ahk_id " hwnd%A_Index% msgbox % ">>" Title "<<" } All except one yield a ">><<" (an empty string). Another approach so you can se...
by Mulsiphix
29 Mar 2022, 19:17
Forum: Ask for Help (v1)
Topic: Question About DetectHiddenWindows Topic is solved
Replies: 9
Views: 922

Re: Question About DetectHiddenWindows Topic is solved

That is insane. I just ran your script and "Hello World" appeared on the 8th window. I clicked through 115 MsgBox's total. Thank you very much for your fix. And the education :bravo:
by Mulsiphix
29 Mar 2022, 18:34
Forum: Ask for Help (v1)
Topic: Question About DetectHiddenWindows Topic is solved
Replies: 9
Views: 922

Re: Question About DetectHiddenWindows Topic is solved

Interesting. How was it you were able to figure out the Tooltip was launching a bunch of windows? The script works wonderfully! Thank you so much :bravo:
by Mulsiphix
29 Mar 2022, 14:34
Forum: Ask for Help (v1)
Topic: Question About DetectHiddenWindows Topic is solved
Replies: 9
Views: 922

Re: Question About DetectHiddenWindows Topic is solved

Thank you @Russ. Can you explain specifically how DetectHiddenWindows interacts with the code in the original post? I would like to better understand how it breaks down and why.
by Mulsiphix
29 Mar 2022, 14:01
Forum: Ask for Help (v1)
Topic: Question About DetectHiddenWindows Topic is solved
Replies: 9
Views: 922

Question About DetectHiddenWindows Topic is solved

I found this code for centering ToolTips on the forum. Why is it that the code fails when DetectHiddenWindows, On is set? I read the documentation for DetectHiddenWindows , but still do not understand exactly how this command breaks the centering code. Centers Properly ToolTip, % "SampleTextSampleTe...
by Mulsiphix
26 Mar 2022, 13:37
Forum: Ask for Help (v1)
Topic: Trouble Reading LMRE History Topic is solved
Replies: 2
Views: 458

Re: Trouble Reading LMRE History Topic is solved

This is really nice. Your use of ListLines within each new function taught me a great deal about how ListLines works within functions. This is extremely helpful. Thank you very much! :D
by Mulsiphix
20 Mar 2022, 19:37
Forum: Ask for Help (v1)
Topic: Detect Variable Name Of GUI Control? Topic is solved
Replies: 2
Views: 596

Re: Detect Variable Name Of GUI Control? Topic is solved

Thank you for showing me how to do this mikeyww! You are amazing :clap:
by Mulsiphix
20 Mar 2022, 06:58
Forum: Ask for Help (v1)
Topic: Detect Variable Name Of GUI Control? Topic is solved
Replies: 2
Views: 596

Detect Variable Name Of GUI Control? Topic is solved

I would like to put my mouse over a GUI control, activate a hotkey, and have a MsgBox tell me what the variable name for that control is. I thought A_GuiControl held that information, but upon further reading, I'm not sure it works that way because the mouse hovering over a control doesn't make it t...

Go to advanced search