litl SDK Preview: device features & AS3 events
litl has posted some of their new device features and AS3 event structure they are currently developing:

Preview mapping of litl device UI Controls/Views to AS3 events in the litl SDK
I love the animations, more OEMs need to do this.
| AS3 Events that Map to Device Views ** | ||
| The litl webbook flipping from Laptop to Easel mode: | service.addEventListener(ViewChangeMessage.VIEW_CHANGE, handleViewChange); | Additional object data will include view NAME and SIZE. |
| The litl webbook flipping from Easel to Laptop mode: | service.addEventListener(ViewChangeMessage.VIEW_CHANGE, handleViewChange); | |
| A channel is launched from Card View on the home screen: | service.addEventListener(ViewChangeMessage.VIEW_CHANGE, handleViewChange); | Additional object data will include view NAME and SIZE. |
| In Easel mode, the scroll wheel is moved up: | service.addEventListener(UserInputMessage.WHEEL_NEXT_ITEM, handleWheelNext); | |
| In Easel mode, the scroll wheel is moved down: | service.addEventListener(UserInputMessage.WHEEL_PREVIOUS_ITEM, handleWheelPrevious); | |
| In Easel mode, the Go Button is pressed, held and released: | service.addEventListener(UserInputMessage.GO_BUTTON_PRESSED, handleGoPressed); service.addEventListener(UserInputMessage.GO_BUTTON_HELD, handleGoHeld); service.addEventListener(UserInputMessage.GO_BUTTON_RELEASED, handleGoReleased); |
|
| The HDMI port of the litl webbook is engaged with an HDMI cable: | service.addEventListener(ViewChangeMessage.VIEW_CHANGE, handleViewChange); | Additional object data will include view NAME and SIZE. |
| ** = subject to change in final SDK | ||
If you’re interested in developing for the litl, you can sign up for entry into their private beta.