applescript - Why is save attachment in path giving "error "Microsoft Outlook got an error: An error has occurred." number -2700"?" in Outlook 2016? -
save f
in saveasname
fails times.
f
attachment, saveasname
path file name.
the error message tab
is:
save attachment 1 of incoming message id 442 in "/users/path/att-1-1 image001.jpg" --> error number -2700
applescript result tab bottom:
error "microsoft outlook got error: error has occurred." number -2700
it fails because save ... in ... takes file reference, not string. try
save f in posix file saveasname
Comments
Post a Comment