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: 'kfc23456'

We found 123 matches.


<< < > >>

Viewing 1-30 of 123 matches. 1 | 2 | 3 | 4 | 5

1.

Angry

Topic: King of Fighter Sprites?

Posted: 10/03/09 11:16 PM

Forum: Flash

I LOOKED everywhere for Sprites of the king of fighters characters but i cant find any

can anybody help?


2.

None

Topic: Question About the Ad on my flash

Posted: 09/04/09 03:33 PM

Forum: Flash

am i supposed to use the actionscript 2 file that came with it?


3.

None

Topic: Question About the Ad on my flash

Posted: 09/03/09 07:17 PM

Forum: Flash

At 9/3/09 05:06 PM, Archon68 wrote: Follow This Tutorial:
http://www.newgrounds.com/portal/view/50 0735

i did everything right,but when i preview it i just see this

[NEWGROUNDS API] :: Connecting to API gateway...
http://www.ngads.com/gateway.php?&id=890 0&host=localhost&stat=1
[NEWGROUNDS API] :: You have successfully connected to the Newgrounds API gateway!
[NEWGROUNDS API] :: Movie Identified as 'Skeleton Revenge'


4.

None

Topic: Question About the Ad on my flash

Posted: 09/03/09 04:42 PM

Forum: Flash

At 9/3/09 12:30 AM, Luis wrote: You should see pico holding money if its working correctly. Are you sure you enabled them? and turned off debug mode and other options inside the api page?

Maybe take a screenie of your settings. The most common mistake people make is they left something off or one of your settings are wrong

i didn't touch anything i just activated name and flash ads
and where do i see Pico?


5.

Questioning

Topic: Question About the Ad on my flash

Posted: 09/02/09 11:16 PM

Forum: Flash

i don't understand i connected my flash to API and i activated Flash aDs
and i saved the movie

and when i see my flash in newgrounds it just says
our sponser
and the tank on the bottom

why is this?


6.

Questioning

Topic: Question about the Ad in my Flash

Posted: 09/02/09 11:05 PM

Forum: General

i don't understand i connected my flash to API and i activated Flash aDs
and i saved the movie

and when i see my flash in newgrounds it just says
our sponser
and the tank on the bottom

why is this?


7.

None

Topic: Need Help With As2

Posted: 07/24/09 02:11 PM

Forum: Flash

and inside the character i put another layer

on layer 1 i made him shoot a handgun
and on layer 2 i put a bullet movie clip coming out of the gun

then i named the bullet "bullet" (INSTANCE NAME)

then on the Square(enemy)

i put

onClipEvent (enterFrame)
if(this.hitTest(_root.bullet)){
this.gotoAndPlay(//death scene)
}


8.

None

Topic: Need Help With As2

Posted: 07/24/09 02:06 PM

Forum: Flash

see i put this code on my character

onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
_xscale = -175;
gotoAndPlay(16);
this._x -= 7;
} else {
if (Key.isDown(Key.RIGHT)) {
_xscale = +175;
gotoAndPlay(16);
this._x += 7;
} else {
if (Key.isDown(Key.SPACE)) {
gotoAndPlay(29);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Square)) {
this.gotoAndPlay(35);
_root.Lives -= 1;
}
}
onClipEvent (enterFrame) {
if (_root.Lives<0) {
_root.Lives = 0;
}
}


9.

None

Topic: Need Help With As2

Posted: 07/24/09 01:18 PM

Forum: Flash

At 7/24/09 12:44 PM, kfc23456 wrote: im trying to making a sprite shooter but theres a problem

i tried to make my character shoot bullets, but whenever the bullet touches the enemy the Player dies
the bullet is just another MC inside the Frame that motion tweens quickly across the screen and i tried giving the bullet a different instance name and using that, but it doesnt work

and so i can shoot multiple bullets i heRD yhu have to use linkage or _parent. and _child.

i need help because im making a flash and its starting to annoy me i need help ,n
i tried to put movie clips in 1 big movie clip


10.

Crying

Topic: Need Help With As2

Posted: 07/24/09 12:44 PM

Forum: Flash

im trying to making a sprite shooter but theres a problem

i tried to make my character shoot bullets, but whenever the bullet touches the enemy the Player dies
the bullet is just another MC inside the Frame that motion tweens quickly across the screen and i tried giving the bullet a different instance name and using that, but it doesnt work

and so i can shoot multiple bullets i heRD yhu have to use linkage or _parent. and _child.


11.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/23/09 12:58 PM

Forum: Flash

i have very little experience, but im good with Sprites and stuff i just suck in actionscript


12.

Misunderstood

Topic: I Need Help With Action Script 2.0

Posted: 07/22/09 08:35 PM

Forum: Flash

I still Need Help with the SHIFT problem on how when i hold a key it thinks i pressed it billions of times


13.

Mad as Hell

Topic: I Need Help With Action Script 2.0

Posted: 07/22/09 07:30 PM

Forum: Flash

At 7/21/09 06:55 PM, Super-Yombario wrote:
At 7/21/09 05:31 PM, kfc23456 wrote: i didn't copy and paste
The last thing you should EVER do when you want help is lie

i didnt copy and paste i got confused


14.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 05:31 PM

Forum: Flash

i didn't copy and paste i thought i understood ,but i didn't

thanks for the advice


15.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 05:20 PM

Forum: Flash

At 7/21/09 05:17 PM, Neo-13 wrote:
At 7/21/09 05:15 PM, kfc23456 wrote: this.gotoAndPlay(17) and (18);
Someone correct me if I'm wrong, but you can't do that, and why would you want to

i don't get any compiler errors but it doesn't work either
i did it because when i hold left Yoshi stays in one frame and moves around the screen standing without moving his feet


16.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 05:15 PM

Forum: Flash

At 7/21/09 04:16 PM, El-Presidente wrote:
At 7/21/09 03:42 PM, kfc23456 wrote: whne i put var ; bool it says syntax error
then when i put the key shift thing i was told to put it kept saying syntax error
It's var bool : Boolean, not var ; bool. Also, post the errors, and the script you have.

CODE ON FRAME:
stop();
hp = 100;
energy = 2000;
enehp = 100;
eneenergy = 2000;

CODE ON CHARACTER
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
_xscale = -200;
this._x -= 15;
this.gotoAndPlay(17) and (18);
_root.energy -= 1;
} else {
if (Key.isDown(Key.RIGHT)) {
this._x += 15;
_xscale = 200;
this.gotoAndPlay(17) and (18);
_root.energy -= 1;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.SPACE)) {
if (_root.energy>20) {
this.gotoAndPlay(30);
}
_root.energy -= (20);
} else {
if (Key.isDown(Key.SPACE)) {
_root.energy++;
this.gotoAndPlay(46);
}
}
}
onClipEvent (load) {
if (_root.energy<0) {
_root.energy = 0;
}
if (_root.hp<0) {
_root.hp = 0;
}
}


17.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 03:42 PM

Forum: Flash

whne i put var ; bool it says syntax error
then when i put the key shift thing i was told to put it kept saying syntax error


18.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 02:22 PM

Forum: Flash

it doesn't work i keep getting a bunch of compiler error


19.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 01:36 PM

Forum: Flash

At 7/21/09 01:27 PM, El-Presidente wrote:
At 7/21/09 12:20 PM, kfc23456 wrote: i need some more help. when i hold a KEY like SHIFT Flash says that when i hold it its like im repeatly pressing SHIFT how can i make it so no matter how long i hold shift flash counts it as 1 key press?
You could have a boolean that can only be used once when the key initially goes down and resets when you release the key, or some sort of onKeyDown listener that checks (don't remember my AS2 functions, but I'm pretty sure that was how it worked).

thats confusing... you mean like

if(Key.isDown(Key.SHIFT)){
False;
}

or something like that
because its really frustrating


20.

Sad

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 01:14 PM

Forum: Flash

this is the code i used

hp = 100;
energy = 2000;
enehp = 100;
eneenergy = 2000;
if (_root.energy<0) {
_root.energy = 0;
}
if (_root.hp<0) {
_root.hp = 0;
}


21.

Sad

Topic: I Need Help With Action Script 2.0

Posted: 07/21/09 12:20 PM

Forum: Flash

i need some more help. when i hold a KEY like SHIFT Flash says that when i hold it its like im repeatly pressing SHIFT how can i make it so no matter how long i hold shift flash counts it as 1 key press?


22.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/20/09 08:07 PM

Forum: Flash

i see thanks mr sir
it kind of helps
another thing i need help because i need a way for him to flip horizantaly using action script

never mind i got it


23.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/20/09 07:52 PM

Forum: Flash

At 7/20/09 07:14 PM, Neo-13 wrote:
At 7/20/09 06:23 PM, SoulBot wrote: Pretty simple. And to make a movieclip go off screen when something reaches zero, just put something like

_root.movieclipname._x = -500;
_root.movieclipname._y = -500;
A much better way is to actually remove it. One method could be removeMovieClip(mc); , where mc is the instance name of your movie clip.

i see thanks mr sir
it kind of helps
another thing i need help because i need a way for him to flip horizantaly using action script


24.

Shouting

Topic: I Need Help With Action Script 2.0

Posted: 07/20/09 06:39 PM

Forum: Flash

At 7/20/09 06:23 PM, SoulBot wrote: just have conditions that make sure it never reaches below zero... just put something like:

if( variable < 0)
variable = 0;

Pretty simple. And to make a movieclip go off screen when something reaches zero, just put something like

_root.movieclipname._x = -500;
_root.movieclipname._y = -500;

where movieclipname is just the name of your movie clip, -500 is an arbitrarily large negative number, and _x and _y are the x and y coordinates of the movieclip.

what is your experience in programming? are you just starting with flash?

i started long ago but then stopped and forgot everything, as for the conditions i did that and as soon as i started the movie the variable was 0 when i put (variable)=100;
and it still went to negatives


25.

None

Topic: I Need Help With Action Script 2.0

Posted: 07/20/09 05:59 PM

Forum: Flash

The lines on Yoshi Are his scars (if you saw my first flash)


26.

Misunderstood

Topic: I Need Help With Action Script 2.0

Posted: 07/20/09 05:52 PM

Forum: Flash

im trying to make an RPG and im practicing and stuff,but i don't know how to make my variables stay at 0 when it reaches zero like when my character loses health it doesn't go off to -(blank) and when i put
if(_root.(variable) <1){
_root.(variable)=0
}
it starts off with 0

and i want to make it so when my character does reach 0 health to go to a frame where he dies

I Need Help With Action Script 2.0


27.

None

Topic: Yoshi lovers

Posted: 07/15/09 02:29 PM

Forum: General

At 7/8/08 04:34 PM, kfc23456 wrote: my favorite yoshi game is yoshi's island for the gameboy advance
i like the black yoshi
my favorite move is the ground pound

well now i like Yoshi's story for the Nintendo 64


28.

None

Topic: I Need Help With Action Script

Posted: 07/05/09 08:51 PM

Forum: Flash

At 7/5/09 08:38 PM, Woadraiders wrote: Well if he's running backwards then just move him the opposite way you're moving him now..?

When his health is <= 0 then make him play his death animation

no its not a movie
it's a game and whenever i press the left arrow key he stays in 1 frame and runs backwards


29.

None

Topic: I Need Help With Action Script

Posted: 07/05/09 08:19 PM

Forum: Flash

And Another Question....when my players health reaches zero how am i supposed to put it so he dies???


30.

None

Topic: I Need Help With Action Script

Posted: 07/05/09 08:14 PM

Forum: Flash

At 7/5/09 07:43 PM, Woadraiders wrote: Use the ASCII number.

http://www.jimprice.com/ascii-0-127.gif

if(Key.isDown(90))
{
//Z key pressed
}

ok thanks ,but i have no solution for the running problem


All times are Eastern Standard Time (GMT -5) | Current Time: 07:10 PM

<< < > >>

Viewing 1-30 of 123 matches. 1 | 2 | 3 | 4 | 5