autohotkey - How to run a file's custom system verb that contains spaces -
when using following script:
run, *verb targetfile
...is there way make work verbs contain space? writing out normal, program interprets after space part of target file. i've tried passing verb variable, using double quotes in various spaces, nothing seems work.
thanks.
even though said had tried double quotes, here example works run , contains spaces:
run "c:\program files\internet explorer\iexplore.exe" http://www.google.com
the common use space in ahk %a_space%.
you try backtick s ('s btw can't use backticks here, below ~ on keyboard). use of 's rare has been shown work in concatenation.
Comments
Post a Comment