My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

WidgetFactory is an ActionScript API for building Captivate widgets. Each type of widget (Static, Interactive, and Question) are represented as a Class. To build a certain type of widget, extend that widget's class. For example, to build a Static widget, you would create a class and have it extend StaticWidget. Like so:

package {

   import widgetfactory.StaticWidget;
 
   public class MyWidget extends StaticWidget {
   
      public function MyWidget ()
      {
          // Your constructor code here.
      }
   
   }
 
}

For more information, see:

- Official documentation
- The Widget King blog
Powered by Google Project Hosting