Description
Puts an object into Action Script.
Syntax
FlashPlayer.putObject(name, value)
Parameters
Returns
Nothing
Example
var obj = new Object;
obj.value = "string";
obj.name = 1.24;
FlashPlayer.putObject("_root.obj", obj);
Notice: The "_root.obj" must have been defined as an object in Action Script explicitly.