如何调整Keynote幻灯片的大小?

时间:2012-07-25 09:10:15

标签: resize applescript slideshow keynote

我是Applescript的绝对新手,但我首先需要知道是否有可能发布Keynote幻灯片,然后如何将幻灯片调整大小调整到桌面上的特定维度和矩形。

我知道你要开始幻灯片放映。 我知道如何使用

调整窗口大小
set the bounds of the window 1 to {0, 0, 200, 400}

但是如果可能的话,不知道如何将此命令传递给Keynote幻灯片。 任何提示??

1 个答案:

答案 0 :(得分:0)

您可以使用'tell'语句或块来调整任何应用程序的窗口大小。在您的情况下,您将使用:

tell application "Keynote" to set the bounds of window 1 to {0, 0, 200, 400}