Nice post! It's interesting that hardly anyone has chimed in that some programming language features make addressing this problem considerably simpler without forcing the programmer to write excess boilerplate. Objective-C delegation, JavaScript Proxies <a href="https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Proxy" rel="nofollow">https://developer.mozilla.org/en/JavaScript/Reference/Global...</a>, ClojureScript protocols all provide the machinery to make this kind of thing work without making the code too hard to reason about.
I really like the loosely coupled approach.<p>However, I think that sprinkling andro.eventer all over the place is a stumbling block to me - it's essentially a global variable.<p>I realise that you don't want to polute the objects too much, but why not just add bind and emit methods to the composed object? Either that or pass andro as a parameter to the mixin's setup method?<p>Also, the bind(this, "touch", function...) to me looks like you're binding to the "touch" event of "this". Is the closure tax really so high that you can't store "this", or use something like jQuery.proxy()?<p>Like I said, I think this approach has a lot of potential, and seems to fit quite naturally the eventful model that the DOM uses.