AHK-v2-script-converter icon indicating copy to clipboard operation
AHK-v2-script-converter copied to clipboard

Continuation section with Variables

Open dmtr99 opened this issue 2 years ago • 1 comments

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 "'"
	
	)

dmtr99 avatar Apr 29 '22 19:04 dmtr99