In local actionscript, if you have an object like:
o.x = 6;
o.y = -5;
Then send this object to remote server using amfphp, the object becomes
o[‘x’] = 6;
o[‘y’] = 4294967290;
This could be a bug…
7 sec read
In local actionscript, if you have an object like:
o.x = 6;
o.y = -5;
Then send this object to remote server using amfphp, the object becomes
o[‘x’] = 6;
o[‘y’] = 4294967290;
This could be a bug…