the copy to dropbox public script is missing the implementation of
changeme function. Here is one version of it:
on changename(thename)
        try
                set AppleScript's text item delimiters to " "
                set theText to text items of thename
                set AppleScript's text item delimiters to "%20"
                set theText to theText as string
                set AppleScript's text item delimiters to ""
                return theText
        end try
end changename

Reply via email to