Announcement

Collapse
No announcement yet.

anybody have an idea ?

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

  • anybody have an idea ?

    This seems way to simple but I'm having a problem solving this one...even though I did have it working at one point. Each time I run this file...I get the following error...

    line 43: Type Error : myUpArray[upsuccess] has no properties.

    Any ideas would be much appreciated !!!
    Attached Files

  • #2
    It is a simple one. You declared your variable myUpArray as an array with 5 elements (e.g., 0 through 4). The first 5 slots fill up with no errors. Problem arises when the sixth iteration takes place and it tries to put data into the array associated with myUpArray[5], which does not exist.


    Chris

    Comment

    Working...
    X