首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >适用于Mac Office 2011的Applescript

适用于Mac Office 2011的Applescript
EN

Stack Overflow用户
提问于 2010-10-13 16:56:19
回答 2查看 6.4K关注 0票数 0

有没有可用的Applescript可以通过Mac Office 2011将URL或图像数组作为邮件附件发送?

EN

回答 2

Stack Overflow用户

发布于 2012-03-16 22:57:03

另请参阅:

MS Outlook2011 sp1 V14.1.0更改了apple脚本字典。http://www.officeformachelp.com/2011/04/microsoft-updates-applescript-dictionary-for-outlook-2011-sp1/

另外:

运行send all --强制立即发送收件箱中的邮件

票数 1
EN

Stack Overflow用户

发布于 2010-10-13 21:14:00

鉴于Office 2011非常新,我很惊讶你会在Office提供的示例脚本之外找到现成的代码来使用。This is where the Dictionary comes in; the Dictionary tells you everything that an application responds to, what objects can be manipulated, etc.第一次编写应用程序脚本时,字典始终是您首先查看的内容。

即使对于刚接触Applescript的人来说,你所问的问题似乎也不难理解。

更新:是Entourage 2008的编解码器。我认为v2011不会偏离这一点太多,因为它非常简单:

代码语言:javascript
复制
tell application "Microsoft Entourage"
 set newMessage to make new outgoing message with properties {subject:"New Outgoing Message Subject", recipient:"email@domain.com", content:"Message Body", attachment:{pathToFile1, pathToFile2}}
end tell
--> RESULT: A new message appears in the Outbox with the content placed
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/3922083

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档