I don't understand the dictionary entry for the alias command. The following *doesn't* create some aliases in a folder:
tell targetFolder
repeat with theItem in myItems
-- make new alias to theItem
end repeat
end tell
|
|
How to make an alias
Submitted by Tobias Weber on Tue, 2006-07-04 12:10.
Tags ( AppleScript )
I don't understand the dictionary entry for the alias command. The following *doesn't* create some aliases in a folder: tell targetFolder Works for me, thanks. UsedSubmitted by Tobias Weber on Thu, 2006-07-06 02:52.
Works for me, thanks. Used in http://www.hogbaysoftware.com/node/1335 |
This script does work to
This script does work to make an alias:
tell application "Mori"
tell front document
set a to entry named "Things to try"
set b to entry named "Inbox"
alias a to end of entries of b
end tell
end tell
I think you need to change your line to something like this:
alias theItem to end of entries