A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: [RESOLVED] Need help identifying loaded text problem

  1. #1
    Member
    Join Date
    Jun 2003
    Location
    sunny SoCal
    Posts
    76

    resolved [RESOLVED] Need help identifying loaded text problem

    I've worked with AS2 before but not at the level of the file I am trying to troubleshoot. I have two copies of a flash file, one that works, and one that doesn't. the problem is that the text will not load into a window on one of them. However, the actionscript is identical. I think it's loading the text from an external source, but I don't know where or why one works and one doesn't.

    Code:
    // *** Adds Direction Text to bottom window ***
    var tempString = "";
    content_slide_mc.note_txt2.html = true;
    for (i=0; i<stepsArray.length; i++) {
    	tempString += (i+1)+") "+stepsArray[i]+"<br>";
    }
    content_slide_mc.note_txt2.htmlText = tempString;
    Thanks!

  2. #2
    Member
    Join Date
    Jun 2003
    Location
    sunny SoCal
    Posts
    76

    resolved resolved

    It was getting its text from the Component Parameters.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center