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

We found 126 matches.


<< < > >>

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

1.

None

Topic: Sonic sound file

Posted: 12/01/08 07:02 PM

Forum: Audio

Nice site but i think this is the first game he says that in im not really that much of a sonic fan to know


2.

None

Topic: Sonic sound file

Posted: 12/01/08 06:48 PM

Forum: Audio

Hey i was wondering if anyone had a sound clip of sonic saying GO from the new game sonic unleashed i would try to take it from the game but i dont have a console you know how he says it before he speeds up does anyone have that


3.

None

Topic: Rate My New Intro and maybe get one

Posted: 10/31/08 07:23 PM

Forum: Flash

Kool can u teach me me :)


4.

None

Topic: Rate My New Intro and maybe get one

Posted: 10/31/08 07:13 PM

Forum: Flash

Very cool though i thought the sparks from the explosion were gonna spell out something even if they didnt cool though very kool


5.

None

Topic: Main Character in A Game

Posted: 10/31/08 07:11 PM

Forum: Flash

I guess i just thought there was a specific code in the thing Also to zedd i know this is only in games and thats what im tring to do it
Also i guess your kinda right tank just thought it would be a little harder than that but i guess i can do the rest by myself Still though open to other comments about the action script


6.

None

Topic: Main Character in A Game

Posted: 10/31/08 07:01 PM

Forum: Flash

I'm kinda just getting started in actionscript and i always wanted to make a game of one of the various ideas i come up with everyday but i'm just getting started i found some tutorials for action scripts but i found nothing on an animation tutorial i just want to you know try it out with a game i come up with so many ideas and im sick of em just goin to waste so before i move on to the AS i need to know how to make good animations for the characters i know it may suck but you never know untill you try... plus i've been wanting to make a game every since i first came to newgrounds so im just getting the heart to do it


7.

None

Topic: Main Character in A Game

Posted: 10/31/08 06:50 PM

Forum: Flash

Hey i wont to make sure i got this whole main character idea down mostly about the animations
K First here's how i know to make an animation make one movie clip with the character standing another of him running(double click the movie clip and make him running in the frames) another of him jumping (same as running) and the last of him dying.
Then you make another movie clip (Parent clip) then put standing in first frame, running second, jumping third and dying fourth. That the way i learned it but i heard there was a code to go with it and i didn't know the As code
Question: can anybody tell me this AS code and if my way of animating is right? Also i have flash mx but i can get up to 8 though


8.

None

Topic: animations

Posted: 08/20/08 10:16 PM

Forum: Flash

I have enoug art skills for what im trying to do im saying though i have made the paernt clip but dont i need to seperate the frame 1 standing animation from the frame 2 running as on the tutorial


9.

None

Topic: animations

Posted: 08/20/08 09:10 PM

Forum: Flash

Hey i wanted to learn how to make animations on a movie clip so i can work on this tutorial Platformer
Does anyone know how to do the running and jumping animations and seperate them from the other animations?


10.

None

Topic: Typewritter effect problem

Posted: 08/13/08 07:45 PM

Forum: Flash

so you mean that where it sadi text="This is the typewiriter effect in action" put +newline+ after that?
K i did that and it still didnt go to a newline


11.

None

Topic: Typewritter effect problem

Posted: 08/13/08 07:29 PM

Forum: Flash

ok can u explain to me what this does?


12.

None

Topic: Typewritter effect problem

Posted: 08/13/08 06:24 PM

Forum: Flash

hey i just recently learned how to do the typewriter effect lthough there was one problem when i start the typing it ends abrputly where the dysamic text box ends so i wanna know how do i make it go to the next line i tried putting it on multi line but it dint work also heres the code

text = "This is the typewriter effect in action!";
l = text.length;
p = 1;
function spelltext() {
showtext = text.substring(0, p);
p++;
if (p == l+1) {
clearInterval(write);
}
}
write = setInterval(spelltext, 50);


13.

None

Topic: AS Script Problem

Posted: 07/31/08 07:22 AM

Forum: Flash

Hey im just getting use to action script and i started out trying to make a simple game of pong with this tutorial but there were some problems
it told me to make a paddle mc and a ball mc 2 dynamic tex box and some other stuff its called tutorial collab 08 if you wanna get deep with it but heres the code
dirx = -5;
diry = 5;
bad = 0;
good = 0;
cpuy = 0;

that part worked fine then comes this part

onEnterFrame = function () {
ball._x += dirx;
ball._y += diry;
if (_ymouse>164.3) {
if (_ymouse<546.3-you._height) {
you._y = _ymouse;
} else {
you._y = 546.3-you._height;
}
} else {
you._y = 164.3;
}
if (cpu._y<546.3-cpu._height) {
if (cpu._y>164.3) {
cpu._y += cpuy;
} else if (ball._y>cpu._y+cpu._height) {
cpu._y = 164.4;
} else {
cpu._y = 164.3;
}
} else if (ball._y<cpu._y) {
cpu._y = 546.2-cpu._height;
} else {
cpu._y = 546.3-cpu._height;
}

It said it wouldn't work and if i put a } on the end it would well it did but here come the part that didn't

if (ball._y<164.3+ball._height/2) {
ball._y = 164.3+ball._height/2;
diry *= -1;
}
if (ball._y>546.3-ball._height/2) {
ball._y = 546.3-ball._height/2;
diry *= -1;
}
if (ball._x>600-ball._width/2) {
bad++;
ball._x = 300;
ball._y = 300;
diry = 5;
dirx = 5;
}
if (ball._x<0+ball._width/2) {
good++;
ball._x = 300;
ball._y = 300;
diry = -5;
dirx = 5;
}
if (ball.hitTest(cpu)) {
if (ball._x>cpu._x-cpu._width) {
ball._x = cpu._x+ball._width/2;
dirx *= -1.1;
diry += -10+((ball._y-cpu._y)/4);
}
}
if (ball.hitTest(you)) {
if (ball._x<you._x+you._width) {
ball._x = you._x-ball._width/2;
dirx *= -1.1;
diry += -10+((ball._y-you._y)/4);
}
}
when i got to this t had some problems

Scene=Scene 1, Layer=Layer 1, Frame=1: Line 35: Syntax error.
}

yeah seemed simple enough but if i solved that more problems came up and if i gnored it and finished the tutorial it wouldn't work plz tell me is there a problem with the tutorial or is it something i messed up?


14.

None

Topic: Plz Help Problem

Posted: 07/30/08 09:20 PM

Forum: Flash

Yes it did so much thank you


15.

Crying

Topic: Plz Help Problem

Posted: 07/30/08 08:33 PM

Forum: Flash

I need some help it may be very simple but i just dont understand can some plz help me with variables
Lyk how do i know i put a variable in a dynamic text properly
how do i know it works?
What about the var in the dyanimc text box properties and the one in Actionscript its so confusing to me i've looked at many tutorials and i still do not understand i know this may be a lot of questions but please if someone could just answer a few i would be grateful


16.

None

Topic: Some help

Posted: 07/30/08 06:31 PM

Forum: Programming

iv'e been having this huge but what seems like basic problem i dont think its actionscripting thats why i put it up here but does anyone know how to make a variable in a dynamic text box


17.

None

Topic: Kinda a problem

Posted: 07/30/08 05:50 PM

Forum: Flash

hey im having a setback and a problem ive been looking on the internet and every turtorial i find says something different iand i just dont know how to do it . So can anyone please answer my question on
How do i set a variable in a dynamic text box?
Please and thank you it would really help me now and in the future


18.

None

Topic: Variable problem

Posted: 07/30/08 07:22 AM

Forum: Flash

Hey im just getting started to the basic actionscripts and other thing in flash and i was having some trouble with some pretty basic stuff so i guess my question is
How do i give a dynamic text box a variable?
I have about 3 different tutorials open and they are all telling me something different can anyone please help. I know it may seem pretty simple to experts with this but i just have no idea what to do


19.

None

Topic: Speedy Backgrounds

Posted: 06/29/08 12:09 AM

Forum: Flash

I thought about this in the how to section but i guessed flash would be better

Anyway I have Flash Mx is there anyway to make the background look like there running/flying/dashing super fast, like for example having it blur speedlines im just throwing it out there is there anyway to do this?


20.

None

Topic: shape tween

Posted: 06/13/08 05:27 AM

Forum: Flash

hey im trying to have one thing turn into anthoer i hit the shape tween buutton but it isn't didnt work does anyone know how 2 do this


21.

None

Topic: Making Art

Posted: 05/24/08 03:27 PM

Forum: Where is / How to?

k i'll post it there to but thanks for the advice


22.

None

Topic: Making Art

Posted: 05/24/08 03:19 PM

Forum: Where is / How to?

i'm interested in learning how to do computer art for flashes i can draw real well on paper but not on computer so i'm wondering is there a special program that helps people draw for their flashes and if it is where can i find some tutorials

P.S. i din't know whether to put this in art or this forum


23.

None

Topic: Compression

Posted: 05/17/08 07:46 PM

Forum: Flash

K i guess i'll take out some alphas but is there anything else?


24.

None

Topic: Compression

Posted: 05/17/08 07:31 PM

Forum: Flash

Story: HEllo ppl i need to know how to compress these files because i work with my flashes like bit by bit and have several differen t documents that i compose into one but when i do it becomes so big that my whole comp crashes and freezes so when it does work i have very limited things i can do b4 it freezes so i'm wonderin

Question: How do i do the right seetings for a compression without a video losing to much of its quality?


25.

None

Topic: effects

Posted: 04/07/08 12:20 AM

Forum: Flash

K thanks


26.

None

Topic: effects

Posted: 04/07/08 12:05 AM

Forum: Flash

ant i just download a trial of flash 8 and transfer from flsh mx to that?


27.

None

Topic: effects

Posted: 04/06/08 11:57 PM

Forum: Flash

i dont have that i hav mx


28.

None

Topic: effects

Posted: 04/06/08 11:40 PM

Forum: Flash

does anyone know how to make a background explode/ blow up like the background is 2D it breaks apart ike glass and flips each pieces going different directions does anone know how to do something like that or at least make the background explode


29.

None

Topic: Not working

Posted: 04/06/08 07:18 PM

Forum: Audio

hey theres thins song in mp3 format that im trying to get into flash but it wont import bcause of "one or more problems" but i imported another mp3 frmat and it worked just fine is there anyway i can get the song in there


30.

None

Topic: Recording

Posted: 11/14/07 06:53 PM

Forum: Audio

something is wrong with my mic or something every time i recorded i get so much air in the background and static noise, etc is there anything i can do about this i have a black long skinny mic thats on a stand dats they way it came can anyone help me out?


All times are Eastern Standard Time (GMT -5) | Current Time: 02:50 AM

<< < > >>

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