Binds the variables
FlashPlayer.bindData("_level0.playerName",
"_level0.score");
To get the value of the variables from Action Script
FlashPlayer.updateData(); score.playerName = FlashPlayer._level0.playerName; score.score = FlashPlayer._level0.score;
To update the value of the variables in Action Script
FlashPlayer._level0.playerName = score.playerName; FlashPlayer._level0.score = score.score; FlashPlayer.updateData(false);