Ludum Dare 24 starts today

Developers: Ludum Dare, the 48-hour videogame development competition, starts today at 9PM EST when the theme for this weekend-long game hackathon is announced. I will be taking part of this fun contest for the first time, streaming the development process live at a Twitch.TV channel. I’ve wrote a few posts about what I plan on […]

Continue reading →

Android for ActionScript developers, part 2: Events and listeners

The first thing that made me pause when working with Java is discovering that it doesn’t have event listeners – at least not in the sense that I’ve come to expect based on my ActionScript experience. In ActionScript 3, you attach an event to an object like so: myObject.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown); protected function onMouseDown(e:Event): void { […]

Continue reading →