|
shalimar GURU
Joined: 04 Aug 2002 Posts: 4690 Location: Pensacola, FL, USA
|
Posted: Mon Jun 12, 2006 6:33 am
%clip() |
Is there a way to force a carriage return onto the clipboard with %clip?
I've tried using %cr and ; within the parenthasis, and while %cr will break it up on an e#cho, its is simply stripped out of the actual clipboard contents. |
|
_________________ Discord: Shalimarwildcat |
|
|
|
edb6377 Magician
Joined: 29 Nov 2005 Posts: 482
|
Posted: Mon Jun 12, 2006 7:17 am |
i dont remember which char it is 32(might be space i dont remember) maybe? you could use that instead
|
|
|
|
Ceres Wanderer
Joined: 25 May 2006 Posts: 88
|
Posted: Mon Jun 12, 2006 7:35 am |
I believe %char(13) should be a carriage return in ascii
|
|
|
|
Kjata GURU
Joined: 10 Oct 2000 Posts: 4379 Location: USA
|
Posted: Mon Jun 12, 2006 11:48 am |
Keep in mind that Windows doesn't recognize just a carriage return as a newline. It also needs a linefeed. So try using %crlf or the ASCII codes for a carriage return and a linefeed.
|
|
_________________ Kjata |
|
|
|
shalimar GURU
Joined: 04 Aug 2002 Posts: 4690 Location: Pensacola, FL, USA
|
Posted: Mon Jun 12, 2006 7:42 pm |
i tested it out,
as it turns out the carriage return %char(13) isnt needed
it looks like linefeed %char(10) implies it
at least it drops it to the next line all by itself
#SAY %clip(hi%char(10)there) |
|
_________________ Discord: Shalimarwildcat |
|
|
|
|
|