Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7603861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T23:45:39+00:00 2026-05-30T23:45:39+00:00

the Errors & sources : 1120: Access of undefined property projectsNum. projectsNum = projectTitle.length();

  • 0

the Errors & sources :

1120: Access of undefined property projectsNum.
projectsNum = projectTitle.length();

1120: Access of undefined property newsTitleArray.
newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;

1120: Access of undefined property newsTitleArray.
newsTitleArray.reverse();

1120: Access of undefined property newsInfoArray.
newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;

1120: Access of undefined property newsInfoArray.
newsInfoArray.reverse();

1120: Access of undefined property newsContentArray.
newsContentArray = xmlData.news.article.Content.text().toXMLString().split("\n") ;

1120: Access of undefined property newsContentArray.
newsContentArray.reverse();

my XML actions the action i Doubt the error is in :

//XML LISTS//
//=========//

var projectTitle:XMLList;
var projectAuthor:XMLList;
var projectImage:XMLList;
var projectProgz:XMLList;
var projectHyper:XMLList;

var newsTitle:XMLList;
var newsInfo:XMLList;
var newsContent:XMLList;

var projectNum:Number;
var newsNum:Number;

var xml:XMLLoader = new XMLLoader(this,"data.xml");

function getXML(xmlData:XML):void {

    projectTitle = xmlData.projects.project.Title;
    projectAuthor = xmlData.projects.project.Author;
    projectImage = xmlData.projects.project.image_path;
    projectProgz = xmlData.projects.project.Progz;
    projectHyper = xmlData.projects.project.link;

    newsTitle = xmlData.news.article.title;
    newsInfo = xmlData.news.article.info;
    newsContent = xmlData.news.article.content;

    projectsNum = projectTitle.length();
    newsNum = newsTitle.length();

    newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;
    newsTitleArray.reverse();

    newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;
    newsInfoArray.reverse();

    newsContentArray = xmlData.news.article.content.text().toXMLString().split("\n") ;
    newsContentArray.reverse();

}

the source files files

and i’m not posting any other code cuz i don’t know where the error might be but i’ve uploaded the source files files if u needed them

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T23:45:40+00:00Added an answer on May 30, 2026 at 11:45 pm

    When you see the error:

    1120: Access of undefined property ‘VariableName’.

    This means you have not defined or declared the variable (or function when accessing it as a property of an object/class). Here is an overview:

    1120: Access of undefined property projectsNum.
    projectsNum = projectTitle.length();  // You have declared [var projectNum:Number;] Error source = s --> project[s]Num [Reason #1] 
    
    1120: Access of undefined property newsTitleArray. // I do not see a declaration for this variable [Reason #2]
    newsTitleArray = xmlData.news.article.title.text().toXMLString().split("\n") ;
    
    1120: Access of undefined property newsTitleArray. // [Reason #2]
    
    newsTitleArray.reverse();
    
    1120: Access of undefined property newsInfoArray. // [Reason #2]
    
    newsInfoArray = xmlData.news.article.info.text().toXMLString().split("\n") ;
    
    
    1120: Access of undefined property newsInfoArray. // [Reason #2]
    
    newsInfoArray.reverse();
    
    
    1120: Access of undefined property newsContentArray. // [Reason #2]
    
    newsContentArray = xmlData.news.article.Content.text().toXMLString().split("\n") ;
    
    
    1120: Access of undefined property newsContentArray. // [Reason #2]
    
    newsContentArray.reverse();
    

    Seems like a simple mistake to me. I hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This function declaration gives me errors: ostream& operator<<(ostream& os, hand& obj); The errors are:
I get compiler errors in : template<class _Other1, class _Other2> _Pair_base(_Other1&& _Val1, _Other2&& _Val2)
[String.Format(&quot;/build Debug {0}\Sources\Source\Infrastructure\Infrastructure.Interface\Infrastructure.Interface.csproj&quot;, BuildDirectory)] Say I want to have another double quotes from ===>
I've search here for an answer to this error & I've tried the tips
Which one should I use? catch (_com_error e) or catch (_com_error& e)
Here's the code: NSError *parseError; NSMutableArray *listOfObjects = [NSJSONSerialization JSONObjectWithData:[@[] dataUsingEncoding:NSUTF8StringEncoding] options:NSJSONReadingMutableContainers error:&parseError]; NSLog(@Is
How do I ignore case when using pcre_compile and pcre_exec? pcre_exec( pcre_compile(pattern,0,&error,&erroroffset,0), 0, string,
Getting this error with jquery & jquery.form. Site has been live for awhile..upgraded to
The error occurs when I try to do this friend std::ostream& operator<<(std::ostream& os, const
Getting error when I tried like this: $ci =& get_instance(); $ci->db->select(CONCAT_WS(' ',users.name_first,users.name_last) AS user_name,CONCAT_WS('

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.