HFS path

Hello,

I want to get the HFS (colon separated) path of the selected item into my script,
and i can only figure out how to get the posix path.

Any tips?

Best…Jklarsen

tell application "Finder"
	set fullPath to (path to me) as text
end tell

or

tell application "Finder"
	set fullPath to (choose file) as text
end tell

or whatever you’ve got! If it’s already an alias:

tell application "Finder"
	set fullPath to myalias as text
end tell

Thank you very much!

Best…jklarsen