In ActionScript, what character does "\t" represent? I can see it in some ActionScript And was wondering what character it really was.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

It's a "tab space". \n and \r are other special characters that, in AS, represent new line characters (drops text down to next line, as if you were pressing the "enter" key in a text editor).

See http://www.adobe.com/livedocs/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=textcontrols_060_05.html for more.

link|improve this answer
Thanks! It was simple but I'm a newbie. – Bubby4j Aug 22 '10 at 3:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.