README.textile

October 8, 2015 ยท View on GitHub

h1. Signals: Think Outside the Event.

Signals are light-weight, strongly-typed AS3 messaging tools. Wire your application with better APIs and less boilerplate than AS3 Events.

h2. Concept

h2. Syntax

// with EventDispatcher
button.addEventListener(MouseEvent.CLICK, onClick);

// Signal equivalent; past tense is recommended
button.clicked.add(onClicked);

I am still looking for impressions, critiques and suggestions.
My email is robert at robertpenner.com. I'm "@robpenner on Twitter":http://twitter.com/robpenner.

h2. Background on AS3 Events