Hi guys,
Here is the piece of code which doesn't seem to work:
Code:
lang_array[i]['eng'] = english;
lang_array[i]['pol'] = polski;
lang_array[i]['de'] = deutsch;
trace(english);
trace(i);
trace(lang_array[i]['eng']);
the trace from this (it loops through 3 times)
Code:
This is a transcript..
0
undefined
This is a transcript2..
1
undefined
This is a transcript3..
2
undefined
further up in the code is this:
Code:
//added in to support multilingual transcripts
var lang_array:Array = [];
Any ideas why this is failing and the final trace doesn't output anything? I'm fairly new to AS so if you need more than what i've given let me know.
hope someone can help!