AutoHotkey - Menggulir dua dokumen PDF yang sesuai dengan halaman


4

Jenis jawaban ini berfungsi dari posting sebelumnya menggunakan notepad untuk menggulir: AutoHotkey - Menggulir dua dokumen PDF. Jika Anda memiliki dokumen dalam isi jendela dan gulir terus menerus itu berfungsi. Tetapi ketika Anda memiliki dua file pdf baik pada acara satu halaman pada satu waktu, ia melewatkan halaman (begitulah 1, 3, 5). Ini sinkronisasi melompat, tetapi masih melompat. Saya ingin dapat melihat halaman penuh keduanya dan gulir satu per satu.

Jawaban:


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
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.