hi
so 'im using a whiteboard component with fcs 1.5
inthe component there is this code:
FCWhiteBoardClass.prototype.drawClear = function(nc) {
this.nc = nc;
if (this.nc.FCWhiteBoard == null) {
this.nc.FCWhiteBoard = {};
}
this.nc.FCWhiteBoard[this.name] = this;
this.so = SharedObject.getRemote(this.prefix + "whiteboard", this.nc.uri, true);
this.so.clear();
};
this.clearBtn.onRelease = function () {
this._parent.drawClear(_root.client_nc);
};
so i put a clearBtn mc on stage, but the sharedObject is not cleared...
while talking about whiteboard sharedobject problems, i also try to delete a permanent object created with the whiteboard, but i dont succeed...even after erasing it direct from server (rm my_so.fso) it still load when i open the whiteboard...help !
i really need help about this...thanks