在AppleScript中读取和输出句子(单词之间的间距)

时间:2016-10-17 22:10:46

标签: applescript

我正在尝试将文本文件中的句子加载到变量中,然后输出它们(例如,在浏览器窗口中)。

我的问题是,在将句子(段落)加载到变量之后,输出的单词之间没有空格。

实施例。 “你好,你好吗?”加载到变量中,然后使用击键键入将显示为“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”然后粘贴它,则会保留空白。只有在使用“击键”时才是。

0 个答案:

没有答案