Avatar

Level 3

Just to simplify, I created another mobile project in 4.5 prerelease, this one is a  "supported" ActionScript only project, with the same results.  The code for the entire iphone project is below.  I'm including lccsFlash.swc (10.1 version).  Image of the result on the phone is attached (same as before).

The code is here:

private var debugtext:String;

private var auth:AdobeHSAuthenticator;

private var txtfld:TextField = new TextField();

private function myLccsTrace(debugStr:String):void{

debugtext += debugStr +

"\n";

txtfld.text = debugtext;

}

private function updateDebug(event:Event):void{

txtfld.text = debugtext;

}

public function ActionScriptMobile()

{

super();

// support autoOrients

stage.align = StageAlign.TOP_LEFT;

stage.scaleMode = StageScaleMode.NO_SCALE;

startConnect();

}

private function startConnect():void{

DebugUtil.traceFunction = myLccsTrace;

DebugUtil.suppressDebugTraces=

false;

debugtext +=

"Starting viewactivatehandler... \n";

debugtext +=

"Creating auth \n";

auth =

new AdobeHSAuthenticator();

auth.userName =

"Guest";

auth.requireRTMFP=

false;

cSession =

new ConnectSession();

debugtext +=

"Created ConnectSession \n";

cSession.authenticator = auth;

cSession.roomURL=

http://collaboration.adobelivecycle.com/MYACCT/MYROOM;

cSession.addEventListener(SessionEvent.SYNCHRONIZATION_CHANGE, updateDebug);

debugtext +=

"Trying login... \n";

cSession.login();

debugtext +=

"After login \n";

txtfld.width=800;

txtfld.height=1200;

txtfld.text = debugtext;

this.addChild(txtfld)

}

Same error as before.  Also, the "guk=" is from the LCCS code after the login(), I'm not adding any additional parameters, all the code is above.photo.PNG