\n in varibles????
\n in varibles????
- Started
- Last post
- 5 Responses
- rizingdamp
why am i geting \n on the end of all my varibles when i import them into flash from a txt file
example variable:&client1=Advantia
- UndoUndo0
this means newline not sure why your getting it on the end of your vars if its not in the txt file! or added by your AS
- toastie0
what text editor are you using?
- rizingdamp0
TextEdit in osX
- jkosoy0
\n = line break...
Why not just split \n out...
my_variable.split("\n").join...
- unfittoprint0
myvar = myvar.split("\n").join("");