Be a Supporter!
Response to: All Fads Die!!! 5!!! Posted December 9th, 2005 in Game Development

*double post*
shit, i wish i read what everyone else was doing, i thought i was being original. damn.

Response to: All Fads Die!!! 5!!! Posted December 9th, 2005 in Game Development

what do you think of this short, im interested in joining this so i made this lil' animation

Response to: Starting a studio! Posted December 7th, 2005 in Game Development

i was like the first member or second member...logo guy

Response to: Starting a studio! Posted December 7th, 2005 in Game Development

double post lol. Are we ready to start a project? because i am in the process of writing a script for a 3 part story.

Response to: Starting a studio! Posted December 7th, 2005 in Game Development

Okay im feel ing incredibly lazyto go thru the posts so i was wondering...what new has happened who are the new members and sorry i was gone for a week and a half

Response to: Actionscript codes here! Posted November 21st, 2005 in Game Development

sorry,

Response to: As: Main Posted November 21st, 2005 in Game Development

much love, and bye love i mean sex plz

Response to: Foo Fighters Club Posted November 21st, 2005 in Clubs & Crews

Im gonna go see Foo Fighters live on the 4th december, lucky me

Response to: Whats better: Hentai or Porn? Posted November 21st, 2005 in General

At 11/21/05 08:56 AM, marchingtyrants wrote: Hentai is for kids like 7 or 8 year olds........

wtf...do you know what hentai is?!?!?!?

sick
Response to: Actionscript codes here! Posted November 21st, 2005 in Game Development

createEmptyMovieClip("Line",1);
Line.lineStyle(3,0x000000,100);
onMouseDown = function (){
Line.moveTo(_xmouse, _ymouse);

onMouseMove = function (){
Line.lineTo(_xmouse, _ymouse);}
}

onMouseUp=function(){
onMouseMove=null;
}
Can someone help me alter this script so that the weight of the line can be changed and the colour of the line can also be changed by a keystroke?

Response to: As: Main Posted November 21st, 2005 in Game Development

I was wondering if there was a way to alter the code for a Dynamic Display Application so that the brush weight and colour could be changed with a key stroke

Here is the original code
createEmptyMovieClip("Line",1);
Line.lineStyle(3,0x000000,100);
onMouseDown = function (){
Line.moveTo(_xmouse, _ymouse);

onMouseMove = function (){
Line.lineTo(_xmouse, _ymouse);}
}

onMouseUp=function(){
onMouseMove=null;
}

Response to: Dynamic Drawing Display in flash. Posted November 21st, 2005 in Game Development

I had an idea that a keystroke can alter the weight of the line and the colour e.g.
1-10 choose width
q-o choose colour
how would i code that

Response to: Dynamic Drawing Display in flash. Posted November 21st, 2005 in Game Development

its a simple code
createEmptyMovieClip("Line",1);
Line.lineStyle(3,0x000000,100);
onMouseDown = function (){
Line.moveTo(_xmouse, _ymouse);

onMouseMove = function (){
Line.lineTo(_xmouse, _ymouse);}
}

onMouseUp=function(){
onMouseMove=null;
}
But i want to alter the code so that the users to be able to change the size of the brush and the colour of the brush.

Response to: Dynamic Drawing Display in flash. Posted November 21st, 2005 in Game Development

dynaminc Drawing Application. My bad

Dynamic Drawing Display in flash. Posted November 21st, 2005 in Game Development

I am trying to create a Paint esque type of game. I already have the code for just a single colour single width DDD but i want it to be able to the ability to change and choose colours, width and be able to erase

Can anyone help

Response to: ActionScript Help Posted November 21st, 2005 in Game Development

I am still getting these errors
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 10: Statement block must be terminated by '}'
onClipEvent (enterFrame) {

**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 100: Syntax error.
}

Total ActionScript Errors: 2 Reported Errors: 2\
and me being a total noob when it comes to coding i dont know how to fix it

ActionScript Help Posted November 21st, 2005 in Game Development

I am trying to make a simple platform yet i am getting script errors, can someone help me fix them

This is the code

onClipEvent (load) {

jumping = true;
speed = 0;
maxmove = 15;
jump = 0;

}
onClipEvent (enterFrame) {}

if (_root.dead) {

this.gotoAndStop("dead");

} else {

speed *= .85;
if (dir == "right") {

if (speed>0) {

dir = "right";

} else if (speed<0) {

dir = "left";

}
if (dir == "right"){

this._x += speed;
_root._x -= speed;

}
if (dir == "left") {

this._x += speed;
_root._x -= speed;

}
if (Key.isDown(Key.LEFT)) {

if (speed>-maxmove) {

speed--;

}
this.gotoAndStop("run");
this._xscale = -100;

} else if (Key.isDown(Key.RIGHT)) {

if (speed<maxmove) {

speed++;

}
this._xscale = 100;
this.gotoAndStop("run");

} else if (speed<1 && speed>-1) {

speed = 0;
this.gotoAndStop("idle");

}
if (Key.isDown(Key.UP) && !jumping) {

jumping = true;

}
if (jumping) {

this.gotoAndStop("jump");
this._y -= jump;
jump -= .5;
if (jump<0) {

falling = true;

}
if (jump<-15) {

jump = -15;

}

}
if (_root.ground.hitTest(this._x, this._y, true) && falling) {

jump = 12;
jumping = false;
falling = false;

}

}

}

Thanks

Response to: Rotoscoping Posted November 21st, 2005 in General

At 11/21/05 02:39 AM, Parralax wrote:
At 11/21/05 02:38 AM, EagleRock wrote:
At 11/21/05 02:35 AM, Parralax wrote: Im interesting in doing some rotoscoping, but i need to find a breakdance video to download. help
http://video.google...mp;btnG=Search+Video


I had looked on Google smart ass but thanks for the link

How do you download it of google video

Response to: Rotoscoping Posted November 21st, 2005 in General

At 11/21/05 02:38 AM, EagleRock wrote:
At 11/21/05 02:35 AM, Parralax wrote: Im interesting in doing some rotoscoping, but i need to find a breakdance video to download. help
http://video.google...mp;btnG=Search+Video

I had looked on Google smart ass but thanks for the link

Rotoscoping Posted November 21st, 2005 in General

Im interesting in doing some rotoscoping, but i need to find a breakdance video to download. help

Response to: Computer Trouble Posted November 21st, 2005 in Game Development

dont you need XP to work Flash 8?

Response to: Starting a studio! Posted November 20th, 2005 in Game Development

Normally I dont get involved in these things, but anyway, -Toast- why do you have to post again, it is usless and it doesnt get your point across, you sound like a little bitch. Was it worth spending probably an hour figuring out those 'clever' responses? Whats it to you anyway, if i want to make stuff for people, and i dont get paid and he does well boo-fucking-hoo i dont care about money, i just happen to like drawing. If you dont like it dont come back to this thread. Bye

if you are so poor maybe you should get a clever idea, or a job

Starting a studio!

Response to: Starting a studio! Posted November 20th, 2005 in Game Development

is PHP coding harder than HTML coding, i need to learn a couple codes, im learning Java and c++ but i dont know wich codes to pick

Response to: Newground Artist showcase thread Posted November 19th, 2005 in Game Development

well seeing how i cant get any feedback on my alien design (2nd post) what do people think of this little loop
In The Corner Films

Response to: Starting a studio! Posted November 19th, 2005 in Game Development

I think we should go for In the Corner films, Definantly the best logo *cough i thought of it *cough*

Response to: Starting a studio! Posted November 19th, 2005 in Game Development

tomorowz, it is 2 am here

Response to: Starting a studio! Posted November 19th, 2005 in Game Development

Animated Prodigal sons

Obvously too much time on my hands
boydo i love this quoty thingy!

Starting a studio!

Response to: Starting a studio! Posted November 19th, 2005 in Game Development

the animation or the freaky name one

Response to: Wacom Tablet Posted November 19th, 2005 in Game Development

How much did it cost ya, i want one

wishes he had a tablet
Response to: Starting a studio! Posted November 19th, 2005 in Game Development

Because i have done the impossibly, crappily.

still can't do quote thingy.

Starting a studio!