Я нашел следующий код по другому вопросу здесь:

SetTitleMatchMode 2 ; Match anything with Adobe Acrobat anywhere in the title
WinGet, id, list,Adobe Acrobat,, Program Manager

    this_id := id1 ; Activate the first window, and find the current page number
    WinActivate, ahk_id %this_id%
    WinWaitActive, ahk_id %this_id%


Send, {CTRLDOWN}N{CTRLUP}
Sleep, 30
WinGetText, text  ; 

StringSplit, word_array, text, `n  ; The current page number is on the 3rd line of returned text
nextpage := word_array3
nextpage += 1  ; Increment and store the current page number

Send, %nextpage%{ENTER}
Sleep, 30


Loop, %id%  ; now loop through the rest of the windows and set each to the same page.
{
    this_id := id%A_Index%
    WinActivate, ahk_id %this_id%
    WinWaitActive, ahk_id %this_id%
    Send, {CTRLDOWN}N{CTRLUP}
    Sleep, 30
    Send, %nextpage%{ENTER}
    Sleep, 30

}

(AutoHotkey - Прокрутка двух PDF документов)

Я изменил один элемент, чтобы код выглядел как "Adobe Acrobat" в заголовке окна. Но когда я подключаю код к Acrobat Pro DC, я получаю сообщение SyntaxError, отсутствует; до утверждения 1: в строке 2. Я не вижу, что не так с кодом; и, по крайней мере, еще один пользователь в оригинальном сообщении сказал, что он работал отлично. Так почему бы Acrobat Pro DC выдать сообщение об ошибке?

0