我正在尝试创建一个脚本,该脚本将采用名称并将其添加到预先编写的文本块中。
本质上,我想写“emailDave”并将名字 Dave 插入到一个文本字符串中,然后发送。我只是不确定如何以这种方式修改热字符串。
我目前正在使用一种方法,该方法使用 InputBox 询问名称并将名称插入文本中。这在桌面上工作得很好,但我使用的是 Windows 8,由于某些可怕的原因,InputBox 不会出现在应用程序内(即在桌面模式之外)。
我知道必须有一种方法可以使用我输入的文本“email vs emailDave”来影响变量,而不是让我用 InputBox 进行这种鹅追逐。
也就是说,如果有人知道在 Windows 8 应用程序(尤其是邮件)中显示 InputBox 的解决方法,那将非常有帮助。
当前脚本在桌面上运行良好但不能在应用程序中运行:
::email::
InputBox, thename, Enter the name, What is the name
SendInput Hi %thename%,{enter}{enter}Sample text.{enter}{enter}Thanks,{enter}Zach
Return
有没有办法让这样的工作?
::email{%thename%}::
SendInput Hi %thename%,{enter}{enter}Sample text.{enter}{enter}Thanks,{enter}Zach
Return