Flash Whitespace

Out of context: Reply #5

  • Started
  • Last post
  • 14 Responses
  • jkosoy0

    I got it.

    Make a new Flash file with a dynamic text field named myTextField.

    On the first frame, put this code:
    -----------
    text_to_print = " sdafhksadfljkafsdlsfa kjldsjaflksdf kljsadfjlk;safdj jklsdfjkl;safdjl;kfsad";

    text_to_split = text_to_print.split(" ").join("");

    if(text_to_split.substr(0,1) == " ")
    {
    text_to_split = text_to_split.slice(1,text_to_sp...
    }

    myTextField.htmlText = text_to_split;

    -----------
    That should automatically remove any double-spaces (or more) in your text.

View thread