Encontrei o seguinte código em outra pergunta aqui:
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 - rolagem de dois documentos PDF )
Alterei um item para que o código procurasse "Adobe Acrobat" no título da janela. Mas quando eu conecto o código ao Acrobat Pro DC, recebo uma mensagem SyntaxError, ausente; antes da declaração 1: na linha 2. Não vejo o que há de errado com o código; e pelo menos um outro usuário no post original disse que funcionou perfeitamente. Então, por que o Acrobat Pro DC enviaria uma mensagem de erro?
Tags pdf adobe-acrobat scrolling