How to send dictionary in as3

Options
tuananh4689
edited September 2014 in Flash (deprecated)
I send data type Dictionary to server but server get error "Unexpected data received"

This is my code
var dictDR:Dictionary = new Dictionary();
dictDR[0] = "aaa";

var arr:Array = [];
arr[0] = dictDR;

photon.sendOperation(0, arr);

Please help me, thank all.

Comments