Example Widgets

From Chumby Wiki
Revision as of 09:21, 28 January 2010 by Unwiredben (Talk | contribs)

Jump to: navigation, search

Here are some Flash source (.fla) files for various types of widgets:

Here's the Virtual Keyboard used by the Control Panel:

Using Virtual Keyboard with FlashDevelop

(originally posted on the forums at http://forum.chumby.com/viewtopic.php?pid=27050#p27050 by "occasional")

Add the VirtualKeyboard.swf as an asset to your FlashDevelop project, then use this code to activate it:

[code] var keyboard:MovieClip = _root.attachMovie("keyboard.swf", "keyboard", _root.getNextHighestDepth()); keyboard.instance1.accept = function(s:String) {

       // this method is called when the user enters a string with the keyboard and hits return
       trace("user entered "+s);

} [/code]