Inserire il numero di pagina in un documento di Pages usando AppleScript

3

Come ottengo il numero di pagina di ogni pagina e lo posiziono sulla pagina effettiva usando AppleScript?

So come posizionare il testo in una casella di testo segnaposto, ma non riesco a capire come ottenere il numero di pagina in AppleScript.

    
posta WalterBeiter 24.10.2017 - 12:51
fonte

1 risposta

3

Le pagine sono memorizzate in "pagine". Puoi eseguire l'iterazione con "repeat".

tell application "Pages"
    activate
    tell document "Untitled.pages"
        repeat with i from 1 to number of pages
            set thispage to item i of pages
            (* do something
            -- variable i is the page number
            -- variable thispage is the page itself
            *)
        end repeat
    end tell
end tell
    
risposta data 24.10.2017 - 13:32
fonte

Leggi altre domande sui tag