AutoHotkey - Rolagem de dois documentos PDF ajustados à página


4

Esta resposta funciona a partir da postagem anterior usando o bloco de notas para rolar: AutoHotkey - Rolagem de dois documentos PDF. Se você tiver o documento em preencher a janela e rolar continuamente, ele funciona. Mas quando você tem os dois arquivos pdf no mostrador, uma página de cada vez, ela pula as páginas (assim é 1, 3, 5). A sincronização pula, mas ainda pula. Eu quero ser capaz de ver a página inteira de ambos e rolar um por vez.

Respostas:


1
#NoEnv
#SingleInstance Force
Process, Priority, , High
SetWinDelay 0

; Replace "ThisClass" with the ahk_class of your PDF Viewer
GroupAdd, PDF_Group, ahk_class ThisClass

        return      ; end of auto-execute section

#IfWinActive, ahk_group PDF_Group

    PgDn::
    ; If the target window does not receive the keystrokes reliably, 
    ; try increasing the press duration via the second parameter of SetKeyDelay 
    ; as in these examples:
    ; SetKeyDelay, 10, 10
    ; SetKeyDelay, 0, 10
    ; SetKeyDelay, -1, 0
        Send {PgDn}
        GroupActivate PDF_Group  ; activate the next window of this group
        Send {PgDn}
    return

#IfWinActive


Esc:: ExitApp
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.