在Skim中切换页面视图


1

右键单击文档时,skim有两个非常有用的选项:

  • 单页(适合演示)
  • 单页连续(适合阅读)

有没有办法定义一个可以在两者之间切换的快捷方式?我想AppleScript,也许可能会有所帮助。问题是我不知道如何使用AppleScript。

Answers:


2

我刚刚为菜单栏项目分配了自定义快捷方式。

您也可以像这样为AppleScript分配快捷方式

try
    tell application "Skim" to tell document 1
        if item -2 of (view settings as list) is single page then
            set view settings to {display mode:single page continuous}
        else
            set view settings to {display mode:single page}
        end if
    end tell
end try

哇。这是一个简单,优秀的解决方案 - 自定义菜单栏快捷方式。我不知道那件事。我想将右箭头和左箭头映射到Skim的下一页和上一页多年,并且无法做到这一点。脱脂开发者并不同情。您对这个问题的回答user49570引导我找到解决方案。(我不显示所有页面,但不需要在窗口内左右移动。)
火星
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.