Search found 7 matches
- 27 Dec 2020, 00:35
- Forum: Gaming
- Topic: AHK Says that I am missing a closing braket on line 10
- Replies: 2
- Views: 56
Re: AHK Says that I am missing a closing braket on line 10
/* reload page to join the VIP server */ Was causing the issue. In the future you can use ; to comment out lines. Probably remove the other ones too in case you get the same error again. ; This lime will be commented out so you can type whatever. MouseMove, 969, 876 ; Putting it after code will mak...
- 08 Oct 2020, 14:54
- Forum: Ask For Help
- Topic: ListView and Tabs Topic is solved
- Replies: 6
- Views: 173
Re: ListView and Tabs Topic is solved
So my above code has a flicker if you added too many rows that seemed to have no solution to it. Apparently with "autoHotkey_L. It's a side effect of "invalidating" the portion of the window which the control occupies," according to Lexikos back in 2012. //autohotkey.com/board/topic/78773-guicontrol...
- 06 Oct 2020, 15:36
- Forum: Ask For Help
- Topic: ListView and Tabs Topic is solved
- Replies: 6
- Views: 173
Re: ListView and Tabs Topic is solved
So this works... Gui, Add, Listview, y0 R10 W500 gMyListView altsubmit, File | Type | Media LV_ADD("", "DWTD", "File", "Music") LV_ADD("", "Scandroid", "File", "Music") LV_ADD("", "FuryWeekend", "File", "Music") Loop, 1 LV_ModifyCol(A_Index AutoHdr) Gui, +Resize Gui,Add,Text,, % ""LV_GetCount()" Ite...
- 06 Oct 2020, 15:24
- Forum: Ask For Help
- Topic: ListView and Tabs Topic is solved
- Replies: 6
- Views: 173
Re: ListView and Tabs Topic is solved
Not quite. That selects a tab no matter what row you select where as I'm trying to select a row to select a specific tab. I'm sure I'll find something that will work if no one here has any ideas.
- 05 Oct 2020, 19:45
- Forum: Gaming
- Topic: Help Getting my Script Working
- Replies: 2
- Views: 109
Re: Help Getting my Script Working
Have you looked at the documentation? https://www.autohotkey.com/docs/commands/ControlSend.htm ControlSend , [Control, Keys, WinTitle, WinText, ExcludeTitle, ExcludeText] #Persistent #NoEnv #SingleInstance, Force DetectHiddenWindows, On SetTitleMatchMode, 2 controlID := 0 F2:: loop, 1 { ControlGet, ...
- 05 Oct 2020, 16:58
- Forum: Offtopic
- Topic: « What's on your mind? »
- Replies: 4488
- Views: 1069417
Re: « What's on your mind? »
@garry I've just moved to the newest version of EDGE in my 6yr old slower HTPC. Its considerably faster than Chrome and seemingly uses less memory. I'm missing some of the useful chrome extensions , though. Oh my! Tried just now. I can install Chrome extensions in Microsoft Edge :dance: I most prob...
- 05 Oct 2020, 16:40
- Forum: Ask For Help
- Topic: ListView and Tabs Topic is solved
- Replies: 6
- Views: 173
ListView and Tabs Topic is solved
Is there a way to show a tab by clicking a row in a Listview? I'm aware it's possible in TreeView and have used it in the past which was easier. I'm thinking somehow compare the rows and if the rows text match, then show the tab? I've got this incomplete mess here. Gui, Add, Listview, y0 R10 W500 gM...