# Create list from dynamic array

**URL:** https://forum.kirupa.com/t/create-list-from-dynamic-array/165034
**Category:** Uncategorized
**Created:** [October 6, 2005, 11:50pm UTC](https://forum.kirupa.com/t/create-list-from-dynamic-array/165034 "2005-10-06T23:50:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![darylmeter](https://avatars.discourse-cdn.com/v4/letter/d/f19dbf/32.png) [@darylmeter](https://forum.kirupa.com/u/darylmeter)
#### Post date: [October 6, 2005, 11:50pm UTC](https://forum.kirupa.com/t/create-list-from-dynamic-array/165034/1 "2005-10-06T23:50:17Z")

</div>

Hi  
Im having trouble creating a list from my array results.  
I have my array being populated through flash vars  
file=tvv.flv, test.flv, video.flv

```auto
this.Array = new Array(_root.file);
this.Array = _root.file.split(", ");
totalvideos = this.Array.length;

for (var i=0; i<totalvideos; i++) {
filechecker = this.Array*;
}

```

Where filechecker is a text box on the stage, set to html + multiline

The only result is the last file in the array  
video.flv

Any ideas anyone?
