Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Calculated Applescript to rename a file in Finder (produces error)


peter1015

This topic is 1398 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies

I am trying to create a calculated Applescript that imply renames a file in the Finder.

The Applescript itself works fine:

tell application "Finder"

       set fileAlias to (POSIX file "Users/username/test.jpg") as alias

       set the name of fileAlias to "test2.jpg"

end tell

but the calculated Applescript does not:

" tell application \"Finder\"¶

      set fileAlias to \(POSIX file \"Users\/username\/test.jpg\"\) as alias¶       -- test will be replace by a variable

      set the name of fileAlias to \"test2.jpg\"¶

end tell "

(I have tried various iterations with escapes etc but none so far worked;

I am using the POSIX path because it was the first that worked (others didn't).

I always get the error message "Expected expression but found unknown token" (error -2741)

Help appreciated!

Thanks,

Link to comment
Share on other sites

This topic is 1398 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.