Skip to content
impaler edited this page Feb 19, 2012 · 2 revisions

Welcome to the As3-Bloom wiki!

As3 Bloom GUI is a light weight user interface framework for developers. Project aims;

  • Use a simple but powerful api
  • Support a theme system for developers to have unique looking components
  • Maintain component classes that are easy to understand / modify and extend

Using Bloom 1.x is easy with a minimum of two lines of code;

This line sets up the theme all components will use for default eg.ColorTheme.

ThemeBase.setTheme(new ColorTheme());

Create a Hello World Test Button that will automatically add itself to the display object you tell it to eg."this"

var button:Button = new Button(this, "I'm a Button");

More examples inside https://github.com/impaler/As3-Bloom/tree/master/examples

Clone this wiki locally