A few things, now that I'm running again (I downgraded to the older beta).
I'm now pounding my head against new limitations that I'd not seen before, now that the Client class that I'm using is not in the presents.client package. Macromedia can go fuck themselves with a hot poker. The .swf is already 200k and I've barely begun working on UI elements. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3972 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
package com.threerings.presents.client {
|
||||
|
||||
import mx.collections.IViewCursor;
|
||||
import mx.collections.ListCollectionView;
|
||||
import mx.collections.ArrayCollection;
|
||||
|
||||
import com.threerings.util.SimpleMap;
|
||||
|
||||
@@ -35,15 +35,6 @@ public class InvocationDirector
|
||||
_omgr = omgr;
|
||||
_client = client;
|
||||
|
||||
var subby :Object = new Object();
|
||||
subby.objectAvailable = function (obj :DObject) :void {
|
||||
gotClientObject(obj as ClientObject);
|
||||
}
|
||||
subby.requestFailed = function (
|
||||
oid :int, cause :ObjectAccessError) :void {
|
||||
gotClientObjectFailed(oid, cause);
|
||||
}
|
||||
|
||||
_omgr.subscribeToObject(cloid, new ClientSubscriber(this));
|
||||
}
|
||||
|
||||
@@ -364,7 +355,7 @@ public class InvocationDirector
|
||||
|
||||
/** All registered receivers are maintained in a list so that we can
|
||||
* assign receiver ids to them when we go online. */
|
||||
internal var _reclist :ListCollectionView = new ListCollectionView();
|
||||
internal var _reclist :ArrayCollection = new ArrayCollection();
|
||||
|
||||
/** The last time we flushed our listeners. */
|
||||
protected var _lastFlushTime :Number;
|
||||
|
||||
Reference in New Issue
Block a user