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 7970823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:29:27+00:00 2026-06-04T07:29:27+00:00

In AS3, how do i sort this list alphabetically? I’m not a programming expert

  • 0

In AS3, how do i sort this list alphabetically? I’m not a programming expert and i’ve had a hard time just figuring this out.

var searchObject:Object = new Object();
var mapXML:XML;
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.load(new URLRequest("interactive-map.xml"));
xmlLoader.addEventListener(Event.COMPLETE, parseXML);

function parseXML(event:Event):void {
    mapXML = new XML(event.target.data);
    for each (var locationElement:XML in mapXML.maplocation) {
        searchObject.locationname = locationElement.attribute("locationname");
        searchObject.category = locationElement.attribute("category");
        trace("Location Name: " + searchObject.locationname);
    }
}
  • 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-06-04T07:29:29+00:00Added an answer on June 4, 2026 at 7:29 am

    first you need to push elements to array/vector.
    Then you can sort array with sortOn or sort methods.
    Check sortOn/sort methods reference to find sorting options.

    var searchObject:Object = new Object();
    var searchObjectArray:Array = new Array
    var mapXML:XML;
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.load(new URLRequest("interactive-map.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, parseXML);
    
    function parseXML(event:Event):void {
        mapXML = new XML(event.target.data);
        for each (var locationElement:XML in mapXML.maplocation) {
            searchObject = new Object();
            searchObject.locationname = locationElement.attribute("locationname");
            searchObject.category = locationElement.attribute("category");
            searchObjectArray.push(searchObject);//pushing elements to array
        }
        searchObjectArray.sortOn("locationname")//sorting array
        for each ( var searchObjectElement:Object in searchObjectArray)
        {
            trace("Location name: " + searchObjectElement.locationname);//printing sorted array
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to AS3, and can't figure out why this loop isn't behaving the
My question is sort of a follow on from this question below but I
I'm absolutely new to programming and just managed to learn the basics of ActionScript
Since AS3 does not allow private constructors, it seems the only way to construct
In AS3 you have a function on a string with this signature: function replace(pattern:*,
in AS3, I'm making this dynamic textfield that is populated from an XML file
AS3 Webservice I'm using this library to connect to a database where I store
In AS3, I know how to accomplish this. One needs only to click ActionScript
In AS3, from a division I get a number like this one: 0.9130406010219044. Is
I'm low level as3 programmer and I need help whit this code: I have

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.