Avatar

Level 2

Hi,

I wrote code which connects to session and subscribe the sound:

var auth:AdobeHSAuthenticator = new AdobeHSAuthenticator();
auth.userName="xxx";

var session:ConnectSession = new ConnectSession();
session.roomURL="https://connectnow.acrobat.com/xxx/room/";
session.authenticator=auth;

session.login();

var asub:AudioSubscriber = new AudioSubscriber();
asub.connectSession = session;
asub.subscribe();

When I run it on the computer with AIR its work fine, But when I run it on the iPhone I can't hear the sound.

Why?

Thanks,

Eyal.