WidgetFactory
WidgetFactory is an ActionScript API that makes building widgets easier.
Easier than what? Easier than the way Captivate gives you. Captivate has a Widget Template that it kindly copies and pastes into a Flash file for you when you go to File > New Project > Widget in Flash. Okay, so what does this template look like?
Uhhhh… Show ▼
Believe me when I say this is enough to make even an experienced programmer run to the hills, and this code is just to get the widget to start communicating with Captivate.
So how would the same widget done in WidgetFactory look?
1 2 3 4 5 6 7 | package { import widgetfactory.StaticWidget; public class MyWidget extends StaticWidget { } } |
In a word: Simpler. In a sentence: There’s a bit of setup involved, but in the end it’s simpler. Click here to learn how to set up WidgetFactory.

