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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:43:36+00:00 2026-06-12T00:43:36+00:00

I am creating an array of functions such as this. The url in the

  • 0

I am creating an array of functions such as this. The url in the array is correct, but when i finally loop through this information in the arraylist…. the funt at x[1] references the last value stored into url while at the same time, x[0] is correct. Is there a way to adjust the inner url to match that of the x[0]? I was thinking to put in a param to the anon-function but i wasnt sure that was going to work. I also wasnt sure if i could work myself up the data tree, and be like function.parent[0] referencing the parent of the function and calling element 0. I guess that last idea was sort of thinking in a DOM way of logic.

var newArray = new Array();
    for(var i=0;i<fileUrls.length;++i) {
        var url = fileUrls[i];
        var x = [];//new Array();
        x = [url,
            function(){
                displayFile(url, 'image', null, ft_id, null, null, null, null, !MA.isiOS());
            }, 
            function(e){
                if(DEBUG) console.log('Error creating gallery thumbnail');
                alert('There was a problem creating a thumbnail');
                MA.hideMessage();
            }
        ];
        newArray.push(x);
    }
   pollingThrottler(2,newArray, function(a,b,c){ 
            //alert(a+"\n-----\n"+b+"\n-----\n"+c);
            //alert(bentleyPlugins.createThumbnailForPath(a,b,c));
            //alert(a);
                            //a does not reference the correct item.
            createThumbnailForPath(a,b,c);
            return;
        },function(){
            alert("success!");
        });

is the actual code.

  • 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-12T00:43:38+00:00Added an answer on June 12, 2026 at 12:43 am

    You need a generator function for your array elements like this:

    function genElement( url ) {
     return [url,
      function(){
        displayFile(url, 'image', null, ft_id, null, null, null, null, !MA.isiOS());
      }, 
      function(e){
        if(DEBUG) console.log('Error creating gallery thumbnail');
        alert('There was a problem creating a thumbnail');
        MA.hideMessage();
      }
     ];
    }    
    arrayList.push( genElement( myUrl ) );
    

    Basically what happens in your code is, that all function elements will reference the same url variable, which changes its values over the course of the loop.

    When you use the generator function a copy of the url will be generated, when you call the generator function. This results in every element having its “own” url variable to reference.

    EDIT

    For the sake of easy to read code and performance, however, I would advise the answer of @dystroy as this is the better way to do such things in my opinion.

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

Sidebar

Related Questions

Good Day, I'm creating a VBScript function to return an array. But I want
If you are creating an array, say: $url = explode(/, $_SERVER['QUERY_STRING']); What's the simplest
I have an array, that I construct within a mysql fetch array loop. This
I'm having trouble creating a global array that i can use in other functions.
I am creating an array from several text boxes. I am needing to move
I am creating an array of hashes and passing it into a controller via
I am creating an array of string objects in PowerShell which needs to be
So I'm creating an array called fruits which I would like to share between
I'm creating an array of view controllers, adding them to a UINavigation Controller, and
I have a time-consuming static C# method for creating an array (of double :s)

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.