Labs

It works in my machine!

Getting started with Robotlegs

with one comment

Robotlegs

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

once you understand all the wireup thing, you will notice that using RL is very easy.
did i mention that Robotlegs rocks?????

Written by Raúl

July 14th, 2010 at 11:19 am

Posted in AS3, RobotLegs

Tagged with

New ActionScript Editor!

without comments

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!

Written by Raúl

June 9th, 2010 at 11:37 am

Posted in AS3, General

Tagged with , , ,

WebFont Loader

without comments

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>
      body {
        font-family: 'Reenie Beanie', serif;
        font-size: 48px;
      }
    </style>
  </head>
  <body>
    <h1>Hello World!</h1>
  </body>
</html>

and you will see something line this

Hello World!

in deep:

here we add a stylesheet link to request the desired web font

1
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Reenie+Beanie">

here we style an element with our web font

1
2
3
4
body {
        font-family: 'Reenie Beanie', serif;
        font-size: 48px;
     }

so now you can see how easy is to use this new app!

for more info:

How to Use the Google Font Directory With WordPress
Getting Started
Google Font Directory

Written by Raúl

May 26th, 2010 at 12:30 pm

Posted in General

Tagged with ,

Google Pacman

with 2 comments

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!

Written by Raúl

May 26th, 2010 at 11:10 am

Posted in General

Ooops!

without comments

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!!

Written by Raúl

May 19th, 2010 at 5:45 pm

Posted in General

Versions Tip

without comments

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.

Written by Raúl

April 1st, 2010 at 5:26 pm

Posted in General

Sound Manager

with one comment

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:

Read the rest of this entry »

Written by Raúl

February 18th, 2010 at 6:31 pm

Posted in AS3

Tagged with , ,

mm.cfg file!

without comments

I’ve just found this incredible post by Jean-Philippe Auclair
about the mm.cfg file!

this two flasgs are just great!

TraceOutputBuffered = 1|0

and the :

AS3Verbose = 1|0

you can read all the features at: http://jpauclair.net/2010/02/10/mmcfg-treasure/

Written by Raúl

February 12th, 2010 at 5:29 pm

Posted in General

GrupoW + Github!

without comments

we juts start using github (social coding)

just in case you want to follow any of us,  here we are :

cheers!

RobotLegs and Flash IDE

with 2 comments

i was trying to find a solution for compiling Robotlegs from Flash IDE (CS3 or CS4)
and found two approaches:
the first one comes from Jesse Warden combining mxmlc & Flash CS4 or CS3 with GAIA Framework.
the second one (that i think is a lot easier) i found it at Helmut Granda post using XML configuration to initialize the injection from the SwiftSuspendersInjector, you can find more info here and in the SwiftSuspenders README file.

so, i tried the second one and here’s the Hello Flash example compiled from flash CS3

download here.

enjoy.

Written by Raúl

February 2nd, 2010 at 7:29 pm

Posted in AS3, General, RobotLegs

Tagged with , ,