Hello fellow flex coders, I'm wondering if anyone ran into the same situation as I have. I'm working on a flex/php project using amfphp for client/server communication.
Since I discovered the magnificent almighty Vector class available in flash 10, I'm using it in order to manipulate typed arrays. Nothing exceptional up till now but here comes the pickle. amfphp v1.9 does not handle vectors. Hence I cannot send Vectors without transcoding them to arrays, but this is not a sexy operation. Hence, I would like to modify at least the core.amf.io.AMFDeserializer class (and eventually the AMFSerializer class) so that it can handle arrays. I tried to add an additional case to the AMFDeserializer.readAMF3Data() function handling the vector type but I get an error. when not modifying the function, I get the following error : "undefined Amf3 type encountered: 16" 16 would be the value of the vector type. So I tried to add a case handling this value. I tried with 16 and it's hexadecimal value but in both case, I get the "undefined Amf3 type encountered: " but with a new number (usually 121 but I think it's random). Has anyone else tried to handle vectors ? how did you do it ? Best regards

