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

We found 147 matches.


<< < > >>

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

1.

None

Topic: How to put games onto a website?

Posted: 10/17/07 06:29 PM

Forum: Flash

How do I put games onto a website, if I don't own the flash file? I don't really understand how this works. Could someone please help.


2.

None

Topic: Freelance Pong Testing

Posted: 10/14/07 10:23 AM

Forum: Flash

I think I could work on having mouse control, and a two player. Better looking paddles and options for the color of the ball are possible too. Power-ups are do-able, but it'll take some time for me to learn how. I'm not really sure how to fix the glitch though. Any help with that would be great. Any other suggestions will be taken into account as well.


3.

None

Topic: Freelance Pong Testing

Posted: 10/13/07 01:39 PM

Forum: Flash

It is not stolen. I made it myself. How can it be stolen?


4.

None

Topic: Freelance Pong Testing

Posted: 10/13/07 12:50 PM

Forum: Flash

Where would I do this?


5.

None

Topic: Freelance Pong Testing

Posted: 10/13/07 12:43 PM

Forum: Flash

I've been trying to figure out how to do that. Could anyone help me so that power-ups appear every so often, ex: between every 15 to 25 seconds or so?


6.

None

Topic: Freelance Pong Testing

Posted: 10/13/07 12:32 PM

Forum: Flash

Sorry forgot link. The link is here.


7.

None

Topic: Freelance Pong Testing

Posted: 10/13/07 12:30 PM

Forum: Flash

I am testing my newest game, Freelance Pong. Does anyone have ideas or suggestions for it? What rating would you give it if it were submitted to the NG portal? Thanks for any feedback.


8.

None

Topic: Line Breaks?

Posted: 10/06/07 03:58 PM

Forum: Flash

The \n worked. Thanks.


9.

None

Topic: Line Breaks?

Posted: 10/06/07 02:48 PM

Forum: Flash

How do I perform a line break within a dynamic text box using actionscript. Say for example that the text I want is "How do I break this up within a paragraph in a dynamic text box? I can't figure out how to do it."

What do I do?


10.

None

Topic: Having Trouble with gotoAndStop();

Posted: 10/05/07 03:55 PM

Forum: Flash

I don't quite getting what you're saying here, I'm not too great at actionscripting yet, but the timesec variable gives me seconds.For example, if I put in 61, my dynamic text box will output 1:01. Then, it counts down from there by one seconds intervals (ex: 1:00, 00:59, 00:58...). As of right now I'm just testing using 10 seconds because it wouldn't be fun to wait 10 minutes just to have it not work. Could you please explain a bit more what you meant.
I should probably let you know this isn't really my code. Early on in the creation of my game, I got it from a tutorial site because I didn't really understand how to make a timer, so I just used the one I found. If you can find a better way to do it, then I would gladly use your way.
Thanks for any help you can give me.


11.

None

Topic: What to do when BBS can't answer?

Posted: 10/04/07 08:40 PM

Forum: Flash

What should I do if nobody in the flash forum can answer my question? I had one about actionscript that no one so far has been able to answer (http://www.newgrounds.com/bbs/topic/786 487.) Any ideas?


12.

None

Topic: Call a variable from another frame?

Posted: 10/03/07 04:26 PM

Forum: Flash

Oh. Ok. Thanks.


13.

None

Topic: Call a variable from another frame?

Posted: 10/03/07 04:16 PM

Forum: Flash

How do I call a variable from another frame? My variable is called playertxt. It store the players score. A specific explanation using playertxt isn't necessary, but would be appreciated. Thanks.


14.

None

Topic: Having Trouble with gotoAndStop();

Posted: 10/02/07 07:53 PM

Forum: Flash

Ok. I'm not sure if the problem is with the timer, or the way I'm writing the gotoAndStop();. So I'll post the code for the timer and the variables.

_root.timesec = 10;//set time variable to 10

reset();
timerint = setInterval(timer,1000);// I don't know what this is... (perhaps that's where I went wrong?)

function timer(){// the timer function is called every second by the set interval call above
_root.timesec--//subtract one to the timesec varible
secs = _root.timesec % 60;//get the seconds by calculating the remainder after dividing by 60
mins = _root.timesec;//mins = total seconds
mins = mins - secs//mins = mins - seconds
mins = mins / 60;//divide by 60 for mins
if(isNaN(mins)) mins = 0;//if less than 1 min it is 0
if(length(mins) == 1) mins = '0' + mins;//padd to 01,02 etc..
if(length(secs) == 1) secs = '0' + secs;//padd to 01,02 etc..
_root.timetxt = mins + ':' + secs//update the text
}

Hopefully that will make it clear. Does anyone know how to do this?


15.

None

Topic: Having Trouble with gotoAndStop();

Posted: 10/02/07 07:42 PM

Forum: Flash

Can someone please help?


16.

None

Topic: Having Trouble with gotoAndStop();

Posted: 10/01/07 03:42 PM

Forum: Flash

I currently have a timer that counts down from 10. When it hits 0, I want it to go to a frame labeled done. Unfortunately, this does not work. Here is all of the code on the frame.

stop();
_root.ball.yspeed = 14;//set the ball speed to 14
_root.ball.xspeed = 14;//set the ball speed to 14
_root.cputext = 0;//set cpu score to 0
_root.playertext = 0;//set player score to 0
_root.cpu.speed = _global.cpuspeed;//set cpu speed to that on the button leading into the pong game
_root.timesec = 10;//set time variable to 10

reset();
timerint = setInterval(timer,1000);// I don't know what this is... (perhaps that's where I went wrong?)

function lose (){//define the lose function
_root.cputext ++;//add1 to the cpu score
_root.cputxt = 'CPU: ' + _root.cpu.score;//update the cpu score text
reset();//call the reset function
}
function win (){// the win function, the same as lose buyt for the player
_root.playertext ++;//add1 to the player score
_root.playertxt = 'Player: ' + _root.player.score;//update the score text
reset();//call the reset function
}
function reset(){//define the reset function
_root.ball._x = 261;//move the ball to the center of the x axis
_root.ball._y = 200;//move the ball to the center of the y axis
_root.ball.xspeed = 0;//stop it moving left or right
_root.cpu._x = 225;//reset the paddles to the center
_root.player._x = 255;
}
function timer(){// the timer function is called every second by the set interval call above
_root.timesec--//subtract one to the timesec varible
secs = _root.timesec % 60;//get the seconds by calculating the remainder after dividing by 60
mins = _root.timesec;//mins = total seconds
mins = mins - secs//mins = mins - seconds
mins = mins / 60;//divide by 60 for mins
if(isNaN(mins)) mins = 0;//if less than 1 min it is 0
if(length(mins) == 1) mins = '0' + mins;//padd to 01,02 etc..
if(length(secs) == 1) secs = '0' + secs;//padd to 01,02 etc..
_root.timetxt = mins + ':' + secs//update the text
}

I've tried using;
if(timer>=0){
gotoAndPlay('done');
}

It doesn't work. Please Help me.


17.

None

Topic: New Flash Forum, what do you think?

Posted: 09/26/07 04:10 PM

Forum: Flash

Is anyone interested in entering?


18.

None

Topic: New Flash Forum, what do you think?

Posted: 09/24/07 05:26 PM

Forum: Flash

A new contest was announced. Whoever wants to be the first to participate in the forums first contest should go check it out.


19.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 06:10 PM

Forum: Flash

Good job. The more people that sign up, the more people that will be able to post ideas and help others in flash.


20.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 02:24 PM

Forum: Flash

Alright, can anyone name a good place to announce an event? I was thinking something like whoever contributes 100 good posts the soonest gets to become a forum moderator and will get to choose to either, be able to name a category (within reason), have a link going to their site, or have a positive review about their site. Does this seem good?


21.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 11:31 AM

Forum: Flash

It's going to be a bit more family friendly, with a little more moderation. If you are interested in being a mod, please contact me.


22.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 11:07 AM

Forum: Flash

'This forum' is referring to newgrounds. Ok, got it.


23.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 11:06 AM

Forum: Flash

What is 'this forum' that you are talking about? And it will soon (hopefully) be a fast growing forum for all things flash. There are specific topics for each type of flash developer. It is devoted all to flash, unlike others that have flash, and then more topics (like newgrounds).


24.

None

Topic: New Flash Forum, what do you think?

Posted: 09/23/07 10:58 AM

Forum: Flash

There is a new flash forum out there on the internet that is looking for members to start it's community. Is anyone interested in joining. The address is Freelance Flash Games Forums. What do you think?


25.

None

Topic: Tutorials Page on a Site?

Posted: 09/23/07 08:32 AM

Forum: Programming

Okay. I'll do that. If anyone else has ideas that would be great.


26.

None

Topic: Tutorials Page on a Site?

Posted: 09/22/07 05:28 PM

Forum: Programming

Are their any out there that are premade? I'm still trying to advance my flash skills at the moment and do not have the time to learn php or mySQL yet. Any suggestions?


27.

None

Topic: Tutorials Page on a Site?

Posted: 09/22/07 03:48 PM

Forum: Programming

What script would I use to make a tutorials page where people can submit their own tutorials to my site. I have Fantastico within my Cpanel (if that helps). Can anyone recommend a good script to do this with. Note: I am looking for a free script.
Any help is appreciated.


28.

None

Topic: Best Use for my domain name?

Posted: 09/15/07 08:01 PM

Forum: Flash

What software should I use to make it? Are any of the fantastico files good for it, or should I use something else?


29.

None

Topic: Best Use for my domain name?

Posted: 09/15/07 12:13 PM

Forum: Flash

Thanks, I might try to do that. Anyone else have ideas?


30.

None

Topic: Best Use for my domain name?

Posted: 09/15/07 12:10 PM

Forum: Flash

I currently have a domain name called www.freelanceflashgames.com. Should I turn it into a forum for aspiring freelancers, offer helpful tips and tutorials for flash designers, both, or some other idea that you might have?


All times are Eastern Daylight Time (GMT -4) | Current Time: 01:43 PM

<< < > >>

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