I have a file I am saving out in php that is just a txt file that has an array in it like this:
array (
0 =>
array (
'key' => 0,
'cropBounds' =>
array (
'x' => 73,
'y' => 111,
'bottom' => 269,
'width' => 176,
'height' => 158,
'top' => 111,
'topLeft' =>
array (
'cropBounds' => 73,
'x' => 111,
),
'bottomRight' =>
array (
'cropBounds' => 249,
'x' => 269,
),
'size' =>
array (
'cropBounds' => 176,
'x' => 158,
),
'left' => 73,
'right' => 249,
),
),
)
Then I am trying to bring it back into flash as an array. I have tried things like "as array" but that doesn't work. Can someone point me in the right direction for converting this "string" from a txt file into an array in flash?