Actionscript 3: Errors

Out of context: Reply #12

  • Started
  • Last post
  • 15 Responses
  • NONEIS0

    So dude,

    These lines were the problem, there are no references to these textfields in your code,

    date_txt.text = featuresXML.FEATURE[(featuresXML... - pNo)].@DATE;
    projectType_txt.text = featuresXML.FEATURE[(featuresXML... - pNo)].@PROJECTTYPE;
    client_txt.text = featuresXML.FEATURE[(featuresXML... - pNo)].@CLIENT;
    description_txt.text = featuresXML.FEATURE[(featuresXML... - pNo)].@DESCRIPTION;

    Essentially your path to those fields are wrong, you should probably store them as class level vars upfront, I can show you how if you need...

View thread