Search found 13 matches

by return
24 Mar 2024, 06:10
Forum: Ask for Help (v2)
Topic: How to obtain the memory address of a variable in AutoHotkey v2?
Replies: 22
Views: 638

Re: How to obtain the memory address of a variable in AutoHotkey v2?

ptr := &intVar never did "Get the address of the integer". It got the address of a string of digits . That is now achieved by StrPtr. This and most (optimistically "all") other changes are explained in Changes from v1.1 to v2.0 . Just search that page for "&var (address-of)". I would still want to ...
by return
23 Mar 2024, 07:56
Forum: Ask for Help (v2)
Topic: How to obtain the memory address of a variable in AutoHotkey v2?
Replies: 22
Views: 638

Re: How to obtain the memory address of a variable in AutoHotkey v2?

Hello, what do you need it for? Thank you for your response. I used AutoHotkey v1.1 before, and now I am learning AutoHotkey v2.0. I have noticed some differences in this regard. Therefore, I would like to confirm whether AutoHotkey v2.0 does not support obtaining the addresses of variables of inte...
by return
23 Mar 2024, 00:44
Forum: Ask for Help (v2)
Topic: How to obtain the memory address of a variable in AutoHotkey v2?
Replies: 22
Views: 638

How to obtain the memory address of a variable in AutoHotkey v2?

hello everyone, In the v2 documentation, I found the StrPtr and Objptr functions, which replace the & function in version 1.1. However, how can I obtain the address of integer and floating-point variables? thanks ; Define an integer variable intVar := 123 ptr := &intVar ; Get the address of the inte...
by return
21 Sep 2023, 21:34
Forum: Scripts and Functions (v2)
Topic: WatchCaretEx() function
Replies: 1
Views: 444

WatchCaretEx() function

#Requires AutoHotkey v2.0+ Persistent CoordMode("caret","Screen") timer := WatchCaretEx.Bind( DllCall("GetCurrentThreadId") ) SetTimer timer, 100 Return WatchCaretEx(currentThreadId) { static prevControl:=EditClientX :=EditClientY :=0, externalThreadID:=0 focusedControl:=ControlGetFocus("A") hContr...
by return
24 Aug 2022, 09:14
Forum: Scripts and Functions (v1)
Topic: Rufaydium WebDriver 1.7.2 (no selenium/websocket)
Replies: 610
Views: 124760

Re: Rufaydium WebDriver 1.7.0 (no selenium/websocket)

Impressive work. Now I have a question.I'm writing a script for automatic login,When I use sendkey function send password to a password inputbox,It will fail. This is my codes #Include Rufaydium.ahk f1:: Chrome := new Rufaydium() ; this will return control over Chrome Browser Page := Chrome.NewSessi...
by return
14 Jul 2021, 20:19
Forum: Scripts and Functions (v1)
Topic: NeutronC - Run GUIs in Chrome!
Replies: 9
Views: 3765

Re: NeutronC - Run GUIs in Chrome!

niceeeeee!
by return
16 Sep 2019, 23:41
Forum: Forum Issues
Topic: Where is the Chinese Forum ?
Replies: 69
Views: 28028

Re: Where is the Chinese Forum ?

OK@joedf thanks
by return
16 Sep 2019, 09:11
Forum: Forum Issues
Topic: Where is the Chinese Forum ?
Replies: 69
Views: 28028

Re: Where is the Chinese Forum ?

好吧!
autoahk.com是一个公益性的中文推广网站。
叫AutoHotKey中文网有问题吗?
我认为是否收费提供服务是作者的权力,不是你们的,也不是我的。对吗?
Okay! Autoahk.com is a public welfare Chinese promotion website. Is there a problem with calling AutoHotKey Chinese? I think it is the authorundefineds power to charge for the service, not yours, nor mine. Right?
by return
10 Sep 2019, 07:13
Forum: Forum Issues
Topic: Where is the Chinese Forum ?
Replies: 69
Views: 28028

Re: Where is the Chinese Forum ?

我可以吗? 我是autohotkey语言的爱好者,运营着一个关于autohotkey的网站(www.autoahk.com),希望autohotkey可以在中国被广泛使用。一些原因,autohotkey在中国知道的人并不多,我通过网站、博客等进行了一定的推广,但是中国很多朋友跟我一样,很少登录官网和论坛,所以我也希望,autohotkey可以和我的网站合作,将autohotkey的最新消息得到中国,让autoahk.com成为autohotkey在中国的官方网站,因为我才最了解中国人和中国需要。谢谢! Can I? I am a fan of autohotkey language and r...
by return
10 Sep 2018, 02:59
Forum: Ask for Help (v1)
Topic: 发送键击时偶尔会另触发Ctrl( Ctrl is occasionally triggered when keystrokes are sent.) Topic is solved
Replies: 2
Views: 781

发送键击时偶尔会另触发Ctrl( Ctrl is occasionally triggered when keystrokes are sent.) Topic is solved

:headwall: 今天发现一个问题,当我通过快捷键发送键击时,偶尔系统会自动另发一个Ctrl,希望官方能给予解释和改进! Today I found a problem, when I send keystrokes through shortcuts, occasionally the system will automatically send another Ctrl, I hope the official can explain and improve! !2:: SendInput,{m} SendInput,{down 7}{Enter 3} return http://ww...

Go to advanced search