У іншому запиті ми знайшли наступний код:
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 видає повідомлення про помилку?