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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T02:18:41+00:00 2026-06-02T02:18:41+00:00

I am trying to have a more dynamic function and would like to allow

  • 0

I am trying to have a more dynamic function and would like to allow the functions instance name were it outputs the text to be changeable.

for example

function example_function(url,instance_name){
      instance_name.text = url;
}

example_function('www.example.com','url_txt');
example_function('www.another.com','more_txt');

Is this possible?

  • 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-02T02:18:42+00:00Added an answer on June 2, 2026 at 2:18 am

    Yes, just parse the string into square brackets next to the instance’s owner. For example:

    this[instance_name].text = url;
    

    More info:

    Take this object:

    var obj:Object = {
        property1: 10,
        property2: "hello"
    };
    

    Its properties can be accessed either as you’d expect:

    obj.property1;
    obj.property2;
    

    Or as mentioned above:

    obj["property1"];
    obj["property2"];
    

    I suggest using a function like this one I’ve created to tighten your code up a bit:

    function selectProperty(owner:*, property:String):*
    {
        if(owner.hasOwnProperty(property)) return owner[property];
        else throw new Error(owner + " does not have a property \"" + property + "\".");
    
        return null;
    }
    
    trace(selectProperty(stage, "x")); // 0
    trace(selectProperty(stage, "test")); // error
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to have a function that modifies some variable list of parameters
I have been trying to get a more dynamic solution than naming all dropdowns
I have ran into an interesting issue while trying to create a more usable
I'm trying a more object oriented approach with javascript and have implemented a class
I am trying to understand TDD more and all the examples I have seen
I have one question, I was trying to find more information on the internet
I have a 3 column layout, and am trying to make it more responsive
I'm trying to make a part of my code more fluent. I have a
I have been messing around with my meta descriptions, trying to make them more
I'm trying to create more dynamic product and quantity picking method. So when you

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.