• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Creating an AIR application that connects to Adobe Connect

Participant ,
Dec 09, 2010 Dec 09, 2010

Copy link to clipboard

Copied

I would like to use Flash Builder to create an AIR application that will talk to Adobe Connect. Is there anywhere I can go in order to read up on how to do this?

Thank you

Dimitri

Views

427

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Mar 25, 2011 Mar 25, 2011

Copy link to clipboard

Copied

LATEST

Ok I figured this one out with help form Kapil (thanks Kapil).

Here are a few lines of code that is needed:

<s:HTTPService id="myPersonalInfo" fault="faultHandler(event) resultFormat="e4x" result"personalInfo(event)"/>

Then create a function e.g.

private function requestPersonalInfo():void{

domainUrl="your url.com";

personalInfoRequest="";

personalInfoRequest=domainUrl+api_xml_string;

personalInfoRequest+="common-info";

myPersonalInfo.url=personalInfoRequest;

myPersonalInfo.send();

}

private funtion personalInfo(event:ResultEvent):void{

personalName=event.result.common.user.name;

Username.text="Welcome" + personalName;

}

Thats it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines