Getting started with Robotlegs
i want to share all these links with you, helps you to start playing with RobotLegs from the very begining.
- 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 (colaborator)
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!
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>
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
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!
cheers!
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!!
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.
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:
mm.cfg file!
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/
GrupoW + Github!
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
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.
