AHK-v2-script-converter
AHK-v2-script-converter copied to clipboard
Continuation section with Variables
The following script fails in conversion, gives errors and the wrong conversion.
script =
(
document.querySelector('#userId').value = '%user%'
)
This could be a correct conversion, but I hope V2 gets an cleaner solution in the future
script :=
(
"document.querySelector('#userId').value = '" user "'"
)