You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey.
as3-msgpack relies on flash.utils.getQualifiedClassName to discover the type of each object.
and, aparently, this function returns int when a number stores an integer value.
check the following test:
var input:Number=1.0;trace("getQualifiedClassName returns "+ getQualifiedClassName(input));
the output is
getQualifiedClassName returns int
but if you change the test to use non-integers, the value returned is Number.
so far i don't know how to handle this problem. need to find another way to evaluate the class of an object.
No description provided.
The text was updated successfully, but these errors were encountered: