Newgrounds.com — Everything, By Everyone.

Checking login status…

USERNAME:

PASSWORD:

Logging in…

Logged in as:
.
Logging out…
Inbox My Account Log Out


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: 'West-End-Pro'

We found 2,359 matches.


<< < > >>

Viewing 1-30 of 2,359 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94479

1.

None

Topic: Unreliable coders.

Posted: 09/06/08 01:57 PM

Forum: Flash

Its so tempting to work with you just to quit.


2.

None

Topic: AS3: Using addChild through a class

Posted: 09/06/08 01:33 PM

Forum: Flash

At 9/6/08 01:11 PM, Moonkey wrote: How are you using this Test class?

Is it your document class?

Are you creating a new Test and doing addChild on that?

Im just importing the class, and creating a new instance of it..

import classes.*;

var test:Test = new Test();

I don't really have an idea of what a document class is, so explain please.


3.

None

Topic: AS3: Using addChild through a class

Posted: 09/06/08 12:10 PM

Forum: Flash

Hi,

I've just began playing around with OOP in AS3, and I've hit a snag at adding movieclips though a class onto the stage. At the moment, I'm trying:

package classes
{
import flash.display.MovieClip

public class Test extends MovieClip
{
function Test()
{
var box:box_link = new box_link();
box.x = 100;
box.y = 200;

addChild(box);
}
}
}

but nothing happens. No errors, no MC appearing on the stage, anything. I've tried loads of different things for the addChild, i.e. stage.addChild, parent.addChild, this.addChild etc, but none work.

I'm sure theres something blatently obvious that I'm missing out, but I have no idea what it is, so help please?

Thanks,
Tom


4.

None

Topic: what would you want in a tutorial?

Posted: 09/03/08 02:51 PM

Forum: Flash

a tutorial.


5.

None

Topic: My Favorites! Wow!

Posted: 09/03/08 02:49 PM

Forum: Flash

At 9/3/08 11:45 AM, muffinman9 wrote:
At 9/3/08 11:40 AM, Prid-Outing wrote: Hi!

Today i have 300 in my movies & games Favorites! BEAT THAT!!!

See for yourself: http://prid-outing.newgrounds.com/favori tes/
I have 348! 181 movies and 167 games on my favs

Sorry, but I have to say this:

lul, owned.


6.

None

Topic: Next button problem

Posted: 08/25/08 09:09 AM

Forum: Flash

try:

_root.nextFrame();


7.

None

Topic: Code not working

Posted: 08/21/08 06:09 AM

Forum: Flash

At 8/21/08 06:04 AM, Skulsta wrote: Hey it works now! What was I doing wrong please tell me.

You weren't closing you're curly brackets.


8.

None

Topic: AS3 finding MC's on stage

Posted: 08/20/08 04:39 PM

Forum: Flash

At 8/20/08 04:32 PM, GustTheASGuy wrote: Ever thought of like making your own array?

I have. But I didn't want to. If I have loads of MC's on the stage then it would take too much time to add them in ^^.

Anyway, I want to find out how to do it this way.


9.

None

Topic: AS3 finding MC's on stage

Posted: 08/20/08 04:12 PM

Forum: Flash

Hi,

I was wondering how to find all the movieclips on the stage using AS3, and a for..in loop. I know in AS2, you could just do:

for(var i:String in _root)
{
trace(_root[i]);
}

but they removed _root as far as i know. I have tried:

for(var i:String in stage)
{
trace(stage[i]);
}

but that fails miserably. Any ideas people?

Ta, Tom.


10.

None

Topic: removing movieclips problem

Posted: 08/03/08 04:00 AM

Forum: Flash

Try:

MC.swapDepths(12345678);


11.

None

Topic: Actionscript help

Posted: 08/01/08 05:44 PM

Forum: Flash

At 8/1/08 04:58 PM, Michael1000 wrote: oo i fixed it ; i changed *all the adds to + and it worked.

The person said:

"Flame" + index, instead of "Flame" add index.

Can't you read?


12.

None

Topic: Key.isnot Down

Posted: 07/19/08 04:57 PM

Forum: Flash

At 7/19/08 04:32 PM, andy70707 wrote: Then use onClipEvent (keyDown):

onClipEvent(keyDown){
_root.gotoAndStop ("youloose")
}else{
if (Key.isDown(65){
_root.gotoAndStop ("youwin")
}
}

Blatent code fail.


13.

None

Topic: laggy

Posted: 07/19/08 04:50 PM

Forum: Flash

At 7/19/08 01:53 PM, Dad00 wrote: dosent work :/

i2 = 1;

while(i2 < 2000){
// stuff
++i2;
}

Try reading through the code next time. I made a blatent mistake.


14.

None

Topic: laggy

Posted: 07/19/08 01:31 PM

Forum: Flash

At 7/19/08 01:24 PM, Dad00 wrote: im using this code

onClipEvent (enterFrame) {
for(i2=1;i2<2000;i2++){
if(this.hitTest(_root["enemy"+i2])){
_root["enemy"+i2].removeMovieClip();
}
}
}

Use a while loop instead of a for loop. Tis a hell of alot faster than a for loop in AS2.

i2 = 1;

while(i2 < 2000){
// stuff
++i;
}


15.

None

Topic: Flash 8 for flash

Posted: 07/18/08 03:05 PM

Forum: Flash

Why does the thread title say 'Flash 8 for flash'? D'you mean 'flash 8 for mac'? =p


16.

None

Topic: [as2] Hittest On Copypasted Mcs?

Posted: 07/16/08 02:34 PM

Forum: Flash

At 7/16/08 02:29 PM, IniX wrote:
onClipEvent(load){
if (this.hitTest(_root.ship1)) {
following = false
}
}

However, that doesn't work?

onClipEvent(enterFrame){


17.

None

Topic: Voice Actors Needed

Posted: 07/16/08 02:33 PM

Forum: Flash

Isn't there a voice acting club?


18.

None

Topic: Variables problem

Posted: 07/15/08 04:33 PM

Forum: Flash

At 7/15/08 04:23 PM, Louissi wrote: Is there a way to declare variables in functions but still use them in global?

Try:

_global.variableName = "blah";

Might work. Never personally tried it myself.


19.

None

Topic: scenes

Posted: 07/15/08 04:29 PM

Forum: Flash

At 7/15/08 04:28 PM, kylelyk wrote: on(release){
gotoAndStop(scene 2,2);
}

gotoAndStop("scene 2",2)


20.

None

Topic: wimbledon...

Posted: 07/06/08 04:31 PM

Forum: General

I hate nadal - Federer should of won.


21.

None

Topic: anything wrong with this hittest?

Posted: 07/06/08 01:13 PM

Forum: Flash

onClipEvent (load) {

should be

onClipEvent (enterFrame) {

and instead of '_root.this', have 'this'


22.

None

Topic: As: Circle To Shape Hittest

Posted: 07/03/08 02:24 PM

Forum: Flash

Instead of using a for loop, use a while loop. It runs far faster in AS2.


23.

None

Topic: Api Game

Posted: 06/29/08 04:15 PM

Forum: Flash

Using just API, that is truly awesome.


24.

None

Topic: One second delay?

Posted: 06/22/08 04:28 PM

Forum: Flash

Why the hell have you got a random for loop doing nothing?


25.

None

Topic: AS: Sorting Algorithms

Posted: 06/20/08 10:49 AM

Forum: Flash

Urgh...Just been doing this in VB at school.

Are you stalking me?

26.

None

Topic: Simple AS help :/

Posted: 06/16/08 10:47 AM

Forum: Flash

onEnterFrame = functionb():Void{
if(Key.isDown(Key.ENTER)){
_global.score++:
}
}

Should work just fine.

27.

None

Topic: Breakout tutorial

Posted: 06/15/08 03:14 PM

Forum: Flash

A quick search of google gives this


28.

None

Topic: As Comunicating With Php

Posted: 06/12/08 11:43 AM

Forum: Flash


29.

None

Topic: Booleans

Posted: 06/03/08 03:49 PM

Forum: Flash

Try making it a global variable. Long shot, but may work.

_global.contact = false;


30.

None

Topic: AS help :variables

Posted: 05/31/08 05:31 PM

Forum: Flash

At 5/31/08 05:00 PM, zrb wrote: That's pretty much the same thing I wrote, and you didn't even write his variable name right.
Thats right! I had to point that out xD

Oh well...Wasn't paying that much attention =p
And you had a head start on writing it over me =o


All times are Eastern Daylight Time (GMT -4) | Current Time: 07:09 PM

<< < > >>

Viewing 1-30 of 2,359 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94479