Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何使用applescript一起显示常量和变量的值。
例子
将测试设置为 2
显示对话框(“A”+测试)
每当我运行它时,我都会收到一条错误消息“无法将“A”转换为类型编号”。
提前致谢
要将字符串连接在一起使用“&”,而不是“+”。请注意,我们可以连接字符串,因此在连接之前应该将数字强制转换为字符串。
display dialog ("A" & (test as text))