Sorry for this basic question here, but what is the best way of launching the client with a new message form and inserting the address from a field within a notes app.
At the moment I am doing it this way - I have an action bar button with this formula in it:
@Command([EditDocument]);
@Command([EditGotoField];“HomeEmail”);
@Command([EditSelectAll]);
@Command([EditCopy]);
@Command([EditDocument]);
@Command([Compose];@MailDbName;“Memo”);
@Command([EditGotoField];“SendTo”);
@Command([EditPaste])
Which then switches to mail and displays a “Cannot Locate Field” dialogue box.
When you press OK it inserts the mail address into the to field and all is Okay!!
On the last line instead of edit paste, try edit insert text and pass it a variable. I have had trouble in the past with edit copy and edit paste when trying to do this. You may also try using @PostedCommand instead of @Command.