Author Archives: Raúl

as3isolib Isometric Library

i’m going to start a personal project using an isometric view, and i just find about as3isolib
it´s a very useful library that could help you in building your own isometric game.
i uploaded already a few examples on GitHub, and i will continue uploading more examples on the road.
http://github.com/rauluranga/as3isolib-demos-bundle
you can find more info here and here.
cheers!

Posted in AS3, General | Leave a comment

Playing with GitHub!

i started learning how GitHub works and created a new project http://github.com/GrupoW;
Learning git it’s a little bit more complicated than SVN, and if you are in MAC, installing it is another history! (you can go to this page for little help)
I´m going to start porting all the GrupoW googles repository to GitHub, yes……… i could [...]

Posted in General | Tagged , | Leave a comment

Weakreference + Robotlegs

yesterday i was wondering why i just couldn’t get the eventMap.mapListener to work as expected.
in my mediator class i have the next code:

1
2
3
override public function onRegister():void {
eventMap.mapListener(view, CustomEvent.CLICK, onClick);
}

the onClick handler never happens… (using Flash CS4)
but if i change that line to this:

1
view.addEventListener(CustomEvent.CLICK, onClick)

it works!
it also works with:

1
eventMap.mapListener(view, CustomEvent.CLICK, onClick ,CustomEvent,false,0,false);

after two hours of [...]

Posted in General | Leave a comment

Getting started with Robotlegs

i want to share all these links with you, helps you to start playing with RobotLegs from the very begining.

http://www.robotlegs.org/

Best Practices Documentation
MVCS Class and Flow Diagram
Robotlegs Internals (draft)
Robotlegs Framework on Github
Robotlegs Examples on Github
Hello World video tutorial
RobotLegs and FlashIDE
Zend AMF + RobotLegs
Playing with robotlegs modular
Robotlegs Diagram
Robotlegs beginner Q&A

Robotlegs FDT Templates
Shaun Smith (founder)
Joel Hooks [...]

Posted in AS3, RobotLegs | Tagged | Leave a comment

New ActionScript Editor!

i’ve been waiting this for months!!!
now the Realaxy Actionscript Editor (RASE) goes public beta
download and test it now!!
for more info, you can follow Den Ivanov’s blog.
cheers!

Posted in AS3, General | Tagged , , , | Leave a comment

WebFont Loader

Google’s new app WebFont Loader rocks!!, let`s you to add web fonts to your pages and
you don’t need to do any programming, just a basic knowledge of HTML & CSS (vary basic)
here’s a quick example:
just copy and paste the following code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Reenie+Beanie">
<style>
[...]

Posted in General | Tagged , | Leave a comment

Google Pacman

if you enjoy playing pacman on the Google´s homepage
go to github and download it!!
there’s a copy of Google’s playable Pacman game!
macek / google_pacman
cheers!

Posted in General | 2 Comments

Ooops!

sorry about the last days, we were trying to implement the new skin like GrupoW’s blog, but
we found some problems on the road….
so skin update will come later =(
Cheers!!

Posted in General | Leave a comment

Versions Tip

if you wonder how the heck you could do branching or tagging in Versions.app (SVN Client for Mac)
just go to your repository (not the working copy), then drag the folder you want to tag to it’s destination, fill in the resulting dialog.
cheers.

Posted in General | Leave a comment

Sound Manager

i been using the Sound Manager from Matt Przybylski
for a while and added some little updates:
first make it work with the latest TweenLite Framework and to do that, you just need to make these changes:

Posted in AS3 | Tagged , , | 1 Comment