Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't insert signature at cursor

Status
Not open for further replies.

BarTX

Instructor
Feb 25, 2005
2
0
0
US
I've created a signature which I insert using an icon on the toolbar. The problem is, it automatically inserts it at the end of an email. That's OK unless I'm responding to an email and including the other person's response. How can I make it insert the signature at the cursor location?
 
If the signature is simple text you can use the uidocument method "InsertText", which should insert the value at the position of the cursor.
 
How is the command line written? I tried this, but it didn't work:
@Command([InsertText];
Does it matter where it goes in the string of commands?
 
Sorry, I probably should've first referred to the @Command. This command will not work on the web - but if you're using a Notes client then it should. Your cursor must be in a text or rich text field.

The command will be something like this:

@Command([EditInsertText]; "Bazooka Joe")

If you have several signature lines (ie: your name, phone numbers, etc.) I think you can get by with:

@Command([EditInsertText]; "Bazooka Joe" + @NewLine + "My phone number")

This should return:

Bazooka Joe
My phone number

Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top