Opening a variable filename

Whats wrong with this script":

Set Acc_rend to cell “Filename” of current record
set folderPath to “Macintosh HD/Fees_Program/Documents/Accounts Rendered/”
tell application “Acrobat”
Activate
Tell application “Finder” to open file (folderPath & Acc_rend)
end tell

It tells me it cant “get” the file

Hi,

AppleScript accepts only HFS paths (colon separated)


set Acc_rend to cell "Filename" of current record 
set folderPath to (path to startup disk as text) & "Fees_Program:Documents:Accounts Rendered:"
tell application "Acrobat"
	activate
	open (folderPath & Acc_rend)
end tell


Acrobat is able to open files itself

Thank you!