我在使用ControlSend时遇到问题。尝试将文本发送到记事本时,ControlSend禁止换行。 例如 它将以下内容发送到记事本:
> <p style="font-size:50px;font-weight:900"></p>
代替此:
> ++++
> <p style="font-size:50px;font-weight:900"></p>
> ++++
我的代码(对不起,设计欠佳):
append()
{ControlSend,Edit1,Clipboard,ahk_exe notepad.exe} ;Problem here
#If GetKeyState("Ctrl") && GetKeyState("Shift")
{
e & h::
Title:= ""
InputBox, OutputVar ,"Title Level"
InputBox, HeadingName ,"Title Name"
if(OutputVar = 7)
{
Clipboard := "`n" . "++++" . "`n" . "<p style=""font-size:55px;font-weight:900"">" . HeadingName . "</p>" . "`n" . "++++" . "`n"
sleep 30
}
else if(OutputVar = 8)
{
Clipboard :="`n" . "++++" . "`n" . "<p style=""font-size:50px;font-weight:900"">++++" . HeadingName . "</p>" . "`n" . "++++" . "`n"
}
else if(OutputVar = 9)
{
Clipboard := "`n" . "++++" . "`n" . "<p style=""font-size:45px;font-weight:900"">" . HeadingName . "</p>" . "`n" . "++++" . "`n"
}
else if(OutputVar = 10)
{
Clipboard := "`n" . "++++" . "`n" . "<p style=""font-size:35px;font-weight:900"">" . HeadingName . "</p>" . "`n" . "++++" . "`n"
Sleep 30
}
else if(OutputVar = 11)
{
Clipboard := "`n" . "++++" . "`n" . "<p style=""font-size:30px;font-weight:900"">" . HeadingName . "</p>" . "`n" . "++++" . "`n"
}
else if(OutputVar = 12)
{
Clipboard := "`n" . "++++" . "`n" . "<p style=""font-size:25px;font-weight:900"">" . HeadingName . "</p>" . "`n" . "++++" . "`n"
}
sleep 30
append()
sleep 30
Return
;/...
}
我在剪贴板中也有额外的换行符问题 例如:
它发送此消息:
> [source]
> ----
> x
>
> y
>
> z
> ----
代替此:
> [source]
> ----
> x
> y
> z
> ----
答案 0 :(得分:1)
了解有关发送帮助的信息。 +是特殊符号,如果您想按原样发送字符串,请使用发送的原始模式。或用{}大括号括起来特殊符号。