I been working with my WordPress theme and I got an plugin called “Dean’s Code Highlighter”
which makes it easier for you viewers to read any code.
The terms of use says that I have to make a post about me using it.
So here is a link:
Its called Geish
Here is an example of what the code will look like.
-
//Just a simple ActionScript code to make something move left and right with the arrow keys.
-
ball.onEnterFrame = function(){
-
if(Key.isDown(Key.LEFT)){
-
this._x-=2;
-
}
-
if(Key.isDown(Key.RIGHT)){
-
this._x+=2;
-
}
-
}
I will be posting some flash tutorials soon.
Meybe about how to make a highscore board…
Leave a comment