Skip to main content
Inspiring
December 9, 2010
Question

Creating an AIR application that connects to Adobe Connect

  • December 9, 2010
  • 2 replies
  • 798 views

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

    This topic has been closed for replies.

    2 replies

    DHMerrittAuthor
    Inspiring
    March 25, 2011

    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.

    Participating Frequently
    December 21, 2010

    Hey Dimitri - The Adobe Connect server has an XML API that you can use to access any data on the server.  You can also make changes to the server (create/delete users, change meeting settings, access content, etc).  You can find documentation about the XML API here: http://help.adobe.com/en_US/connect/8.0/webservices/index.html

    For the record, there is a Adobe Connect AIR application that let's you do many of the administrative tasks from your desktop already (create meetings, view recordings etc).  It's available here: http://www.connectusers.com/downloads/