Change Posix Property

I have a script which has a special property :


property myPath : (path to "desk") as string

I’ve learned, that is the short for my Desktop. What do I have to change to set the property to another folder.

path to “this:is:my:path” will not work and
POSIX path of “this:is:my:path” is also not working.

What is the right spelling?

thx - ph

Try one of these:

property myPath : "this:is:my:path" as alias -- If this isn't a real path, you'll get an error

property myPath : POSIX path of "this:is:my:path"

property myPath : “this:is:my:path” as string

this one did it. thanks!