Search found 8 matches

by Ocelot
12 Jan 2024, 00:07
Forum: Ask for Help (v1)
Topic: Creating a function to shorten script? Topic is solved
Replies: 1
Views: 221

Creating a function to shorten script? Topic is solved

I can't think of how to properly create a function to shorten this bit of code here to toggle menu trays checks which disable sections of a script. Any help with that? #Persistent #SingleInstance force Menu, Tray, NoStandard Menu, Tray, Add, Section 1, Section1 Menu, Tray, Add, Section 2, Section2 M...
by Ocelot
27 Dec 2020, 00:35
Forum: Gaming Help (v1)
Topic: AHK Says that I am missing a closing braket on line 10
Replies: 2
Views: 155

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...
by Ocelot
08 Oct 2020, 14:54
Forum: Ask for Help (v1)
Topic: ListView and Tabs Topic is solved
Replies: 6
Views: 495

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...
by Ocelot
06 Oct 2020, 15:36
Forum: Ask for Help (v1)
Topic: ListView and Tabs Topic is solved
Replies: 6
Views: 495

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...
by Ocelot
06 Oct 2020, 15:24
Forum: Ask for Help (v1)
Topic: ListView and Tabs Topic is solved
Replies: 6
Views: 495

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.
by Ocelot
05 Oct 2020, 19:45
Forum: Gaming Help (v1)
Topic: Help Getting my Script Working
Replies: 2
Views: 303

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, ...
by Ocelot
05 Oct 2020, 16:58
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4901
Views: 1416604

Re: « What's on your mind? » Topic is solved

@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...
by Ocelot
05 Oct 2020, 16:40
Forum: Ask for Help (v1)
Topic: ListView and Tabs Topic is solved
Replies: 6
Views: 495

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

Go to advanced search