Re: chr(10) AND CFSCRIPT

2005-06-11 Thread Barney Boisvert
You meant chr(13) chr(10) for the windows line ending, right? And the 'mac' line ending is only for Mac OS9 and earlier. Mac OSX (since it's *nix based) uses just the line feed. cheers, barneyb On 6/10/05, Jared Rypka-Hauer - CMG, LLC [EMAIL PROTECTED] wrote: That will work in most browsers,

Re: chr(10) AND CFSCRIPT

2005-06-11 Thread James Taavon
well, that did not work. I keep getting invalid CFML construct. i believe i need to use #chr(10). Here what i am trying to do exactly. I have a shipping address populating a cell in an array. Now i want to have a carriage return after each line in the address in the same array cell. CODE:

chr(10) AND CFSCRIPT

2005-06-10 Thread James Taavon
i want to be able to force a carriage return while getting output back within a cfscript block. i have tried several combos, but nothing seems to work. also using PDFLib if anyone is familiar with that as well. ~| Discover

Re: chr(10) AND CFSCRIPT

2005-06-10 Thread Barney Boisvert
cfscript writeOutput('text with newline' chr(10)); /cfscript that should do ya. cheers, barneyb On 6/10/05, James Taavon [EMAIL PROTECTED] wrote: i want to be able to force a carriage return while getting output back within a cfscript block. i have tried several combos, but nothing seems

Re: chr(10) AND CFSCRIPT

2005-06-10 Thread Jared Rypka-Hauer - CMG, LLC
the characters just right... experiment and see what you come up with. Laterz! J On 6/10/05, Barney Boisvert [EMAIL PROTECTED] wrote: cfscript writeOutput('text with newline' chr(10)); /cfscript that should do ya. cheers, barneyb On 6/10/05, James Taavon [EMAIL PROTECTED] wrote: i