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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:35:40+00:00 2026-06-07T18:35:40+00:00

What construction i need to use, for in, or for? var params = stage.loaderInfo.parameters;

  • 0

What construction i need to use, for in, or for?

var params = stage.loaderInfo.parameters;

    for (var i in params) 
    { 
       // trace(params[i]);
       // or
       // var test = params[i];
    } 

how to do it, to get all the values?

ps: params.length – show the number of flashvars?

  • 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-07T18:35:42+00:00Added an answer on June 7, 2026 at 6:35 pm

    You should use a for-in or for-each-in loop. For-in will iterate over the keys, while for-each-in will iterate over the values. A for-in loop is probably what you want, if you want to get both the keys and values.

    For example, if your flashVars look something like this:

    { userId: 100, userName: 'Mister PHP' }
    

    A for-in loop would look something like this:

    var flashVars:Object = stage.loaderInfo.parameters;
    
    for (var key:String in flashVars) {
        var value:String = flashVars[key] as String;
        trace(key + ' = ' + value);
    }
    
    // output:
    // userId = 100;
    // userName = Mister PHP
    

    While a for-each-in loop would look like:

    var flashVars:Object = stage.loaderInfo.parameters;
    
    for each (var value:String in flashVars) {
        trace(value);
    }
    
    // output:
    // 100
    // Mister PHP
    

    As far as I know, there is no easy way to get the length of an object or dictionary. You would have to iterate through the object and increment a counter on each pass.

    Here’s a reference on loops in ActionScript

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

Sidebar

Related Questions

hi i need to use a variables from page to show in another page
In such a construction: Dictionary<myObject, Dictionary<myEnum, secondObject>> myDict; I use foreach to search all
When I need to declare a new array I use this notation var arr
For the ExcelPackage constructor you need a FileInfo object. I rather use some kind
I need this construction in my HAML code: - if something1 %div.a - elsif
I am trying to understand simple snaplet construction. Also, when do I actually need
I currently use this style to create a js class like structure: var JSClass
I need some help - I am trying to use a custom validation attribute
I need to use the SQRT function as part of a where clause in
I have a construction that checks if a checkbox is checked (who can use

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.