Hi. I love the simplicity of what you've created here.
I might have missed it, but is there anyway to call build-ins that don't use parenthesis?
Currently I'm just creating my own functions to pass along:
self.ahk = Script('''
WinActivate(title) {
WinActivate, % title
}
Click(options) {
Click, % options
}
''')
So I then do:
ahk.f('WinActivate', self.title)
or
ahk.f('Click', f"{x} {y}")
Thanks!
Hi. I love the simplicity of what you've created here.
I might have missed it, but is there anyway to call build-ins that don't use parenthesis?
Currently I'm just creating my own functions to pass along:
So I then do:
ahk.f('WinActivate', self.title)or
ahk.f('Click', f"{x} {y}")Thanks!