Announcement

Collapse
No announcement yet.

Easy Array not recognized

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Easy Array not recognized

    hello, I have a little problem with Easy array library.

    using the same EFS in 2 different computers, I work in Italy instead to my colleague in the U.S. does not work and give error "EASY array not recognized." the version of the easyarray.efslib is the latest Alex Montenegro and is saved correctly in the folder "function library".

    ESignal 10.6.2425, Win 7 platform. any ideas?

    thanks in advance

    Marco O.

  • #2
    Marco O.
    What is the exact wording of the error message [preferably post an image of that as shown in the Formula Output Window]?
    Alex


    Originally posted by o.marco73 View Post
    hello, I have a little problem with Easy array library.

    using the same EFS in 2 different computers, I work in Italy instead to my colleague in the U.S. does not work and give error "EASY array not recognized." the version of the easyarray.efslib is the latest Alex Montenegro and is saved correctly in the folder "function library".

    ESignal 10.6.2425, Win 7 platform. any ideas?

    thanks in advance

    Marco O.

    Comment


    • #3
      Grazie Alexis per la risposta, ora mi faccio fare una immagine dell'errore e lo riposto .
      Marco

      Comment


      • #4
        The error is "uncaught exception: The easy array function library has expired. Download a new copy".
        The downloaded copy of thee "easyarray.efslib is the last of Alexis Montenegro and still saved correctly into Function library folder.
        What 's the problem ?
        thank you
        Attached Files

        Comment


        • #5
          o.marco73
          The error message [and your image] suggests that you did not save the file in the appropriate location
          See this and this thread with regards to the location of 10.6 user files in Win7
          Alex


          Originally posted by o.marco73 View Post
          The error is "uncaught exception: The easy array function library has expired. Download a new copy".
          The downloaded copy of thee "easyarray.efslib is the last of Alexis Montenegro and still saved correctly into Function library folder.
          What 's the problem ?
          thank you

          Comment


          • #6
            Thank you Alexis ,
            I will try today and let you know the result .
            Thank in advance ...

            Marco O.
            Last edited by o.marco73; 02-07-2013, 10:01 AM.

            Comment


            • #7
              Nothing to do , still not working,
              In any case we have solved changed the EFS , removing the Easy array function .
              thanks in any case
              Last edited by o.marco73; 02-10-2013, 11:17 PM.

              Comment


              • #8
                Marco,

                I wrote my own version of ezArray. I cannot guarantee that it is perfect, only that it is free to use and comes with no encryption or expiration date. Change it to suit your needs. [It worked as a drop-in replacement in my scripts for what I was using AM's version for.]

                Code:
                function ezArray(value, size, tag)
                {
                  if (typeof _ezArray == 'undefined')
                  {
                    _ezArray = {};
                  }
                
                  if (typeof _ezArray[tag] == 'undefined')
                  {
                    _ezArray[tag] = new Array(size);
                    _ezArray[tag][0] = value;
                  }
                  else
                  {
                    _ezArray[tag].unshift(value);
                    _ezArray[tag].pop();
                  }
                
                  return _ezArray[tag];
                }

                Comment

                Working...
                X