So I am learning more into AS and need some Ideas for projects (vary easy for me to learn if I use it in something) So post some type of vary simple programe or vary simple game and I will get working and post it here. (made in flash)
Weevil
08-15-2005, 02:40 PM
hey, im not sure if your familiar with physics in flash.. but this is way cool.
http://www.illogicz.com/flash5/physicsengine/
thats one of the coolest things ive seen in flash.
or maybe you could design a game on something like this?
http://www.izpitera.ru/lj/tetka.swf
maybe drop something ragdoll esque and get points when it lands in certain zones.
Gryphon
08-15-2005, 02:50 PM
Hah, #2 is painfully fun.
Stang
08-15-2005, 06:14 PM
Arms arent suppose to turn that way :eek:
Well i was thinking about physics and that thing said theirs was in OOP so i made one.
http://img198.imageshack.us/my.php?image=faller8rn.swf
Nothing but code for that.
Object.prototype.setClass = function (Class) {
this.constructor = Class;
this.__proto__ = Class.prototype;
};
Faller = function (Ground) {
this.Ground = Ground;
this.velocity = 0;
};
Faller.prototype = new MovieClip();
Faller.prototype.onEnterFrame = function() {
this.velocity++;
this._y += this.velocity;
if (this._y>=this.Ground) {
this._y = this.Ground;
this.velocity *= -1;
}
};
this.createEmptyMovieClip("triangle", 1);
with (triangle) {
_x = 150;
_y = 10;
beginFill(0xaaaaaa, 100);
lineStyle(2, 0, 100);
moveTo(0, -10);
lineTo(10, 10);
lineTo(-10, 10);
lineTo(0, -10);
endFill();
}
triangle.setClass(Faller);
triangle.constructor(500);
Weevil
08-16-2005, 02:23 PM
now, you must make a game where you are a giant hammer, who must smash nails. and when the nails get hit, they explode in blood and rust.
and your really hammering the nails into a human! a giant!
....yea....