faqts : Computers : Programming : Languages : Tse : Clipboard : TSE

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

0 of 2 people (0%) answered Yes
Recently 0 of 2 people (0%) answered Yes

Entry

TSE: E-mail: Yahoo: When I paste clipboard text in Yahoo e-mail then empty blank lines are removed

Apr 15th, 2006 09:48
Knud van Eeden,


----------------------------------------------------------------------
--- Knud van Eeden --- 15 April 2006 - 04:55 pm ----------------------

TSE: E-mail: Yahoo: When I paste clipboard text in Yahoo e-mail then 
empty blank lines are removed

===

You will have to insert at the end of line the characters

 linefeed (ASCII 10 or \x10)

and

 character return (ASCII 13 or \x13)

When you paste this in your Yahoo mail, it will show as [][]
but after sending it, it will show correct.

===

E.g. in TSE mark a block of text you want to paste in Yahoo e-mail,
     then do a replace

 Search = $

 Replace = \x10\x13

 Option = glnx

---

E.g. in TSE create this macro (mark a block first)

--- cut here: begin --------------------------------------------------

PROC Main()
 LReplace( "$", "\x10\x13", "glnx" )
END

<F12> Main()

--- cut here: end ----------------------------------------------------

===

Internet: see also:

---



----------------------------------------------------------------------