hehe nice
that was some good stuff dude ima goto site im adding your shit to my favs too.hey pleese respond what drawing pad do you use. and hopw long have you been in flash???
Filters may affect review visibility.
hehe nice
that was some good stuff dude ima goto site im adding your shit to my favs too.hey pleese respond what drawing pad do you use. and hopw long have you been in flash???
I'm going to add your comment to my favs. No wait, I can't. Oh well. :)
I use a cheap Wacom and I've used Flash for a couple of years.
really nice drawings
real nice drawings.sound-old them song?im a big fan of lupin butn now i never getta see it what time is it on cartoon network now??there all mixed up now
can you give
i really really like that music for some reason whenever its showing that tv thing
can you sned it to me at roberthorner50@msn.com
humm
How did you make the as for using the keys to move
ok, first, make a picture and convert it to a movie clip. Call it car. Then right click on the clip and copy these actions into it:
onClipEvent (enterFrame) {
_root.speed = speed;
_root.mph = Number(speed)*2;
_root.mph -= _root.mph%1;
if (_root.mph<1) {
_root.mph = 1;
}
if (Key.isDown(Key.UP)) {
speed += 2;
}
if (Key.isDown(Key.DOWN)) {
speed -= 1;
}
if (Math.abs(speed)>20) {
speed *= .7;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 14;
}
if (Key.isDown(Key.RIGHT)) {
_rotation += 14;
}
speed *= .98;
x = Math.sin(_rotation*(Math.PI/180))*speed;
y = Math.cos(_rotation*(Math.PI/180))*speed*-1;
if (!_root.boundary.hitTest(_x+x, _y+y, true)) {
_x += x;
_y += y;
} else {
speed *= -.6;
}
}
onClipEvent (enterFrame) {
if (this._x> 600) {
this._x = -50;
}
}
onClipEvent (enterFrame) {
if (this._y> 450) {
this._y = -50;
}
}
onClipEvent (enterFrame) {
if (this._x <-50) {
this._x = 600;
}
}
onClipEvent (enterFrame) {
if (this._y <-50) {
this._y = 450;
}
}
If you want more help, goto flashkit.com and goto tutorials, then games, then on page 5 the how to make GTA like movement. MUST HAVE FLASH MX
Age 35, Male
Camdenton,MO
Joined on 3/27/03