A Flash Developer Resource Site

+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Junior Member
    Join Date
    Aug 2002
    Posts
    5
    For some reason, my text field isn't showing it's value. I'm duplicating a movie clip then assigning a value to the text field contained in it. When I run a trace on iy, a value is returned but when I test the movie, nothing is shown in the text field... it's just blank.

    Here's my code...

    function createnews(){
    var count = 0;
    var modifier = 0;
    while (count<10) {
    name = "article"+String(count);
    duplicateMovieClip("_root.container.news.article_m ain", name, count);
    setProperty(this[name], _x, "190");
    setProperty(name, _y, 50+modifier);
    this[name].title.text="test";
    trace (this[name].title.text);
    modifier = modifier+100;
    ++count;
    }
    };

    Anyone have any ideas??

  2. #2
    Junior Member
    Join Date
    Aug 2002
    Posts
    5

    Argh! I'm a bonehead!

    Forgot to include font outlines. Works fine now.

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