View Single Post
The following snippet illustrates the process by setting the clipboard contents to "Hi Mom!" and then pasting them into the insertion point in the frontmost OmniFocus window by simulating the user pressing command-V.

Code:
set the clipboard to "Hi Mom!"

tell application "OmniFocus"
	activate
	tell application "System Events"
		keystroke "v" using {command down}
	end tell
end tell