5,462 Forum Posts by "API"
it wont work. especially if its sticks. and GTA ripoffs arent gonna score well unless they are incredible.
i dont think anyone is gonna answer that positively, becuase it simply doesnt exist. ive looked everywhere for it, and i cant find it either. so many posers just make tweened bars and say its sound reactive.
At 6/5/04 12:49 AM, cook_er wrote: Good ol' Sherbs. If Sherbs were ever to be a demon kitty, it would maybe look like this...
hahah, i love the style of that
im afraid there is no way that i know of, but if that was possible... it would lag flash to the point that it may freeze >_<
At 6/4/04 02:58 PM, thecolony wrote: The best jokes in the word are absurd ones...
some funny shit?
l = 300;
e = 100;
function makep() {
if (!Key.isDown(Key.SPACE)) {
Pook = createEmptyMovieClip("p"+c, c--);
Pook.lineStyle(random(10), colors[random(n)],(random(100)));
Pook.lineTo(l, -3);
Pook.curveTo(e, -e);
colors = [0xAE973C, 0xA28C33, 0x7E6D2C];
n = colors.length;
Pook._y + 1;
Pook._x = 280;
Pook.onEnterFrame = function() {
if (!Key.isDown(Key.SPACE)) {
this._y += 10;
this._rotation = Math.atan2(this._y-_ymouse, this._x-_xmouse)*(180/Math.PI);
this._alpha -= 2.1;
this._xscale-= 1;
if (this._y<=600) {
removeMovieClip(this);
}
}
};
}
}
setInterval(makep, 10);
put that in, and use a brown background.
its mouse interactive.
Heres the link http://www.newgrounds.com/ngmag/alphas/alpha/57
Yup two more weeks and then i work some more.And if anyone has a kick ass song i could use, please tell me what it is cuz im pretty desperate!
yeah, -pako- i like your demo... and i love -Sqeezy-'s style... but dont copy it too much, ok?
rephrase the question.... i dont understand
api is the drawing application in flash, its only with code.
BUMP
schoror, something funny.... u have 1,337 posts. thats leet man. very leet.
At 5/31/04 06:27 PM, InonI wrote:At 5/31/04 06:20 PM, Residentevilfan2003 wrote: please help i am in desperate need of troublei'll give ya some trouble
LMAO! Man, Residentevilfan2003 sucks at speaking.
getting a voice actor is very difficult on ng, try getting a friend or ur dad/mom or something. if ur voice is too high or young, ur out of luck
At 5/31/04 07:05 PM, -azrag- wrote: Ya im making a new movie. Its called neo vs smith. Its a matrix ripoff basicly and its gonna have stick charactors in and they are gonna be fighting near a computer system and neo has to destroy the computer aka "matrix". Intersting movie so far.
ya no one cares.
At 5/31/04 07:03 PM, Fifteenbellyrolls wrote: Thanks for hurting my computer Norwegian
God, as soon as I clicked on that link tons of pop-ups and security windows opened up, I eventually had to close my internet to stop my computer from crashing.
I hope your happy.
thanks 15, i was like, one second away from clicking that link. it looked so interesting. and norweigian, please change the address of the link plz.
umm, yes. that is the program they use to make EVERY cartoon on here. and, P.S. are you retarded?
i experience the same problem. >:(
J-O-K-E. you know what that spells?
what you are trying to do is impossible in the world of flash, you really need to be an A+ programmer and you have to have a degree in like everything. I know there is webcam compatability in flash, but none of that sort.
i drew this in 2 minutes
put this code in:
background:black
FPS:120
normal window size.
quality = medium (already)
_quality = "medium";
d = 0;
rot = 0;
rc = 5;
function boxtunnel() {
if(d==400){
d = 0;
}
d++;
rot += rc;
if (random(30) == 0) {
rc = --rc;
}
box = _root.createEmptyMovieClip("box"+d, d);
r = Math.floor(Math.sin(d/255*2*Math.PI)*255);
g = Math.ceil(Math.sin(+d*255*2*Math.PI)*255);
b = Math.floor(Math.sin(d+255*2*Math.PI)*Math.sin(d/255*2*Math.PI)*255);
hex = r << 0 | g << 0 | b;
with (box) {
_alpha = 0;
_rotation = rot;
_x = 250;
_y = 300;
lineStyle(100, hex, 50);
moveTo(-50, -50);
lineTo(50, -50);
lineTo(50, 50);
lineTo(-50, 50);
lineTo(-50, -50);
_xscale = .01;
_yscale = .01;
box.onEnterFrame = function() {
_rotation += _root.rc;
_alpha = random(100);
_xscale *= 1.2;
_yscale *= 1.2;
offset = 5;
xoff = Math.cos(_rotation/(Math.PI/180)) * offset;
yoff = Math.sin(_rotation*(Math.PI/180)) * offset;
_x += xoff;
_y += yoff;
_alpha = _xscale+30;
if (_xscale>2000) {
removeMovieClip(this);
}
};
}
}
setInterval(boxtunnel, 1);
this code freaked me out.
At 5/31/04 09:34 AM, Sneakers wrote: Mr. Zombie butt
HAHA! that is great.
this code is a variation of _burst_'s code, it makes random colors, and eventually starts spinning really quick, making an awesome star pattern
Background:BLACK (or a color changing one with a mc)
Fps: 40 (preferably)
_quality = "high";
d = 0;
rot = 0;
rc = 5;
function boxtunnel() {
if(d==400){
d = 0;
}
d++;
rot += rc;
if (random(30) == 0) {
rc = --rc;
}
box = _root.createEmptyMovieClip("box"+d, d);
r = Math.floor(Math.sin(d/255*2*Math.PI)*255);
g = Math.floor(Math.sin(-d*255*2*Math.PI)*255);
b = Math.floor(Math.sin(d+255*2*Math.PI)*Math.sin(d/255*2*Math.PI)*255);
hex = r << 3 | g << 8 | b;
with (box) {
_alpha = 0;
_rotation = rot;
_x = 250;
_y = 300;
lineStyle(1, hex, 100);
moveTo(-50, -50);
lineTo(50, -50);
lineTo(50, 50);
lineTo(-50, 50);
lineTo(-50, -50);
_xscale = 1;
_yscale = 1;
box.onEnterFrame = function() {
_rotation += _root.rc;
_alpha = random(100);
_xscale *= 1.2;
_yscale *= 1.2;
offset = 5;
xoff = Math.cos(_rotation*(Math.PI/180)) * offset;
yoff = Math.sin(_rotation*(Math.PI/180)) * offset;
_x += xoff;
_y += yoff;
_alpha = _xscale+30;
if (_xscale>2000) {
removeMovieClip(this);
}
};
}
}
setInterval(boxtunnel, 50);
please check this one out. watch it for about 2 minutes on Full screen to get the full effect. trust me, its cool
ignore my other entries, im very good at animating and scripting. my msn is geier20@hotmail.com and my AIM is roseyanom.
ill be glad to help.
At 5/30/04 10:01 PM, -Pako- wrote: Well fuck ya..
PLANTO-MAN
i love your style... make some movies with it
ok, this has nothing to do with flash...
but, who is the chick in ur sig, deathcon?
its a neat idea, and i would like to see it work but it probably wont. i play some guitar.
At 5/30/04 09:21 PM, KORTEX wrote: heres a teaser poster from my movie im workin on called "dark world". i accidentally posted it in the actionscript forum. well here hope u like it.
kortex
wow, that drawing is great, on the side. what is the movie about? im excited to see it.
At 5/30/04 09:13 PM, KORTEX wrote: heres another in better quality
wrong topic buddy.

