For some reason this doesn't work. I have the connection light component on at the same time, so I know everything is set up right. Any help is most appreciated.

stop();
// Create a connection
client_nc = new NetConnection();
// Connect to the application
client_nc.connect("rtmp://flashcom.mysite.com/examples");
// Create a remote shared object
so = SharedObject.getRemote("changecubes", client_nc.uri, false);
// Connect to the shared object
so.connect(client_nc);
// Update all shared objects
so.onSync = function(list) {
_root.column8.cube1.gotoAndStop(so.data.column);
};
// fill the shared object with column8 info
so.data.column = _root.column8._currentFrame;

gamist