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

3

Esta resposta funciona 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 funciona. Mas quando você tem os dois arquivos pdf no programa, uma página de cada vez, ela pula as páginas (assim é 1, 3, 5). A sincronização pula, mas ainda pula. Quero poder ver a página inteira de ambas e percorrer uma por vez.

    
por craig addie 03.08.2016 / 21:13

1 resposta

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
    
por 04.08.2016 / 01:15