IExternizable is an ActionScript interface that allows (and requires) a class to override built-in AMF serialization
Questions tagged [iexternalizable]
7 questions
2
votes
1 answer
AS3 - Problems with IExternalizable
So, i've been working with ByteArrays a lot recently and i'm running into some annoying problems that make me want to rip my hair out.
basically, i'm trying to save project data for an application that i'm making to compile characters for a game…

dyxribo
- 33
- 5
1
vote
2 answers
IExternalizable (as3)
has anyone used the IExternalizable interface? ...
I have a fundamental question. When I haved serialized my object ... and have saved as a file .... and now I wants to make some changes in the class ... e.g. add an attribute ... I can not…

Maurice Raguse
- 4,437
- 2
- 29
- 46
1
vote
3 answers
Casting an object using 'as' returns null: myObject = newObject as MyObject; // null
I am trying to create a custom object in AS3 to pass information to and from a server, which in this case will be Red5. In the below screenshots you will see that I am able to send a request for an object from as3, and receive it successfully from…

John Russell
- 1,115
- 1
- 15
- 30
0
votes
2 answers
BlazeDs serialization of Java objects
I have a few Java classes that implements Serialization, and corresponding AS objects (self-generated by GAS) that implements IExternalizable.
There is no problem receiving objects from the server, but when I try to send objects to the server - it…

Assaf
- 788
- 2
- 9
- 23
0
votes
1 answer
How to save Objects to File (AS3 / Air)
What I want?
Save my Project in a Editor created with Air Application
What is to save?
1 Object -> Type ArrayCollection -> Contains -> Objects from own classes...
What was my first try?
var stream :FileStream = new…

Maurice Raguse
- 4,437
- 2
- 29
- 46
0
votes
1 answer
Flex: Unexpected leakage with RemoteObject + IExternalizable?
I've been tinkering with IExternalizable, but I've noticed some unexpected behavior. I've got this class:
public function readExternal(input:IDataInput):void {
input.readObject();
input.readObject();
input.readObject();
}
public…

David Wolever
- 148,955
- 89
- 346
- 502
0
votes
1 answer
How to deal with data inconsistency? AS3 IExternalizable.readExternalData + sqlstatement.execute()
I do AS3 Air development and use SQLite to store objects in between sessions which is well documented in the AS3 Developer Guide as well as the AS3 SDK Reference.
The classes stored in the database implement IExternalizable so that the instances can…

Morten Gorm Madsen
- 81
- 1
- 3