Hi,Windows XPstandalone DEBUG flash player 9.0 r115 ---> ERRORstandalone
DEBUG flash player 9.0 r151 ---> ERRORstandalone DEBUG flash player 10.0
r12 ---> ERRORstandalone flash player 10.0 r12 ---> ERRORstandalone
flash player 9.0 r115 ---> ERRORi am using COCOMO SWC for flash player
9here is the code that i use: import
com.adobe.rtc.authentication.AdobeHSAuthenticator; import
com.adobe.rtc.events.SessionEvent; import
com.adobe.rtc.pods.simpleChatClasses.SimpleChatModel; import
com.adobe.rtc.session.ConnectSession; private var _auth :
AdobeHSAuthenticator; private var _session : ConnectSession; private
function init():void{ _auth = new AdobeHSAuthenticator; _auth.userName =
"user_name"; _auth.password = "password"; _session = new
ConnectSession;_session.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE,syncChange);
_session.addEventListener(SessionEvent.ERROR, sessionError);
_session.authenticator = _auth; _session.roomURL = "room_url";
info.text+="start cocomo\n"; _session.login(); } private function
sessionError(e : SessionEvent) : void { info.text+="SESSION ERROR
>"+_session.isSynchronized+"\n"; } private function syncChange(e :
SessionEvent) : void { info.text+="sync change >
"+_session.isSynchronized+"\n"; } I compile
this code with Flex Builder 3.0.194161once built, if I run the SWF
directly, I get an error(SessionEvent.ERROR)the HTML version works
properly (ConnectSession syncronized)wh...