2011-01-23 13 views
6

Sono un mastro tagliando eccezionale, e ho scritto script per molto tempo. L'applicazione che sto creando attualmente prevede l'uso dell'applicazione "Database Events". Sto cercando di impostare il valore di un campo usando una subroutine. Apparentemente, "non posso continuare con set_duration" e non ho idea di cosa possa essere sbagliato. Il codice sorgente attuale è sotto.Problema con la subroutine di Applescript

property first_run : true 
on run 
if first_run then 
display dialog "THIS APPLICATION IS DESIGNED TO CLEAN UP THE FOLDER CONTAINING IT." & return & return & "After a certain number of days that you set, every item in that folder that has not been used for that duration will automatically be moved to a folder named \"Unused Items\"." with icon 1 buttons {"Cancel", "OK"} default button 2 
set first_run to false 
end if 
tell application "Database Events" 
set quit delay to 0 
try 
get database "Folder Cleanup Wizard" 
on error 
make new database with properties {name:"Folder Cleanup Wizard"} 
tell database "Folder Cleanup Wizard" 
make new record with properties {name:"Duration"} 
tell record "Duration" to make new field with properties {name:"Days", value:set_duration()} --> UNKNOWN ERROR 
end tell 
end try 
end tell 
end run 

on set_duration() 
try 
set duration to the text returned of (display dialog "Enter the minimum duration period (in days) that files and folders can remain inactive before they are moved to the \"Unused Items\" folder." default answer "" with title "Set Duration") as integer 
if the duration is less than 0 then 
display alert "Invalid Duration" message "Error: The duration cannot be a negative number." buttons {"OK"} default button 1 
set_duration() 
end if 
on error 
display alert "Invalid Duration" message "Error: \"" & (duration as string) & "\" is not a valid duration time." buttons {"OK"} default button 1 
set_duration() 
end try 
end set_duration 

risposta

10

Il problema è che AppleScript sta trattando set_duration come un termine da database "Folder Cleanup Wizard" o da application "Database Events", grazie allo tell b serrature. (Al di fuori di un blocco tell funzionerà semplicemente) set_duration() funzionerà.) Per ovviare a questo, è necessario utilizzare my set_duration(), che indica a AppleScript di cercare nello script corrente la funzione. Quindi, in questo caso, avresti

... 
tell record "Duration" to ¬ 
    make new field with properties {name:"Days", value:my set_duration()} 
... 
2

Penso che questo è dovuto al fatto Applescript è sempre confuso in cui set_duration vive

fare qualcosa di simile

tell me to set value_to_set to set_duration() 
tell record "Duration" to make new field with properties {name:"Days", value:value_to_set} 

penso che lavorerà per voi