我正在尝试将文本文件中的句子加载到变量中,然后输出它们(例如,在浏览器窗口中)。
我的问题是,在将句子(段落)加载到变量之后,输出的单词之间没有空格。
实施例。 “你好,你好吗?”加载到变量中,然后使用击键键入将显示为“Hellohowareyou?”
set theData to "/Users/User/Desktop/theData.txt"
set theText to read theData
set EventDescription to paragraph 1 of theText as text
tell application "System Events"
tell process "Safari"
keystroke EventDescription as text
end tell
end tell
编辑:如果我将剪贴板设置为变量“EventDescription”然后粘贴它,则会保留空白。只有在使用“击键”时才是。