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

  • Home
  • SEARCH
  • 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 8485127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T20:33:20+00:00 2026-06-10T20:33:20+00:00

Is there an existing class in Flash or Flex that gets the value from

  • 0

Is there an existing class in Flash or Flex that gets the value from an object from it’s property chain?

For example, something like this:

private function labelFunction(item:Object, column:GridColumn):String {
     // where dataField equals "fields.status.name"
     var value:String = PropertyChain.getValue(field, column.dataField);
     return value;
}

~~~ Update ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
I found this private method in the Binding class as well that could probably be used in a custom class:

/**
 *  @private
 */
private static function getFirstWord(destStr:String):String
{
    // indexPeriod and indexBracket will be equal only if they
    // both are -1.
    var indexPeriod:int = destStr.indexOf(".");
    var indexBracket:int = destStr.indexOf("[");
    if (indexPeriod == indexBracket)
        return destStr;

    // Get the characters leading up to the first period or
    // bracket.
    var minIndex:int = Math.min(indexPeriod, indexBracket);
    if (minIndex == -1)
        minIndex = Math.max(indexPeriod, indexBracket);

    return destStr.substr(0, minIndex);
}
  • 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-10T20:33:22+00:00Added an answer on June 10, 2026 at 8:33 pm

    I don’t think there’s an existing function. But it’s very easy to build one, and it need not be restricted to generic Object sources, as any member of any object can be retrieved by name using square bracket notation. This simple version doesn’t do any validation:

    public static function getByName(root:*, member:String):* {
        var memlist:Array = member.split('.');
        var temp:* = root;
        for(var i:uint = 0; i < memlist.length; i++)
            temp = temp[memlist[i]];
        return temp;
    }
    
    // And you can use this even on strongly-typed values, such as a MovieClip:
    trace("stageWidth =", SomeUtil.getByName(mc, "stage.stageWidth"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

like this one here: Is there an existing class that I can use?
I would like to enhance existing class using instance_eval. There original definition contains validation,
Is there a way to override an existing method in a partial class? Something
Are there any existing libraries in existence that will parse a datetime from a
I'm wondering whether there is an existing Java class that, given a Java bean,
Is there an existing class in C# that can convert Quoted-Printable encoding to String
there doesn't seem to be an existing util class for converting a storage unit
Is there existing software for discriminative reranking, such as that used by the Charniak
Are there any existing add-ons which would provide the functionality Upload image from local
I have an existing class for serializing and deserializing objects to/from XML. It's a

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.