Search found 2109 matches

by Hellbent
25 Oct 2023, 10:37
Forum: Ask for Help (v1)
Topic: GUI window enable/disable Resize Option and Top Bar
Replies: 16
Views: 1827

Re: GUI window enable/disable Resize Option and Top Bar

THE PROBLEM is the following: When toggle F4 and F5 the GUI window increases its window size and decreases it (F4 --> increases GUI window size, and F5 -->decreases GUI window size) BUT i do not want this INCREASE and DECREASE of GUI window size. Is there a way to avoid this, please? Yes. Use your ...
by Hellbent
25 Oct 2023, 01:21
Forum: Ask for Help (v1)
Topic: GUI window enable/disable Resize Option and Top Bar
Replies: 16
Views: 1827

Re: GUI window enable/disable Resize Option and Top Bar

Here is another example that uses a custom gui class for scaling. https://www.autohotkey.com/boards/viewtopic.php?f=76&t=122044&p=543571#p543571 . custom resize 2.gif . #SingleInstance, Force SetBatchLines, -1 MyText = ( F2 -> Removes the Menu bar of the GUI F3 -> Bring back the Menu bar of the GUI ...
by Hellbent
24 Oct 2023, 23:45
Forum: Ask for Help (v1)
Topic: GUI window enable/disable Resize Option and Top Bar
Replies: 16
Views: 1827

Re: GUI window enable/disable Resize Option and Top Bar

Here is an example. . custom resize 1.gif . #SingleInstance, Force SetBatchLines, -1 ;-------------- Gui1 := {} ;-------------- Gui, New , +AlwaysOnTop +hwndhwnd Gui1.Hwnd := hwnd ;-------------- Gui, Margin, 10 , 10 ;-------------- Gui, Add, Button, w120 r1 , Demo control 1 Gui, Add, Edit, x+10 , D...
by Hellbent
24 Oct 2023, 09:59
Forum: Ask for Help (v1)
Topic: GUI window enable/disable Resize Option and Top Bar
Replies: 16
Views: 1827

Re: GUI window enable/disable Resize Option and Top Bar

Please, i will appreciate any help on this topic, please? Use your own resize routine and logic instead of using the +Resize option. i.e. Pick a spot on your gui that triggers resizing. You can use a rectangle ( point in rect. ) or a circle ( distance from point ). You can also set it up for edge d...
by Hellbent
17 Oct 2023, 12:03
Forum: Ask for Help (v1)
Topic: Resize GUI with ALL its contents
Replies: 4
Views: 585

Re: Resize GUI with ALL its contents

Here is a Gui class that has scaling. . Gui Scale class 1.gif . This works with the normal set of gui controls. If you use controls such as ListViews, etc. you will have to do scaling for those controls separately. ( OriginalSize -> OriginalSize * Scale ) Here is the class. Just paste it at the bott...
by Hellbent
12 Oct 2023, 10:25
Forum: Ask for Help (v1)
Topic: (Solved)Making any program(window) click-through
Replies: 14
Views: 8412

Re: (Solved)Making any program(window) click-through

Yeah I tried the gdip thing a little bit. Kind of got it working but was still getting some flickering issue. I’ll try again when I get some more time. I’m sure I just had something wrong. Just need to put some more time into learning gdip and aside of this little hover issue progress bars are work...
by Hellbent
11 Oct 2023, 18:18
Forum: Ask for Help (v1)
Topic: (Solved)Making any program(window) click-through
Replies: 14
Views: 8412

Re: (Solved)Making any program(window) click-through

There is no need to use two guis to create that effect. Add your buttons and then add your picture control last with this option +0x4000000 WS_CLIPSIBLINGS Here is an example. You don't need to change all your code to be exactly like mine, just see how it works and make a few changes to your script....
by Hellbent
11 Oct 2023, 05:43
Forum: Scripts and Functions (v1)
Topic: Resizable Tab Menu / POS Overlay
Replies: 28
Views: 5672

Re: Resizable Tab Menu / POS Overlay

Text color something changes random when clicking I'm not sure what is going on there. My first guess is that it is a issue with the version of GDIP you are using. https://www.autohotkey.com/boards/viewtopic.php?t=6517 If you have "GDIP.ahk" try "GDIP_ALL.ahk" One more thing. If you edit this line:...
by Hellbent
11 Oct 2023, 04:22
Forum: Ask for Help (v1)
Topic: (Solved)Making any program(window) click-through
Replies: 14
Views: 8412

Re: (Solved)Making any program(window) click-through

Likely a "active window" issue.
If you set "+0x20" to the active window it's still the active window until it's not.

***Edit***
Confirmed.
by Hellbent
11 Oct 2023, 03:27
Forum: Ask for Help (v1)
Topic: Detect overlapping circles
Replies: 25
Views: 2381

Re: Detect overlapping circles

Wow! Thanks for taking the time to post your brilliant looking class and the Youtube link. I've started looking at the videos - really good. I want to be able to work this out and you've given me a great start. Another video. The end of the video discusses some optimizations for collision detection...
by Hellbent
11 Oct 2023, 01:50
Forum: Ask for Help (v1)
Topic: Displaying a transparent png
Replies: 7
Views: 1693

Re: Displaying a transparent png

The png I use has a half transparent black background with black text Use gdip and a layered window. . black on black.gif . ;**************************************************************************************************************************************************************************** #...
by Hellbent
10 Oct 2023, 02:08
Forum: Ask for Help (v1)
Topic: Detect overlapping circles
Replies: 25
Views: 2381

Re: Detect overlapping circles

Hellbent - I totally missed replying to this at the time - my apologies. I've been restudying this topic and your examples have been a big help. I'm now trying to use moving circles and have one bounce off the other. Thanks again. I don't have time atm to create any examples but you might find my v...
by Hellbent
04 Oct 2023, 15:23
Forum: Ask for Help (v1)
Topic: Resize GUI with ALL its contents
Replies: 4
Views: 585

Re: Resize GUI with ALL its contents

There is no "easy solution" because "resize" is a blanket term. Some examples. . https://www.autohotkey.com/boards/download/file.php?id=15096 . https://www.autohotkey.com/boards/viewtopic.php?t=95178#p423175 . https://www.autohotkey.com/boards/download/file.php?id=15097 . https://www.autohotkey.com/...
by Hellbent
04 Oct 2023, 01:09
Forum: Ask for Help (v1)
Topic: Calculating the ( Angles / Points ) // DRAW ARROW Topic is solved
Replies: 18
Views: 4153

Re: Calculating the ( Angles / Points ) // DRAW ARROW Topic is solved

Point of focus . Requires GDIP: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=6517 F1 Hotkey: . Arrow focus.gif . F2 Hotkey: . circle focus.gif . Simple Rotation F3 Hotkey: . arrow rotation.gif . ;**********************************************************************************************...
by Hellbent
14 Sep 2023, 00:44
Forum: Ask for Help (v1)
Topic: Listview collapsable groups with checkboxes?
Replies: 16
Views: 1857

Re: Listview collapsable groups with checkboxes?

And at some point functionality will need to be added, of course. This functionality can be added manually as you have done with the custom column drag event. But now it makes me wonder... is it possible to create a brand new custom "control" object and register that "control" with WinOS, so that f...
by Hellbent
12 Sep 2023, 01:50
Forum: Ask for Help (v1)
Topic: Listview collapsable groups with checkboxes?
Replies: 16
Views: 1857

Re: Listview collapsable groups with checkboxes?

Based on what I see in your code so far, this is not the approach that you chose. You have used a couple classes, and some "generic" objects for row data etc. I am interested in your opinion regarding the approach mentioned above. Do you feel (based on your experience with other projects) that it w...
by Hellbent
11 Sep 2023, 05:44
Forum: Ask for Help (v1)
Topic: Listview collapsable groups with checkboxes?
Replies: 16
Views: 1857

Re: Listview collapsable groups with checkboxes?

I added the graphical side of the checkboxes to the prototype listview control. . listvew 1.gif . ;**************************************************************************************************************************************************************************** #Include <My Altered GDIP li...
by Hellbent
10 Sep 2023, 22:32
Forum: Ask for Help (v1)
Topic: Listview collapsable groups with checkboxes?
Replies: 16
Views: 1857

Re: Listview collapsable groups with checkboxes?

Ok... I'm blown away... you have taken the concept of Listview to a whole new level! Let me rephrase my previous statement... you have not become a master... but a Grand Master! Thank you for your kind words. You designed this in a single day? It takes me longer just to write the .ahk file name! ;)...
by Hellbent
10 Sep 2023, 08:31
Forum: Ask for Help (v1)
Topic: Sending and receiving a broadcast message. Topic is solved
Replies: 2
Views: 490

Sending and receiving a broadcast message. Topic is solved

I have a color picker that I would like to use to broadcast a value to any script that is listening. For extra context. . 20230910092312.png . Does anyone have a good method to accomplish this? I think that there is a message that can be used but I can't recall what it was. A simple example of scrip...
by Hellbent
10 Sep 2023, 03:09
Forum: Ask for Help (v1)
Topic: Listview collapsable groups with checkboxes?
Replies: 16
Views: 1857

Re: Listview collapsable groups with checkboxes?

I added a panel class to my earlier prototype. The way it works is that each row ( rows can have children which are also rows visually ) is an instance of a panel and the panels contain a number of features. You create a panel by giving it an array with the different section values and if the curren...

Go to advanced search