 |
Beginning Authorware training
Intermediate Authorware training
Building Database- and LMS-Driven Authorware Applications training
Mastering Director MX 2004
Please contact us
for GSA pricing.
Contract #
GS-35F-0307T

Complimentary Adobe Authorware Training Seminar
Organizations in the Atlanta, Georgia area are encouraged
to contact Accelebrate® about having a complimentary, one-hour Adobe Authorware
seminar delivered for their developers. Contact
us today for more information.

Recent Training Venues
Accelebrate has recently trained for clients in the following cities:
- Huntsville, Alabama
- Montgomery / Birmingham, Alabama
- Anchorage, Alaska
- Calgary, Alberta
- Phoenix, Arizona
- Fayetteville / Little Rock, Arkansas
- Oakland / San Jose / San Francisco, California
- Oceanside / San Diego, California
- Pasadena / Orange County / Los Angeles, California
- San Bernardino / Riverside, California
- Boulder / Colorado Springs / Denver, Colorado
- Washington, DC
- Wilmington, Delaware
- Manchester / London, England
- DeLand / Orlando, Florida
- Fort Lauderdale / Miami, Florida
- Gainesville / Jacksonville, Florida
- Saint Petersburg / Tampa, Florida
- Titusville & Melbourne, Florida
- Alpharetta & Atlanta, Georgia
- Augusta & Savannah, Georgia
- Macon & Columbus, Georgia
- Bloomington, Illinois
- Chicago, Illinois
- Indianapolis, Indiana
- Cedar Rapids / Des Moines, Iowa
- Dublin, Ireland
- Kingston, Jamaica
- Wichita, Kansas
- Paducah / Lexington / Louisville, Kentucky
- Baton Rouge, Louisiana
- Valletta, Malta
- Hagerstown & Frederick, Maryland
- Greenbelt / Silver Spring / Baltimore, Maryland
- Boston / Cambridge, Massachusetts
- Hartford, Connecticut / Springfield, Massachusetts
- Taunton, Massachusetts / Providence, Rhode Island
- Ann Arbor / Farmington Hills / Detroit, Michigan
- Grand Rapids, Michigan
- Lansing, Michigan
- Saginaw / Flint / Bay City / Midland, Michigan
- Saint Paul / Minneapolis, Minnesota
- Jackson, Mississippi
- Gulfport / Biloxi, Mississippi
- Whiteman Air Force Base / Kansas City, Missouri
- Reno and Las Vegas, Nevada
- Santa Fe / Albuquerque, New Mexico
- Newark, New Jersey
- Princeton, New Jersey & Philadelphia, Pennsylvania
- White Plains / New York City, New York
- Charlotte, North Carolina
- Durham / Raleigh, North Carolina
- Bowling Green / Toledo, Ohio
- Cincinnati, Ohio
- Cleveland & Columbus, Ohio
- Tulsa / Oklahoma City, Oklahoma
- Toronto, Ontario
- Portland, Oregon
- Pittsburgh, Pennsylvania
- Providence, Rhode Island
- Edinburgh / Glasgow, Scotland
- Columbia & Charleston, South Carolina
- Memphis / Jackson / Nashville, Tennessee
- College Station and Houston, Texas
- El Paso, Texas / Ciudad Juarez, Mexico
- San Antonio / Austin, Texas
- Wichita Falls & Dallas, Texas
- Ogden / Salt Lake City, Utah
- Burlington, Vermont
- Fairfax / Dulles / McLean / Herndon / Reston, Virginia
- Richmond / Alexandria / Arlington, Virginia
- Virginia Beach / Norfolk, Virginia
- Tacoma / Seattle, Washington
- Madison / Milwaukee, Wisconsin
|
 |
 |
Building Database- and LMS-Driven Authorware Applications Training
|
Course Number: 486
Duration: 3 days
view class outline
Authorware Training Overview
Most organizations store their learners' information and much of their course content in Learning Management Systems (LMS) and other databases. In this course, attendees learn a variety of techniques for integrating LMS systems and databases with their Authorware applications.
Important Notes
- We would be delighted to customize this Authorware training class to the specific database or LMS systems your organization is using.
- Only Authorware 7 has built-in LMS connectivity. If you are using an earlier version of Authorware and don't wish to upgrade, we can teach a proprietary approach.
- One section of this Authorware training class deals with integrating Authorware with your database via a middle-tier application written in ColdFusion, Java/JSP, ASP, ASP.NET, PHP, or another language. We would be delighted to teach this section using your preferred language.
Location and Pricing
Most Accelebrate courses are taught on-site at our clients' locations worldwide for groups of 3 or more attendees and are customized to their specific needs. Please visit our client list to see organizations for whom we have recently delivered training. To receive a customized proposal and price quote, please contact us.
In addition, some courses are available as live, online classes for individuals. To see a schedule of online courses, please visit http://www.accelebrate.com/online_training/adobe.htm.
Authorware Training Prerequisites
Beginning Authorware and Intermediate Authorware, or equivalent experience. Provided these prerequisites are met, this course can be customized to any level of programming and database experience.
Hands-on/Lecture Ratio
This Authorware training class is 70% hands-on, 30% lecture, with the longest lecture segments lasting for 15 minutes. Students "learn by doing," with immediate opportunities to apply the material they learn to real-world problems.
Authorware Training Materials
All students receive an illustrated course workbook developed by Accelebrate, related courseware, and a CD-R copy of the files they create during the class.
Software Needed on Each Student PC
- Authorware 7.02 or later (earlier versions taught upon request, but many key features referenced below will not be available)
- An LMS and/or database system (please contact us to discuss your specific systems — we can accommodate virtually all leading LMS/database systems with ease)
Note: Some additional software setup and configuration, which we can assist you with, will be required depending on your specific goals and requirements. Please contact us to discuss your particular needs.
Authorware Training Objective
- To learn how to integrate Authorware applications with LMS systems and databases
|
Authorware Training Outline
- Introduction
- Overview of approaches to be taught
- ODBC (Open Database Connectivity)
- Connection with a database via a middleware application on a Web server
- LMS integration via the LMS (Initialize) and LMS (Send Data) Knowledge Objects
- SQL review (taught if attendees aren't familiar with Structured Query Language or would like a refresher)
- Discussion of typical database structures for storing questions, learner profiles, assessment data, and other key e-learning information
- Creating and dropping tables
- Using SELECT to retrieve records from the database
- Basic SELECT statements
- Selecting records from multiple tables
- Logic operators
- LIKE clauses and wildcards
- Using INSERT to create new records
- Using UPDATE to change records in the database
- Using DELETE to remove records from the database
- Using ODBC for Authorware-database integration
- Origins of ODBC
- Basic ODBC architecture
- Advantages of ODBC
- Ubiquitous on Windows
- Support for most Windows databases
- Disadvantages of ODBC
- Obstruction by firewalls
- Inability to connect to file databases (Access, Paradox, etc.) across a network
- Connection to a database other than SQL Server or Access requires a DSN (Data Source Name) to be registered on the user's computer
- ODBC.u32 as a solution for database connectivity
- Using ODBCOpen() to connect to a database for which a DSN is available
- Using ODBCOpenDynamic() to connect to Access and SQL Server databases without need for a DSN
- Executing SQL statements via ODBCExecute()
- Closing the database connection via ODBCClose()
- Using ODBCHandleCount() to troubleshoot database connection issues
- Building common database-driven applications
- User login
- Save assessment data to the database
- Retrieve assessment data from the database
- Retrieve questions and answers from the database
- Store learner progress in the database
- Integrating with databases via Web server-based middleware applications (Note: By default, this section uses Microsoft Active Server Pages [ASP] as the middleware language. However, this class can be easily modified to use ASP.NET, ColdFusion, Java servlets, JSP, PHP, Perl, or another server-side language)
- Advantages of using Web server-based middleware applications
- Less prone to firewall difficulties
- Doesn't require loading of drivers or creation of ODBC DSNs on the user's system
- Ability to make the client application "thin," with business logic residing on the Web server
- Flexibility to create multiple front-ends (including Web-based front-ends in HTML) to the same application
- Database does not have to be exposed directly to the Internet (or, for intranet-based courses, your intranet)
- Disadvantages of using Web server-based middleware applications
- Necessity of writing a Web server-based middleware application (takes additional time, requires additional programming skills)
- Sending data from the Authorware client application to the server takes a little more work than the ODBC approach
- Deciding which tasks should be handled by the Authorware client and which should be handled by the middle-tier Web application
- Using a "dumb" middle tier versus a "smart" middle tier
- Elegant design via Model-View-Controller (MVC) architecture
- Preparing data for transmission
- Assembling a query string
- Encoding the query string via URLEncode()
- Submitting data to the server
- Via ReadURL()
- Via PostURL()
- Retrieving and processing results from the server
- Building common database-driven applications using a Web-based middle tier
- User login
- Save assessment data to the database
- Retrieve assessment data from the database
- Retrieve questions and answers from the database
- Store learner progress in the database
- LMS integration
- The role of LMS systems in learning management and modern e-learning applications
- E-learning-related tasks commonly handled by LMS systems
- Overview of relevant standards
- AICC-LAN
- AICC-HACP
- ADL/SCORM
- Setting up the Authorware LMS Emulator (if you're developing in an environment where you don't have immediate access to an LMS)
- Using the LMS (Initialize) Knowledge Object to initialize a connection to an LMS
- Entering variable names (core data)
- Entering variable names (other data)
- Setting Resume preferences
- Setting LMS preferences
- Using the LMS (Send Data) Knowledge Object to send assessment results and other information from Authorware to the LMS
- Configuring which data to track and pass to the LMS
- Controlling how the data is preprocessed
- Sending the appropriate exit command to the LMS after transmitting the tracking data
- Using the Authorware Learning Object Content Packager to package a learning object for deployment to an LMS
- Using the Authorware Learning Object Metadata Editor to configure all the metadata for a learning object being deployed to an LMS
- Conclusion
- Topics for further learning
- Suggested approaches for further learning
|
| |
|
 |
Accelebrate®
Comes to You! |
 |
Accelebrate's courses are taught exclusively on-site at your location for groups of 3 or more attendees, anywhere worldwide.
Don't settle for a "one size fits all" public class! Have Accelebrate come to your site and deliver exactly the training you want, for less than the cost of a public class.
For pricing and to learn more, please call us at +1 877 849 1850, fill out our information request form, or email us at info@accelebrate.com today.

|
 |
|
| |
| Accelebrate E-Newsletter |
 |
Get the latest Web development news delivered to your email box once a month!

|
 |
|
|
 |