Save from Quark 6.5 on an mounted volume

Hello everybody!

I got some problems saving an document from Quark Xpress 6.52 to an mounted volume.

I tryed the following:


tell application "QuarkXpress Passport" 
activate make new document at beginning 
save document 1 in file "VBU01 HD:Volumes:Kundenordner:0-9:try2.qxp" as alias 
end tell

This did not work. When I use the following code-line
Code:


save document 1 in file "VBU01 HD:quark_temp:try2.qxp" as alias

it works fine, because there is no alias like in the volumes-folder.

So, what do I have to do to save my file on the mounted volume “kundenordner”. The full path I need to save in is: “VBU01 HD:Volumes:Kundenordner:0-9”. The mounted volume is called “Kundenordner” with an subfolder called “0-9” and in this subfolder of the mounted volume “Kundenordner” I want to save the file.

Thanks for your help!

Greetings

Christian

Model: macMini Core Duo 1.8 Ghz
AppleScript: 2.1
Browser: Firefox 2.0.0.3
Operating System: Mac OS X (10.4)

Try shortening it to start with the volume name, instead of going to your hard drive and then an aliases folder:

save document 1 in file "Kundenordner:0-9:try2.qxp" as alias 

Browser: Safari 419.3
Operating System: Mac OS X (10.4)

Thanks Matt-Boy, that works realy fine without any problems. Now, I can finish the work on that programm!

Thank you again!