Greetings,
I am very new at Flashembed, but I was wondering:

Regarding this example:
flashembed("flash", "my_object.swf", {
/*
a JSON-based configuration variable.
enter the modern world of Flash configuration!
*/
my_param: {
my_array: [1, 2, 3],
hello: 'Hello world'
}
});

How can I access lets say the second item in the array?
in Flash I have this code:
var parameters:String= root.loaderInfo.parameters["my_param"];
which traces out a String as shown above
{"my_array":[1,2,3],"hello":"Hello world"}
So far I have to use String as otherwise Flash IDE gives me errors.
I thought it was easy like parameters.my_array[1] or
parameters.hello but no matter what I've tried so far, I cannot trace out what for example the second item in the array is from "my_array"
or what sits inside of the "hello" parameter.

I know I can always split the string or object so thats not really a problem in the end. I am just wondering if there is "direct" access to the things mentioned above.

I've searched the web, but either I don't use the correct terms or any else reason, I just can't solve this.
Thank you being patience with my most likely obvious question.
Any help is very welcome. Thank you.