Adobe
Products

Top destinations

  • Adobe Creative Cloud
  • Creative Suite 6
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • SiteCatalyst
  • Students
  • Elements family

Adobe Creative Cloud

  • What is Adobe Creative Cloud?
  • Design
  • Web
  • Photography
  • Video
  • Students
  • Teams
  • Enterprise
  • Educational institutions
  • Government

Design and photography

  • Photoshop
  • Illustrator
  • InDesign
  • Adobe Muse
  • Lightroom

Video

  • Adobe Premiere
  • After Effects

Web development and HTML5

  • Edge Tools & Services [opens in a new window]
  • Dreamweaver
  • Gaming [opens in a new window]

Adobe Marketing Cloud

  • What is Adobe Marketing Cloud?
  • Digital analytics
  • Social marketing
  • Web experience management
  • Testing and targeting
  • Media optimization

Analytics

  • SiteCatalyst
  • Adobe Discover
  • Insight

Social

  • Adobe Social

Experience Manager

  • CQ
  • Scene7

Target

  • Test&Target
  • Recommendations
  • Search&Promote

Media Optimizer

  • AdLens
  • AudienceManager
  • AudienceResearch

Document services

  • Acrobat
  • EchoSign [opens in a new window]
  • FormsCentral [opens in a new window]
  • SendNow [opens in a new window]
  • Acrobat.com [opens in a new window]

Publishing

  • Digital Publishing Suite

  • See all products
Business solutions

By business need

  • Digital analytics
  • Digital publishing
  • Document management
  • Media optimization
  • Social marketing
  • Testing and targeting
  • Video editing and serving
  • Web development [opens in a new window]
  • Web experience management
  • See all business needs

By industry

  • Broadcast
  • Education
  • Financial services
  • Government
  • Publishing
  • Retail
  • See all industries
Support & Learning

I need help

  • Products
  • Adobe Creative Cloud
  • Adobe Marketing Cloud
  • Forums [opens in a new window]

I want to learn

  • Training and tutorials
  • Certification [opens in a new window]
  • Adobe Developer Connection
  • Adobe Design Center
  • Adobe TV [opens in a new window]
  • Adobe Marketing Center
  • Adobe Labs [opens in a new window]
Download
  • Product trials
  • Adobe Flash Player
  • Adobe Reader
  • Adobe AIR
  • See all downloads
Company
  • Careers at Adobe
  • Investor Relations
  • Newsroom
  • Privacy
  • Corporate Social Responsibility
  • Customer Showcase
  • Contact us
  • More company info
Buy
  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers
  • Adobe Marketing Cloud sales [opens in a new window]
Search
 
Info Sign in
Why sign in? Sign in to manage your account and access trial downloads, product extensions, community areas, and more.
Welcome,
My Adobe
My orders
My information
My preferences
My products and services
Sign out
My cart
Privacy My Adobe
Adobe
Products Sections Buy   Search  
Solutions Company
Help Learning
Sign in Sign out Privacy My Adobe
Preorder Estimated Availability Date. Your credit card will not be charged until the product is shipped. Estimated availability date is subject to change. Preorder Estimated Availability Date. Your credit card will not be charged until the product is ready to download. Estimated availability date is subject to change.
Qty:
Purchase requires verification of academic eligibility
Subtotal
Promotions
Estimated shipping
Tax
Calculated at checkout
Total
Review and Checkout
Adobe Developer Connection / Adobe Connect Developer Center /

Building a multiple-question survey application for Adobe Connect 8

by Purnima Jain

Purnima Jain
  • Adobe

Content

  • Survey application features
  • How the Survey application was built
  • Where to go from here

Created

31 January 2011

Page tools

Share on Facebook
Share on Twitter
Share on LinkedIn
Bookmark
Print
Adobe Connectcollaboration
Was this helpful?
Yes   No

By clicking Submit, you accept the Adobe Terms of Use.

 
Thanks for your feedback.

Requirements

Prerequisite knowledge

Knowledge of ActionScript 3 and Flex is required to make the most of this article.

 

 

Additional required product:

Adobe Connect Collaboration Builder SDK

User level

Intermediate

Required products

  • Flash Player 10.1
  • Adobe Connect (Download trial)

Sample files

  • surveyswf.zip

This article describes a custom survey application that extends the functionality of Adobe Connect 8 for end users by providing a way to prepare and conduct surveys in meetings. The application, Survey.swf, was built using the Adobe Connect Collaboration Builder SDK, which includes SyncConnector.swc, an Adobe Flex component that enables synchronization of SWF files in Adobe Connect. After Survey.swf is loaded into an Adobe Connect Share pod, the host can initiate a multiple-question poll of all attendees.

Unlike a Poll pod, which can only pose one question at a time, Survey.swf can be configured, via XML, to pose multiple questions, including true/false, multiple-choice, and Likert scale style questions. This application can be used before the start of a seminar to get a better understanding of the participants' expectations or at the end of it to gather feedback.

Survey application features

The Survey application provides several features to support the creation, import, export, and execution of survey questionnaires:

  • Create survey: Once the application is loaded into a Share pod, the host has the option to create a new survey from scratch by composing a series of true/false, multiple-choice, and Likert scale questions (see Figure 1).
Creating a survey with various question types.
Figure 1. Creating a survey with various question types.
  • Import survey as XML: Instead of composing the survey questions during the meeting, the host can prepare a survey in XML format before the meeting starts and simply import the XML file during the meeting (see Figure 2).
Importing a survey in XML format.
Figure 2. Importing a survey in XML format.
  • Export Survey as XML: Once a survey has been created, the host can export it in XML and use it in future meetings and seminars. The export feature requires the Adobe Connect 8 Meeting Add-in, which enables the XML data to be saved locally as a file on the host's computer.

After the survey is initiated, or opened, all meeting participants have the opportunity to answer the questions and submit their responses. After completing the survey, the participants are presented with the survey results, which update automatically as each participant finishes until the survey is closed (see Figure 3).

The results of a sample survey.
Figure 3. The results of a sample survey.

How the Survey application was built

Survey.swf was created using Adobe ActionScript 3 and the Adobe Flex framework. It uses XML objects not only to save questions but also to store and communicate the results of the survey.

When a user submits his or her survey, the Survey.swf application must synchronize with the other instances of itself in the Adobe Connect meeting. Synchronization support is provided by the SyncConnector.swc library, part of the Adobe Connect Collaboration Builder SDK. This library must be included with the project files when the project is compiled for Adobe Flash Player.

To use the synchronization APIs, you create an instance of the SyncConnect object—for example:

<components:SyncConnector id="syncConnector"/>

On the application's creationComplete event, add event listeners for the SyncConnector object's CAUGHT_UP and SYNC_MSG_RCVD events:

syncConn.addEventListener(SyncSwfEvent.CAUGHT_UP,<caughtUpHandler>); syncConn.addEventListener(SyncSwfEvent.SYNC_MSG_RCVD,<syncMsgRcvd>);

In the CAUGHT_UP event handler, perform any tasks that are required immediately after the SWF loads. In the Survey application, for example, this handler ensures that any new participant entering the room is shown the questionnaire if a survey is already open.

The SYNC_MSG_RCVD event handler is invoked when new synchronization events are received. For example, in the Survey application, this event handler is triggered when a new survey is opened and sent to the attendees.

You can use syncConnector.dispatchSyncMessage to send an XML object or any string to other instances of the application loaded in the Share pod. For example, Survey.swf uses the following code to send the survey to all participants in the meeting:

syncConnector.dispatchSyncMessage "SendQuestions",SurveyQuestionsXML,false ;

The same mechanism is used to send the survey responses back to the host, so they can be parsed and added to the results in the survey's final report.

Where to go from here

The Survey application is a small example of what can be done using the Adobe Connect Collaboration Builder SDK. You can begin using the application as is to conduct surveys in your own meetings, or use it as inspiration for your own custom Adobe Connect application.

For more information, including details on how to test an application in Flash Builder without Adobe Connect, see Using the Adobe Connect Collaboration Builder SDK 2.0 (PDF, 204 KB).

Read other tutorials on the also Adobe Connect Developer Center.

Creative Commons License
This work is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License.

More Like This

  • Building a multiuser Sudoku contest game using the Adobe Connect Collaboration Builder SDK
  • Building a multiuser snake and ladder game using the Adobe Connect Collaboration Builder SDK
  • Creating a custom stamp for Adobe Connect 8
  • Saving data locally in a custom application for Adobe Connect
  • Integrating the Asterisk MeetMe audio conferencing service with Adobe Connect 8

Products

  • Adobe Creative Cloud
  • Creative Suite 6
  • Adobe Marketing Cloud
  • Acrobat
  • Photoshop
  • Digital Publishing Suite
  • Elements family
  • SiteCatalyst
  • For education

Download

  • Product trials
  • Adobe Reader
  • Adobe Flash Player
  • Adobe AIR

Support & Learning

  • Product help
  • Forums

Buy

  • For personal and professional use
  • For students, educators, and staff
  • For small and medium businesses
  • Volume Licensing
  • Special offers

Company

  • News room
  • Partner programs
  • Corporate social responsibility
  • Career opportunities
  • Investor Relations
  • Events
  • Legal
  • Security
  • Contact Adobe
Choose your region United States (Change)
Choose your region Close

North America

Europe, Middle East and Africa

Asia Pacific

  • Canada - English
  • Canada - Français
  • Latinoamérica
  • México
  • United States

South America

  • Brasil
  • Africa - English
  • Österreich - Deutsch
  • Belgium - English
  • Belgique - Français
  • België - Nederlands
  • България
  • Hrvatska
  • Česká republika
  • Danmark
  • Eastern Europe - English
  • Eesti
  • Suomi
  • France
  • Deutschland
  • Magyarország
  • Ireland
  • Israel - English
  • ישראל - עברית
  • Italia
  • Latvija
  • Lietuva
  • Luxembourg - Deutsch
  • Luxembourg - English
  • Luxembourg - Français
  • الشرق الأوسط وشمال أفريقيا - اللغة العربية
  • Middle East and North Africa - English
  • Moyen-Orient et Afrique du Nord - Français
  • Nederland
  • Norge
  • Polska
  • Portugal
  • România
  • Россия
  • Srbija
  • Slovensko
  • Slovenija
  • España
  • Sverige
  • Schweiz - Deutsch
  • Suisse - Français
  • Svizzera - Italiano
  • Türkiye
  • Україна
  • United Kingdom
  • Australia
  • 中国
  • 中國香港特別行政區
  • Hong Kong S.A.R. of China
  • India - English
  • 日本
  • 한국
  • New Zealand
  • 台灣

Southeast Asia

  • Includes Indonesia, Malaysia, Philippines, Singapore, Thailand, and Vietnam - English

Copyright © 2013 Adobe Systems Incorporated. All rights reserved.

Terms of Use | Privacy (Updated) | Cookies

Ad Choices