Loading an array from .txt file

Hello Kirupians!

I’m currently trying to figure out how to load an array from a .txt file into my flash presentation.
The point is that people need to be able to edit a list of products without needing the .FLA movie (or they will mess it up).

The .txt file looks as followed:


[["Company1","3"],["Brandname1","Productname1","Productname2","Productname3"],["Brandname2","Productname1","Productname2"]],
[["Company2","4"],["Brandname1","Productname1","Productname2"],["Brandname2","Productname1","Productname1"]]

And this is where I want it to be.
But I know I can’t just open a file and put it down there, so does anyone have a suggestion how to do this?


var LIST:Array = [
  *SHOULD BE IMPORTED HERE*
];

I would REALLY appreciate it.
Thanks a lot in advance,

Ferdi