Hi @hogi,
My favorite way to do things like this (on my Mac) is to use RunProgram() to run some AppleScript. Here's my process there, which I hope will be helpful if you're adapting for Windows.
On the JMP side, we're going to use RunProgram() to execute a bash script we'll make:
Run Program( Executable( "~/Desktop/pastePowerpoint" ) );
To make the bash script, we open a plain text file and write the bash to AppleScript invocation, and then the AppleScript. Here's the full contents of that plain text file:
#!/bin/bash
osascript <<END
tell application "Microsoft PowerPoint"
activate
tell application "System Events"
keystroke "v" using {command down}
end tell
end tell
END
Once we save that (with no extension), we need to make it executable. In Terminal, we can run the following (still assuming this is on your desktop):
chmod 755 ~/Desktop/pastePowerpoint
And that's it! Hope this helps!
@julian