Finder? Permission Error

I am attempting to get a file added to an OmniFocus task and am receiving the following error when attempting to embed the file.

The file “August Survey.pdf” couldn’t be opened because you don’t have permission to view it. (257)

Any help would be greatly appreciated.

Thank you,
Mike


tell application "OmniFocus"
	tell front document
		set NewTask to make new inbox task with properties {name:"Test"}
		tell the note of NewTask
			make new file attachment with properties {file name:"Users:Mike:Library:Mobile Documents:com~apple~CloudDocs:OmniFocus:August Survey.pdf", embedded:false} ¬
				-- Works
			--make new file attachment with properties {file name:"Users:Mike:Library:Mobile Documents:com~apple~CloudDocs:OmniFocus:August Survey.pdf", embedded:true} ¬
			-- Fails with this error... ¬
			-- The file “August Survey.pdf” couldn’t be opened because you don’t have permission to view it. (257)
		end tell
	end tell
end tell