You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'archeris'

We found 65 matches.


<< < > >>

Viewing 1-30 of 65 matches. 1 | 2 | 3

1.

None

Topic: It's a Boy!

Posted: 07/31/09 07:40 PM

Forum: NG News

At 7/25/09 09:45 PM, danicos wrote: Congratualtions Tom!
Remember, the prenup is your best friend!
Dont leave home without it!

Suck my dick you fucking asshole. Why do you care about Tom anywyas? Only because that fucking nerd created newgrounds?


2.

None

Topic: It's a Boy!

Posted: 07/15/09 10:59 AM

Forum: NG News

No it won't.


3.

None

Topic: It's a Boy!

Posted: 07/07/09 01:50 PM

Forum: NG News

At 7/4/09 01:21 AM, rockymeet wrote: Awesome Tom. my best wishes always with you. and what are you going to name him.

You stupid dumb fuck, can't you see that a hundred people asks him the same question and he don't gives a fuck answering in it???


4.

None

Topic: It's a Boy!

Posted: 06/30/09 08:50 PM

Forum: NG News

Seriously, why the fuck you people care about Tom? Only because he created newgrounds? Someone go ahead and make a new thread about your baby, no one will fuck care, because you are not popular. Fuck you Tom, suck your baby's dick.


5.

None

Topic: Post-Comic-Con News

Posted: 07/31/08 08:44 AM

Forum: NG News

What, no porn? Please make more pictures like this, I really like than two boys are hugging each other :)


6.

None

Topic: Little As help..

Posted: 07/25/08 01:41 PM

Forum: Flash

Hey, thank you very much for help :) Know it's really simple but i was forgot how use it on main scene.


7.

Resigned

Topic: Little As help..

Posted: 07/25/08 11:02 AM

Forum: Flash

What actionscript should I put to my movie clip last frame, that when this movieclip reaches the last frame, it gotoAndPlays my main Scene's "x" frame?


8.

None

Topic: AS3: Counter

Posted: 07/21/08 08:37 PM

Forum: Flash

At 11/10/07 09:50 AM, LilFugitive wrote:
At 11/10/07 07:38 AM, GustTheASGuy wrote: Also your code is not indented. Give it more thought whydoncha.
I thought that it would auto-format, sorry

Hey, your the same level and aura as I am :D


9.

None

Topic: As3: Rotate And Shoot To Mouse

Posted: 07/21/08 08:13 PM

Forum: Flash

Hey, can someone please make a post to this tutorial, about how to make the same of this, how to shot at mouse click, but without any child adds, everything with symbols. Well I will begin...
Draw a triangle,convert it to mc, give instant name "triangle". Draw a bullet, do the same thing as with the triangle just give an other instant name "shot". Put this actionscript at the first frame.

var xd:Number;
var yd:Number;
var radAngle:Number;
var size:int = 2;
var shotSpeed:int = 10;

function mcFunction(event:Event):void {
xd = triangle.x-stage.mouseX;
yd = triangle.y-stage.mouseY;
radAngle = Math.atan2(yd, xd);
triangle.rotation = int(radAngle*360/(Math.PI*2)-90);
}

stage.addEventListener(Event.ENTER_FRAME , mcFunction);

function shootShot(event:MouseEvent):void {
var shot:Sprite = new Sprite();
with (shot.graphics) {
lineStyle(1, 0x000000, 1);
beginFill(0x1E1E1E, 0.5);
moveTo(-size/5,-size);
lineTo(size/5,-size);
lineTo(size/5,size);
lineTo(-size/5,size);
lineTo(-size/5,-size);
}
addChild(shot);

shot.x=triangle.x;
shot.y=triangle.y;
shot.rotation = triangle.rotation;
shot.addEventListener(Event.ENTER_FRAME, moveShot);
}
function moveShot(event:Event) {
with (event.target) {

x+= shotSpeed*Math.sin(rotation*(Math.PI/180 ));
y-= shotSpeed*Math.cos(rotation*(Math.PI/180 ));

if (x>=550||x<=0||y>=400||y<=0) {

event.target.removeEventListener(Event.E NTER_FRAME, moveShot);
this.removeChild(DisplayObject(event.tar get))
;

}
}
}
stage.addEventListener(MouseEvent.MOUSE_
DOWN, shootShot);

When you test it, you see that it uses a bullet which is an actionscripted sprite, not your mc..
var shot:Sprite = new Sprite();
with (shot.graphics) {
lineStyle(1, 0x000000, 1);
beginFill(0x1E1E1E, 0.5);
moveTo(-size/5,-size);
lineTo(size/5,-size);
lineTo(size/5,size);
lineTo(-size/5,size);
lineTo(-size/5,-size);
}
addChild(shot);

But if you'll delete that, there will be a bug on clicking. Try to click a few times on .swf file, you'll see that your shoting object restarts at the same point... Figure out what is wrong with it.


10.

None

Topic: As3: fl.controls

Posted: 07/21/08 07:12 PM

Forum: Flash

URL file isn't even working!


11.

None

Topic: AS3: Movement with Keys

Posted: 07/20/08 07:54 PM

Forum: Flash

Why do you add trace? It doesn't needs to use in any flash anyway.. It's jsut a some crappy As that isn't doing anything special. We can live happily without it.


12.

None

Topic: AS3: Dragging Objects

Posted: 07/16/08 08:45 PM

Forum: Flash

At 11/8/07 04:09 PM, DragonFruit-Rock wrote: no shit bitch everyon uses
on(press){
startDrag(this, true);
}
on(release){
stopDrag();
}
lol

Your right noob, but you know what i the difference between this, that this crappy script uses only in As2!


13.

None

Topic: Need Immediate As 2.0 Help!!!

Posted: 07/16/08 04:17 PM

Forum: Flash

onClipEvent (enterFrame) {
if (this.hitTest(_root.killenemy)) {
trace("Hit");
_root.enemy.gotoAndStop(2);
}

the trace this is tracing no hit at all, no window pops up or any thing, somebody please help, why isn't this working, keep in mind this is an animated enemy!

Second actionscript needs one more bracket at the end.


14.

None

Topic: As2 And As3

Posted: 07/12/08 01:59 PM

Forum: Flash

I see..


15.

Resigned

Topic: As2 And As3

Posted: 07/12/08 01:49 PM

Forum: Flash

I have a question, what is the difference between As2 and As3? Should I have to continue studying with 2nd as or learn the newest as version? Or should I study with both of them? And by the way, what is the point of as3, I mean why I can't give an action script on the symbol by using this?


16.

None

Topic: NG.Store update!

Posted: 07/01/08 09:45 AM

Forum: NG News

Get a life.


17.

None

Topic: Top entries from 06/30/2008!

Posted: 07/01/08 08:48 AM

Forum: P-bot's Postings

What does everyone think of these submissions?

I answer: all of them sucks, didn't even want waste my time on watching it.


18.

Angry

Topic: AS:3Dimensions-Basic

Posted: 05/16/08 04:22 PM

Forum: Flash

This post is retarded. There is no tutorial in here...


19.

None

Topic: Web in the flash

Posted: 04/07/08 07:32 AM

Forum: Flash

...84266+


20.

None

Topic: Help...

Posted: 01/19/08 08:02 AM

Forum: Flash

At 1/19/08 07:54 AM, Deathrow-cy wrote: Every time i add music to my flash, the music wont stop. Even if i add a stop action it doesnt stop. I just need some info on how to stop the music when the flash video is over or when i want it to.

Have you set a loop in your sound?


21.

Resigned

Topic: Web in the flash

Posted: 01/19/08 07:13 AM

Forum: Flash

Is it possible to add some web page in the flash, and every time that page updates, everything is gonna be repeated automatickly in the flash? Or to do this is required to get some online server?


22.

Angry

Topic: Ng Pass

Posted: 11/13/07 01:16 PM

Forum: General

12) naht? Wtf? Its not the right answer damn you!


23.

Expressionless

Topic: About flash icon..

Posted: 11/12/07 03:34 PM

Forum: Flash

Is there possible to change Flash file icon I mean wth some pickture or something?


24.

Elated

Topic: help!help!help!

Posted: 09/08/07 05:49 PM

Forum: Flash

:no

Your smart as a super dumb newb... xD


25.

None

Topic: I Need Help Makeing Good Games

Posted: 08/22/07 02:58 PM

Forum: Flash

:PLZ for the love of god tell me how to make good games

It takes a lot of time to make a good game. Visit this link, Im sure It will be helpful for you.. Just please don't send some of crap to Newgrounds. Study a lot first.


26.

None

Topic: help on flash 8

Posted: 07/13/07 09:35 AM

Forum: Flash

At 7/9/07 09:14 PM, Sinistermuffin wrote: on (press) {
startDrag (this);
}
on (release) {
stopDrag ();
}

Its much like archiris's script. but oh well

It's the same.


27.

None

Topic: My Flash Movie See Here

Posted: 07/10/07 11:45 AM

Forum: Flash

At 7/10/07 11:31 AM, Greth-of-choas wrote:
At 7/10/07 11:20 AM, archeris wrote: Who cares about your flash or what do you wanna show us with that?
k you are entitled to your own opinion.

What ever newb


28.

None

Topic: My Flash Movie See Here

Posted: 07/10/07 11:20 AM

Forum: Flash

Who cares about your flash or what do you wanna show us with that?


29.

None

Topic: AS3

Posted: 07/09/07 05:44 PM

Forum: Flash

Well thx for info. This was really helpfull to me.


30.

None

Topic: AS3

Posted: 07/09/07 04:11 PM

Forum: Flash

Well I have a one question to know do I have download Flash CS3.
What action script 3 is good for?


All times are Eastern Standard Time (GMT -5) | Current Time: 09:34 PM

<< < > >>

Viewing 1-30 of 65 matches. 1 | 2 | 3