"Impossibile rendere" documenti "in tipo intero." -1700

0

Ho fatto una sceneggiatura semplice per mia sorella, ma non funziona. Richiede un intero? Non l'ho specificato nel mio programma, ma lo chiama comunque?

activate
display dialog "Click Start to start importing your own kindle books!" with title "Kindle Book Uploader by Jeremy Zhang" buttons {"Cancel", "Start"} default button "Start"

property documentFolder : "documents"

tell application "Finder" to (get name of every disk whose ejectable is true)
try
    set kindleLocation to ¬
                ((choose from list result with prompt "Select your Kindle from the list:") as text)
end try

try
      set bookFiles to ¬
                ((choose file with prompt ¬
                          "Select kindle files to import:" of type {"public.html", "public.rtf", "com.microsoft.word.doc", "public.data.mobi", "public.plain-text", "com.adobe.pdf"} with multiple selections allowed) as text)
end try

display dialog "Please wait while the application copies the kindle books..." with title "Kindle Book Uploader by Jeremy Zhang"

tell application "Finder"
      if not (exists folder documentFolder of kindleLocation) then
  make new folder at kindleLocation with properties {name:documentFolder}
      end if
end tell

set fullKindlePath to POSIX path of (kindleLocation as alias) & "documents"

tell application "Finder"
 move (bookFiles) to fullKindlePath
end tell

display dialog "Process has been done! Please eject your kindle and the files will be on the home screen of your Kindle." with title "Kindle Book Uploader by Jeremy Zhang"

E il risultato dell'esecuzione:

tell current application
 activate
end tell
tell application "AppleScript Editor"
 display dialog "Click Start to start importing your own kindle books!" with title "Kindle Book Uploader by Jeremy Zhang" buttons {"Cancel", "Start"} default button "Start"
  --> {button returned:"Start"}
end tell
tell application "Finder"
 get name of every disk whose ejectable = true
  --> {"JEREMY DISK"}
end tell
tell application "AppleScript Editor"
 choose from list {"JEREMY DISK"} with prompt "Select your Kindle from the list:"
  --> {"JEREMY DISK"}
 choose file with prompt "Select kindle files to import:" of type {"public.html", "public.rtf", "com.microsoft.word.doc", "public.data.mobi", "public.plain-text", "com.adobe.pdf"} with multiple selections allowed
  --> {alias "Macintosh HD:Users:JeremyZhang:Downloads:5 ETS SAT S.pdf"}
 display dialog "Please wait while the application copies the kindle books..." with title "Kindle Book Uploader by Jeremy Zhang"
  --> {button returned:"OK"}
Result:
error "Can’t make \"documents\" into type integer." number -1700 from "documents" to integer

Che cosa sto facendo male?
AppleScript Editor 2.5 (138)
AppleScript 2.2.3

    
posta EndenDragon 28.01.2014 - 05:18
fonte

1 risposta

1

Le gioie della digitazione variabile in AppleScript. penso che il tuo problema sia nella riga

set fullKindlePath to POSIX path of (kindleLocation as alias) & "documents"

Vorrei provare a cambiarlo in

set fullKindlePath to (the POSIX path of (kindleLocation as alias)) & "documents"

quindi se non funziona prova & ("documents" as POSIX PATH)

A proposito, sei sicuro che fullKindlePath abbia un '/' alla fine?

    
risposta data 28.01.2014 - 05:35
fonte

Leggi altre domande sui tag