I have a button that I using to generate an email message, The button works but I cant get the button to format correctly. I have listed the code below that I am using. I ran into problems with the text being inserted into the signature but managed to get round that with the Cut and Paste, but now all the text is appearing in one line it appears to be ignoring the EditDown command. I am putting the document into Edit but still the same?Can anyone help me with where I am going wroong.
Kind regards,
Mark
@Command([MailComposeMemo]);
@Command([EditGotoField];“EnterSendTo”);
@Command([EditInsertText];Employee);
@Command([EditGotoField];“Subject”);
@Command([EditInsertText];“Issues Raised”);
@Command([EditGotoField];“Body”);
@Command([EditSelectAll]);
@Command([EditCut]);
@Command([EditDocument];“1”);
@Command([EditDown];“2”);
@Command([TextNormal]);
@Command([TextBold]);
@Command([EditInsertText];Item1);
@Command([EditInsertText];" - ");
@Command([EditInsertText];Ref1);
@Command([EditDown];“2”);
@Command([EditInsertText];Item2);
@Command([EditInsertText];" - ");
@Command([EditInsertText];Ref2);