Search found 1104 matches
- Yesterday, 03:47
- Forum: Ask For Help
- Topic: Correct Size and Operation Question.
- Replies: 1
- Views: 54
Correct Size and Operation Question.
I am a few days in to working on a new version of a graphics drawing program I made about 2 years ago. https://www.autohotkey.com/boards/viewtopic.php?f=6&t=62550 I am currently doing work on creating the main interface and have made it build out the layout of the window based on YOUR screen size. P...
- 20 Jan 2021, 21:54
- Forum: Scripts and Functions
- Topic: [class] Multi-Colored Tooltips
- Replies: 6
- Views: 349
Re: [class] Multi-Colored Tooltips
Thanks Chunjee , elModo7 , hasantr and burque505 Nice Civ! is it possible to controll the round corners by any amount? You can adjust the amount the corners are rounded up to a point. The Rounded Rectangle shape is created using bits and pieces of other shapes (ellipses and rectangles) and because o...
- 20 Jan 2021, 19:58
- Forum: Ask For Help
- Topic: View few / many images in dynamic GUI
- Replies: 3
- Views: 74
Re: View few / many images in dynamic GUI
Perhaps something like this? #SingleInstance, Force Gui, 1:+AlwaysOnTop -DPIScale Gui, 1:Color, 22262A Gui, 1:Show, w1000 h400, DEMO Gui, 2:+Parent1 -DPIScale -Caption Gui, 2:Color, 00444A Gui, 2:Show, x10 y80 h310 w980, Gui, 3:+Parent2 -DPIScale -Caption Gui, 3:Color, 00444A Gui, 3:Show, x0 y10 h29...
- 20 Jan 2021, 18:52
- Forum: Ask For Help
- Topic: View few / many images in dynamic GUI
- Replies: 3
- Views: 74
- 18 Jan 2021, 17:17
- Forum: Ask For Help
- Topic: A very nice Horizontal Slider.. How to make it vertical instead
- Replies: 5
- Views: 198
Re: A very nice Horizontal Slider.. How to make it vertical instead
No way to completely remove all flickering, I don't get much here on my end but it is very random. One thing that can improve things is to change the gui background color to the same color as the sliders background i.e. Gui, Color, % SomeColor Other than that, if you have windows 8 or higher you can...
- 18 Jan 2021, 00:48
- Forum: Ask For Help
- Topic: Smooth mousemove / random movement to specified x/y cords
- Replies: 1
- Views: 44
Re: Smooth mousemove / random movement to specified x/y cords
Press Numpad1 a few times. Try Changing the speed and run again. #SingleInstance, Force SetBatchLines, -1 CoordMode, Mouse, Screen return *ESC::ExitApp *Numpad1:: MouseGetPos, sx, sy MousePosition := "", MousePosition := New HB_Vector(sx,sy) ; The starting position for your cursor [ Set a x and y va...
- 18 Jan 2021, 00:31
- Forum: Ask For Help
- Topic: A very nice Horizontal Slider.. How to make it vertical instead
- Replies: 5
- Views: 198
Re: A very nice Horizontal Slider.. How to make it vertical instead
Requires the GDIP Library to run (Search GDI+ on this forum) Included a vertical and horizontal example. ;*************************************************************************************************** #Include <My Altered Gdip Lib> ;<------ Replace with your copy of GDIP ;**********************...
- 15 Jan 2021, 11:47
- Forum: Ask For Help
- Topic: List view with dropdown list
- Replies: 15
- Views: 326
Re: List view with dropdown list
AHKStudent I did a little more work on prototyping a listview control this morning. I'm still just working out how I want to do things to work but I think I have a bunch of the nuts and bolts figured out. I didn't bother to add in sliders to scroll the page in this one, only because I already added...
- 12 Jan 2021, 10:04
- Forum: Ask For Help
- Topic: How to work with text variables from a DDL Topic is solved
- Replies: 2
- Views: 50
Re: How to work with text variables from a DDL Topic is solved
2 things. 1. Add quotes around the strings in your if statements 2. You should have a return at the end of you "OK" subroutine. (unless you really do want to exit after it is done) #Persistent Gui, Add, DropDownList, vColorChoice, Black|White|Red|Green|Blue| Gui, Add, Button, Default w80, OK Gui, Ad...
- 12 Jan 2021, 07:57
- Forum: Ask For Help
- Topic: List view with dropdown list
- Replies: 15
- Views: 326
Re: List view with dropdown list
@AHKStudent Thanks. To be honest, I've never actually used a real listview before so I don't know much about what they do or how to use them.
This is just my best guess. Of course I would want to add a few other features such as adjustable column size, sorting each column, etc. etc.

This is just my best guess. Of course I would want to add a few other features such as adjustable column size, sorting each column, etc. etc.
- 12 Jan 2021, 07:25
- Forum: Ask For Help
- Topic: List view with dropdown list
- Replies: 15
- Views: 326
Re: List view with dropdown list
Not a real solution submission, just playing around to make a little prototype. #SingleInstance,Force OnMessage(0x201,"MessageHandler") global Names := ["Bob1","Amanda","Sammy","Jim","Richard","Barry","Barb","Hellbent","Bob","Amanda","Sammy","Jim","Richard","Barry","Barb","Hellbent","Bob","Amanda","...
- 12 Jan 2021, 04:33
- Forum: Ask For Help
- Topic: Setting RGB value minus "0x" as array index
- Replies: 1
- Views: 49
Re: Setting RGB value minus "0x" as array index
Hope this helps. #SingleInstance,Force ColorsObject := {} Gui,1:+AlwaysOnTop -Caption +Border Gui,1:Font,cLime Gui,1:Color,000000 Gui,1:Margin,0,0 Gui,1:Add,Text,xm ym w50 h50 center 0x201 hwndTextHwnd, 0 Gui,1:Show,x100 y100 w50 h50 return GuiContextMenu: *ESC:: ExitApp Numpad1:: CoordMode, Mouse, ...
- 11 Jan 2021, 11:27
- Forum: Ask For Help
- Topic: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
- Replies: 9
- Views: 392
Re: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
@Xeo786
The reason you can interact with those Button_Type_1 Buttons is because they are on a normal gui, not a layeredWindow [E0x80000].
The reason you can interact with those Button_Type_1 Buttons is because they are on a normal gui, not a layeredWindow [E0x80000].
- 11 Jan 2021, 11:21
- Forum: Ask For Help
- Topic: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
- Replies: 9
- Views: 392
Re: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
And what is "line 12"? winmove working for This Line 12 from your initial post, see snap, Ok. We had our wires a bit crossed there lol. If you are running windows 8 or higher you are able to interact with and detect invisible gui controls. In the layered window class for example, you can set coords...
- 11 Jan 2021, 10:38
- Forum: Ask For Help
- Topic: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
- Replies: 9
- Views: 392
Re: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
I still need to find a way to include the ability to add triggers for windows 7 users, but I don't think it will happen ¯\_(ツ)_/¯ I got windows 7 and moving window working for me, line 12 Window := New LayeredWindow( x := "" , y := "", w := 300 , h := 100 , window := 1 , title := "Test Window" , sm...
- 11 Jan 2021, 09:08
- Forum: Ask For Help
- Topic: How to display a pop-up number on the screen Topic is solved
- Replies: 9
- Views: 2525
Re: How to display a pop-up number on the screen Topic is solved
If I want to display a rectangle with a name and a phone number below the name. Was looking for a old post and saw this, I guess I didn't notice the notification at the time. Not sure if you are still looking for this, but give this a try ;***********************************************************...
- 11 Jan 2021, 07:46
- Forum: Ask For Help
- Topic: Cannot display trigger character
- Replies: 2
- Views: 29
- 11 Jan 2021, 07:03
- Forum: Ask For Help
- Topic: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
- Replies: 9
- Views: 392
Re: Moving a layered window [ E0x80000 ] on win 7 computers && Deleting a instance of a class within a class method
GUI index can be static in your class Thanks for the pointer, this is actually something that I started doing awhile ago but I have left this class with user defined gui names because I find it more familiar to what I'm used to. For example, once a window is created I still often need to do things ...
- 11 Jan 2021, 02:41
- Forum: Ask For Help
- Topic: Adjusting a countdown timer script Topic is solved
- Replies: 18
- Views: 333
Re: Adjusting a countdown timer script Topic is solved
@Hellbent Thank you! for the non gdi+ version, is it possible to make this script? I feel like I am so close to the solution. Would appreciate your solution if you have time. Epialis had posted something at the same time as I posted my solution so I didn't bother making a non-GDIP solution. Does hi...
- 11 Jan 2021, 02:00
- Forum: Ask For Help
- Topic: Adjusting a countdown timer script Topic is solved
- Replies: 18
- Views: 333
Re: Adjusting a countdown timer script Topic is solved
Alternatively you can also get it here included in a function list clip tool.
https://www.autohotkey.com/boards/viewtopic.php?f=6&t=61911
https://www.autohotkey.com/boards/viewtopic.php?f=6&t=61911