Search found 688 matches

by lmstearn
26 Mar 2024, 04:20
Forum: Ask for Help (v1)
Topic: Please update the Premiere Pro True Fullscreen to Premiere 24
Replies: 4
Views: 87

Re: Please update the Premiere Pro True Fullscreen to Premiere 24

Hi, lmstearn, I tried installing v.2 but it does not read the code published here https://vakago-tools.com/premiere-pro-true-fullscreen-tutorial/ saying this script code is only for the v.1.1 And I don't have the skills to rewrite this code for version 2. Isn't there someone who can just adapt this...
by lmstearn
25 Mar 2024, 22:51
Forum: Ask for Help (v1)
Topic: Please update the Premiere Pro True Fullscreen to Premiere 24
Replies: 4
Views: 87

Re: Please update the Premiere Pro True Fullscreen to Premiere 24

Hi AndyF, welcome to AHK. :) As Adobe isn't installed here, just a few pointers. As there is no issue with the script with hiding the Title Bar of the app, the app class name is correct, we assume the makers of the app have changed the Toolbar properties. Be sure to have the latest AHK installed, it...
by lmstearn
25 Mar 2024, 12:51
Forum: Bug Reports
Topic: WinTitle with multiple ahk_id uses only last one
Replies: 5
Views: 136

Re: WinTitle with multiple ahk_id uses only last one

Thanks, that explains it. :) In the linked function there is CRITERION_ID , first thought it was a stub for some kind of recursive dissection of the ahk_criteria of the criteria id, there's more to it. For instance the comments note it can crop up with WinActive(), ahk_id in ahk_group - and others, ...
by lmstearn
24 Mar 2024, 23:44
Forum: Bug Reports
Topic: WinTitle with multiple ahk_id uses only last one
Replies: 5
Views: 136

Re: WinTitle with multiple ahk_id uses only last one

How odd, the second window is chosen if a space is prefixed to the second ahk_id string, otherwise it's the first id (as expected :P ): list := WinGetList() hwnd1 := list[1] hwnd2 := list[2] MsgBox "hwnd1 is " hwnd1 ", Ist element of WinGetList, no space : " WinExist("ahk_id " hwnd1 "ahk_id " hwnd2)...
by lmstearn
22 Mar 2024, 00:07
Forum: Ask for Help (v1)
Topic: Toggle Mouse Pointer Transparency
Replies: 1
Views: 62

Re: Toggle Mouse Pointer Transparency

Hi, changing the mouse cursor from a transparent cursor image file you have created might be the best approach, there is also SetSystemCursor and RestoreCursor for effects on all cursors, in the LoadImage function try:

Code: Select all

LR_LOADTRANSPARENT := 0x00000020
by lmstearn
21 Mar 2024, 01:51
Forum: Bug Reports
Topic: SysGetIPAddresses() causes Invalid memory read/write. Topic is solved
Replies: 7
Views: 213

Re: SysGetIPAddresses() causes Invalid memory read/write. Topic is solved

Could be, AHK uses Winsock.h only, in there:
#ifdef IPV6STRICT
#error WINSOCK2 required.
in_addr is for ipv4 only. :(
Toggled off the ethernet to test, the IP now loops back to localhost, no crash either.
Quite a rabbit hole with v6, this seems to be most accepted on SO.
by lmstearn
20 Mar 2024, 01:41
Forum: Bug Reports
Topic: SysGetIPAddresses() causes Invalid memory read/write. Topic is solved
Replies: 7
Views: 213

Re: SysGetIPAddresses() causes Invalid memory read/write. Topic is solved

In v1, using the posted code gets: Error: Call to nonexistent function. Specifically: SysGetIPAddresses() Line# ---> 001: addresses := SysGetIPAddresses() 002: msg := "IP addresses: " 003: For n,address in addresses 004: msg .= address " " 005: MsgBox,msg 006: Exit The program will exit. Not using a...
by lmstearn
10 Mar 2024, 05:37
Forum: Gaming Scripts (v1)
Topic: Flappy Bird but Bad [Game]
Replies: 14
Views: 3046

Re: Flappy Bird but Bad [Game]

Cool, glad you found Chatgpt to be of some use. There's always plenty of time, and heaps of resources on hand in the site, and ... we'll be here as well.
Good luck. :)
by lmstearn
09 Mar 2024, 22:07
Forum: Gaming Scripts (v1)
Topic: Flappy Bird but Bad [Game]
Replies: 14
Views: 3046

Re: Flappy Bird but Bad [Game]

Coming on nicely, :) And a handful of milestones: Embed all data files in script. <Enter> key to commence, restart game. Text on starting screen: <Spacebar> to jump. Selectable speed modes: Speedy, Normal, Granny. Gap between pipes: Narrow, Normal, Wide Coloured pipes (cached before each game) Green...
by lmstearn
06 Mar 2024, 00:27
Forum: Ask for Help (v1)
Topic: Outlook COM failure
Replies: 2
Views: 93

Re: Outlook COM failure

Hi Joe, could be that the index of the object is of a variant type, so the object method might be taking the string value of the variable name OuterDex by default when the type cannot be ascertained. Yet in the next line A_Index is used, so no problem with the type in that case. A For - each Item in...
by lmstearn
05 Mar 2024, 01:54
Forum: Ask for Help (v1)
Topic: [v1.1.37.01]"Post-increment" forgets its "Post" ?
Replies: 12
Views: 549

Re: [v1.1.37.01]"Post-increment" forgets its "Post" ?

++N++ Even though it is a standalone statement, it should produce a syntax error, as the docs (and the Standard) indicate they are exclusive constructs: For example, Var := ++X increments X and then assigns its value to Var. Conversely, if the operator appears after the variable's name, the result ...
by lmstearn
02 Mar 2024, 08:22
Forum: Forum Issues
Topic: Slow forum
Replies: 81
Views: 8309

Re: Slow forum

When making a post there's a bit of a wait before the page refreshes to show it, opening the topic in another window/tab before the refresh often shows the post already included in the topic. This has been the case for almost a year, the wait is getting longer no doubt as the DB grows in size. By co...
by lmstearn
29 Feb 2024, 08:31
Forum: Scripts and Functions (v1)
Topic: showcase of random Scripts
Replies: 2
Views: 214

Re: showcase of random Scripts

Try out the slightly ridiculous Splashy Roadtest, required files here. :P
by lmstearn
29 Feb 2024, 07:57
Forum: Ask for Help (v1)
Topic: Issue reading data after FileAppend/FileRead ClipboardAll
Replies: 6
Views: 237

Re: Issue reading data after FileAppend/FileRead ClipboardAll

FileAppend only supports text, ClipboardAll is a binary memory object dumped to string, Winclip saves and loads it. Thanks Just Me, :thumbup: dataHandle is redefined as the pointer to the block, he had to call Unlock: #SingleInstance Force #requires AutoHotkey v1.1 strClipFilePath := A_ScriptDir . "...
by lmstearn
25 Feb 2024, 01:02
Forum: Ask for Help (v1)
Topic: Issue reading data after FileAppend/FileRead ClipboardAll
Replies: 6
Views: 237

Re: Issue reading data after FileAppend/FileRead ClipboardAll

Not much help here, looks very much like this one at SO. When feeding ClipboardAll back into Clipboard , Windows changes the entire clipboard internally over time - or an internal process is "randomly" writing something else to it in a non-text format. Perhaps programs like Process Explorer will rev...
by lmstearn
22 Feb 2024, 01:22
Forum: Off-topic Discussion
Topic: Thank you for the music
Replies: 305
Views: 223648

Re: Thank you for the music


More to explore!
Spoiler
by lmstearn
19 Feb 2024, 00:12
Forum: Ask for Help (v1)
Topic: Help Getting innerText from Web Element
Replies: 2
Views: 124

Re: Help Getting innerText from Web Element

There are issues with the Write() method as explained in that link: GetCountryInfo := "https://www.scrapethissite.com/pages/simple/" whr := ComObjCreate("WinHttp.WinHttpRequest.5.1") whr.Open("GET", GetCountryInfo) whr.Send() WebRequest.WaitForResponse() GetCountryInfo := whr.ResponseText document :...
by lmstearn
15 Feb 2024, 10:32
Forum: Bug Reports
Topic: Rounding Bug
Replies: 45
Views: 5511

Re: Rounding Bug

Nice example of floating point operations . All floating point numbers with a non-zero mantissa do not have exact representations, e.g, the following are printed according to IEEE 754 and: Format("{1:.15f}", .n) n := 0.1 ; 0.10000000000000001 n := 0.3 ; 0.29999999999999999 n := 0.4 ; 0.4000000000000...
by lmstearn
15 Feb 2024, 04:55
Forum: Ask for Help (v2)
Topic: Install v2 over v1 Topic is solved
Replies: 7
Views: 956

Re: Install v2 over v1 Topic is solved

... 1. Uninstall all AutoHotkey. ... Had v1 installed in to AutoHotkey (oct/2022) root, installing v2 was fine when scripts were manually associated with \v2\AutoHotkey64.exe , though weird stuff prompted uninstalling the lot. Running the installer for v2 again, with it picking up non-standard setu...
by lmstearn
13 Feb 2024, 00:00
Forum: Ask for Help (v1)
Topic: Multiple mouse/keyboard outputs at the same time
Replies: 2
Views: 88

Re: Multiple mouse/keyboard outputs at the same time

GetkeyState detects shift, the WheelUp , WheelDown , (horz scroll) +WheelUp , +WheelDown hotkeys, pick up the general wheeling. The speed of the scroll is set in the Wheel tab here: run main.cpl In a nutshell, the functionality of scrolling within browsers or doc/editor programs in Windows depends ...

Go to advanced search