FFILES.COM NEWS SUBMIT A FILE REGISTER CONTACT
username:
password:
register | login help
Pending listings (7)

Index of an Array Element

Buy and sell flash files
Previous overall listing: Flash Logo Design Previous in ActionScript: bezier curve Next overall listing: rewind Next in ActionScript: rewind

Function for finding the index of an array element

user manikk Author URL no website
Listing URL none
Downloads 902 Views 10742
manikk  

User ratings for Index of an Array Element.

Donate Add to favorites Subscribe to comments
Report listing
Download

More listings by manikk

rewind
rewind

Comments

You need to LOGIN to post a comment.
user squadjot
squadjot: 3 years ago

Nice, heres s short version =)

function getIndexOf(d:Array, val:Number):Number{
for (i=0; i<=d.length-1; i++) if (d[i] == val) return i;
}