Archive for July, 2008
« Previous Entries1 vs. 6 on Territory War
A video showing 1 vs. 6 on Territory War.
July 28th, 2008 · Tags Online Games, Video | No Comments »
Covert Front Walkthrough
Here’s a walkthrough to Cover Front 1.
July 25th, 2008 · Tags Online Games, Video Guide | No Comments »
Moving a flash object
Moving an object in flash is easy, but it’s an essential part of learning flash and actionscript. So in this tutorial I will learn you how to move flash objects with the arrow keys. In this tutorial I only coded the right arrow, you must code the other arrows. You must paste the code in the movie clip you want to control. If you’re too lame to read the whole tutorial here’s the complete code. Just reading code can be more valuable than reading the whole tutorial, because in the end you must learn to understand the code not only what it does.:
onClipEvent (enterFrame) {
if(Key.isDown(Key.RIGHT))
{
this._x += 1;
}
}
To move an object over the x-axis you use:
this._x += 1;
1 is the speed, this._x is the position on the x-axis of the object where the action scrip is in and += is the operator for add.
To capture mouse input you use:
if(Key.isDown(Key.RIGHT))
{
this._x += 1;
}
Key.isDown(Key.RIGHT) checks if the right key is down. So if you change it to Key.LEFT it will check for the right key.
But before you can add this code to a symbol you have to put onClipEvent (enterFrame) { around it, it makes sure it will run every time the frame passes:
onClipEvent (enterFrame) {
if(Key.isDown(Key.RIGHT))
{
this._x += 1;
}
}


July 23rd, 2008 · Tags Tutorial | No Comments »
Galves adventure alternate ending
Here’s a walkthrough to Galves Adventure’s second solution.
July 20th, 2008 · Tags Online Games | No Comments »
Feudalism Glitch
A video showing a glitch for Feudalism.
July 19th, 2008 · Tags Online Games, Video, Glitch | No Comments »
Free Rider 2: Street map
An awsome Free Rider 2 street course.
July 13th, 2008 · Tags Online Games, Video, Free Rider 2 | No Comments »
Watch South Park online legally!
I stumbled upon a website hosting south park episodes online and they weren’t working. So I was wondering if it was possible to see South Park on the South Park website and it turns out you can watch South Park episodes on the South Park website. So if you want to have some fun and watch South Park online. Then go to southparkstudios.com and click on the full episodes button.

July 11th, 2008 · Tags Video | No Comments »
Boxhead zombie wars: Welcome to hell
A boxhead zombie wars tactic video, doing defend mode on welcome to hell.
July 10th, 2008 · Tags Online Games, Video, Boxhead zombie wars | No Comments »
June most popular games
It’s time again for the most popular games of last month. We’ve been seeing a drop in popularity over the month in our site. So actually most of the top games have less visitors than last month. Just one surprising game entered the list.

Free rider 2 is the most popular game of June. Has been on the list for 3rd month already and this time it’s number one. I don’t have much to add to it than I did in those posts. Line Rider is just a better game than Free rider, we don’t have Line Rider on our site. Don’t know why but we don’t lol
.

Uphil rush had been leading this list for already two months. It’s finally time for Uphil Rush to make place for another game. I could see this game drop out of this list in maybe two moths or less. I don’t like this game so I’m glad if some other nice games take the place of Uphil Rush.

Super Smash Bros is the big surprise this month. I think the flash game is not really good and it’s just a game for the people who don’t have a Wii, gamecube or N64. Well still you can have some fun but the options are too limited for me. The percentages are really fast so you die very fast and you kill very fast. Also on some moments you get damage but it doesn’t seem obvious.

Feudalism dropped two spots compared to last month. It’s a complicated strategy world conquering game, not really what you would expect from a flash game. So if you like strategy games, this might be the game for you.

Max dirt bike, for two months already it’s sitting on number 5.
July 7th, 2008 · Tags Online Games, Most Popular Games | No Comments »
Meet the Moon
Meet the Moon is an awesome flash video by GodamnDawg. You can watch it here on DeviantFlash by reading the full article or by going to Newgrounds.
Read the rest of this entry »
July 5th, 2008 · Tags Video | No Comments »




















