I created a simple form using text entry fields to capture the email address where it should be sent (email) and the user's name (myname). Using AS2, I entered the code
on (release) {
getURL("mailto:" + email + "?subject=" + myname);

}
The code checker is fine with this, but I get "Cannot open Microsoft outlook. Command line arguments not valid. Verify switches."

What's up with that? Also, since the mailto command is calling to my outlook program, it stand to reason that once this is uploaded to the "cloud" , it wouldn't work. This has been my experience so far, once it is uploaded to Brainshark, I don't even get the lovely error command.

This should be simple, shouldn't it?