View Single Post
How do you add a file to an existing task?

I know how to create a new task with a new file attachment, but I couldn't find out how to attach it to a specific task.

The task I want do address is always the same (same name, same OF task id).


Thanks for any help.

This is a part of dave_m's script, modified by whpalmer4 (http://forums.omnigroup.com/showthre...ear#post118770:
Code:
 	tell front document
			
		set NewTask to make new inbox task with properties {name:file_name}
		tell the note of NewTask
			make new file attachment with properties {file name:this_item, embedded:pEmbedFile}
		end tell
			
	end tell