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

We found 19 matches.


<< < > >>

Viewing 1-19 of 19 matches.

1.

None

Topic: Ng Api

Posted: 04/06/09 01:23 PM

Forum: Where is / How to?

When I logged on ages ago, I could have sworn there was a graph type thing where you could track all the views your game had. I thought it was on newgrounds.com/account/flashapi but it's not :( Has there ever been a graph there or am I just going crazy?


2.

None

Topic: Update thumbnail

Posted: 04/05/09 03:05 PM

Forum: Where is / How to?

I cleared my cache, but it's still not there.


3.

None

Topic: Update thumbnail

Posted: 04/05/09 02:43 PM

Forum: Where is / How to?

I've just submitted a new game, and it's on the portal, but when I click on edit to change the thumbnail there's nothing there that lets me do it. It used to be just under the commentary bit but it's not there any more. What's the deal with that?


4.

None

Topic: for loop slowing things down

Posted: 08/13/07 06:46 AM

Forum: Flash

I have made a simple API effect where i create boxes at the middle of the document, and then make them move outwards, and when they're outside the page, i remove them. I create the boxes in a function, then I have an array called movies, which I add the new movieclip to. I move the movies by creating a for loop which is :

for (i=0; i<movies.length; i++) {
movie=movies[i]

But after a while, the framerate slows down, i think this is because the for loop goes goes through every number, even though most of them have been removed. Is there any way to stop that without creating a preset number of boxes before hand. This is my code, just copy and paste all of that onto a frame and you'll see what I mean.

movies = new Array();
pause = false;
addmovie = function (x, y, amount, size) {
for (i=0; i<a mount; i++) {
d = _root.getNextHighestDepth();
_root.createEmptyMovieClip("movie"+d, d);
movie = _root["movie"+d];
with (movie) {
lineStyle(0);
beginFill("0x"+random(999999), random(80)+20);
moveTo(0, -size);
lineTo(size, -size);
lineTo(size, size);
lineTo(-size, size);
lineTo(-size, -size);
lineTo(0, -size);
endFill();
}
movie._x = x;
movie._y = y;
movie.xspeed = Math.random()*10-5;
movie.yspeed = Math.random()*10-5;
movie._xscale = 300;
movie._yscale = movie._xscale;
movie._rotation = Math.atan2(movie.yspeed, movie.xspeed)*52;
movie.time = 0;
movies.push(movie);
}
};
function bound(type, o) {
w = (o._width/2);
h = (o._height/2);
maxx = 550+w;
maxy = 400+h;
minx = -w;
miny = -h;
if (o._x>maxx) {
removeMovieClip(o);
}
if (o._x<minx) {
removeMovieClip(o);
}
if (o._y>maxy) {
removeMovieClip(o);
}
if (o._y<miny) {
removeMovieClip(o);
}
}
onEnterFrame = function () {
if (!pause) {
addmovie(275, 200, 1, _xmouse/100);
for (i=0; i<movies.length; i++) {
movie = movies[i];
movie._x += movie.xspeed;
movie._y += movie.yspeed;
bound(0, movie);
}
}
};
onMouseDown = function () {
pause = true;
};
onMouseUp = function () {
pause = false;
};


5.

None

Topic: Help with game variables!

Posted: 08/13/07 06:33 AM

Forum: Flash

when changing variables that you set on a frame in movieclips, you should put a _root. infront of it so it would be _root.health.


6.

Shouting

Topic: get activity level

Posted: 07/21/07 08:16 AM

Forum: Flash

I was wondering if there was a way to find out if a sound i attach with actionscript is above a certain volume. Like when you do the microphone.getActivityLevel(), is there a way to do that with a sound i play through actionscript?


7.

None

Topic: detect framerate

Posted: 07/05/07 01:35 PM

Forum: Flash

How do I detect the framerate the swf is running at with actionscipt.


8.

None

Topic: how do i detect...

Posted: 06/27/07 05:39 PM

Forum: Flash

i have a for loop which creates 25 variables that are all true. How do i detect if if they are all false without using a giant if(!square1.active&&square2.active........) Is there any way to do this?


9.

None

Topic: free high scores list

Posted: 06/04/07 12:34 PM

Forum: Flash

I have read some tutorials on how to make a high scores list on flash with actionscript. But all of the seem to require somewhere to host the ASP files. Is there a way to host them free, or a different way to do this?


10.

None

Topic: for loop for points

Posted: 06/02/07 12:06 PM

Forum: Flash

thanks


11.

Questioning

Topic: for loop for points

Posted: 06/02/07 11:57 AM

Forum: Flash

im trying to make a for loop to recognize the points i have in a movieclip. The movieclip's variable name is tank and the points' are point0...point1... to point10. I want to make them all invisible so i made this for loop:

for (i=0; i<11; i++) {
_root["tank.point"+i]._visible=false
}

it doesnt work, anyone know why?


12.

None

Topic: actionscript glow

Posted: 05/31/07 02:41 PM

Forum: Flash

thanks. no more questions now


13.

None

Topic: actionscript glow

Posted: 05/31/07 02:18 PM

Forum: Flash

thanks, but how do i remove a filter?


14.

None

Topic: actionscript glow

Posted: 05/31/07 01:28 PM

Forum: Flash

AS2


15.

Questioning

Topic: actionscript glow

Posted: 05/31/07 01:24 PM

Forum: Flash

how do i make an object glow with actionscript. I want to apply a filter with actionscript, anyone know how to do it?


16.

None

Topic: the games page

Posted: 04/25/07 02:11 PM

Forum: Where is / How to?

how do people get in the games column. Is there a separate page to upload there? Or is it if you get a certain score


17.

None

Topic: gotoAndPlay()

Posted: 04/23/07 05:08 PM

Forum: Flash


18.

Angry

Topic: gotoAndPlay()

Posted: 04/23/07 04:56 PM

Forum: Flash

i know this sounds like a stupid question, but does gotoAndPlay(3) actually do everything? I have a enemy movieclip and on the 3rd frame is an animation going to frame 50. On the first 2 frames are pictures with a layer above them with a stop() in. I use gotoAndPlay(3) and it goes to frame 3 but doesn't play, it just stops. Is this a problem with my flash or does anyone know how to fix it?


19.

Questioning

Topic: how do i change files ive uploaded?

Posted: 04/21/07 04:47 AM

Forum: Where is / How to?

Ive uploaded a game but want to change it for a better version I've made, how do i edit things about it such as the description? Or how do i delete the game so i can upload the new one?


All times are Eastern Standard Time (GMT -5) | Current Time: 10:43 AM

<< < > >>

Viewing 1-19 of 19 matches.