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

We found 14,804 matches.


<< < > >>

Viewing 61-90 of 14,804 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7250494

61.

None

Topic: Issue with collision detection

Posted: 03/25/09 10:54 AM

Forum: Flash

Make sure it's being run on enterFrame, and also put in a trace to see whether the hitTest is registering or not


62.

None

Topic: Reset level

Posted: 03/24/09 03:04 PM

Forum: Flash

At 3/24/09 02:33 PM, dudejonne wrote: It ís a dynamic textfield with instance name thing scorefield.
scorefield.text= score;

Wow, I did a major discovery :D
On a previous frame I also had a textbox with name scorefield, so this one doesn't works :p
Now its named scorefield2 andit works.

It depends where you declare the .text. The var is constantly updated, the .text is a one-off - so if you declare scorefield.text= score; before the dynamic textbox with the instance name scorefield exists, it won't show the text you send (once it DOES exist)


63.

None

Topic: Dynamic center of rotation?

Posted: 03/24/09 08:31 AM

Forum: Flash

At 3/24/09 08:21 AM, dELtaluca wrote: It is perfectly possible with AS

I stand corrected. Smartarse ;)


64.

None

Topic: Favourite Classical Song?

Posted: 03/24/09 08:23 AM

Forum: General

Beethoven's Pastoral


65.

None

Topic: Dynamic center of rotation?

Posted: 03/24/09 08:02 AM

Forum: Flash

At 3/24/09 07:51 AM, Yambanshee wrote: is there any way (using as2) to create the center of rotation for a clip your spawning of the libary (the center of rotation that i want is at point 0,0)

No, don't think so. Probably the best simulation is to createEmptyMovieClip first, attach the library MC inside the created MC, adjust the _x and _y, then rotate the created MC rather than the attached one


66.

None

Topic: Help... please.

Posted: 03/24/09 07:28 AM

Forum: Flash

For the backwards bit, add this to the button actions:

on(press){
	_root.GOBACK(this);
}

on the main timeline, add this function:

function GOBACK(mc){
	mc.cnt=0;
	mc.onEnterFrame=function(){
		if(this.cnt<7){this.prevFrame();}
		this.cnt++;
	}
}

For the going forwards bit, add this to the button actions:

on(press){
	play();
}

Then add this to a frame in the MC, 6 frames on from where the button is:

gotoAndPlay(_currentframe-12);

67.

None

Topic: Music prob here

Posted: 03/24/09 06:07 AM

Forum: Flash

At 3/24/09 06:05 AM, The-Real-Sabin wrote:
Make sure your wav or mp3 is set at 44.1 KHz and at least 16 bit, you can use a free editor such as
Audacity to convert if necessary.
How can I change the KHz? It's 11025Hz and 32bit 'float'

Thank for the fast reply!

Never used Audacity, but you should be able to set the frequency when from the 'Save As...' menu. Change it from 11025 to 44100 Hz, and it should be OK to import to Flash


68.

None

Topic: Music prob here

Posted: 03/24/09 05:16 AM

Forum: Flash

At 3/24/09 05:10 AM, The-Real-Sabin wrote: Okay, first of all I'm new to flash, never yet submitted to NG. I tried a coupel of time before and gone trought many flash totu here on NG...

But why why can't I manage to add music/sound to my movie, please someone explaine it to me!

I tried to upload a .wav file this way; File> Import> Import to library then choose my .wav
It answered, file were not imported because there were problemes reading them...

What am I doing wrong?

And by the way, do you guys know great sites for sound effects?

Make sure your wav or mp3 is set at 44.1 KHz and at least 16 bit, you can use a free editor such as
Audacity to convert if necessary.

Sound Effects:
www.sounddogs.com
www.findsounds.com
Music and Sound Effects V2 by different

For other audio information, check out
Audio Forum
Audio Software: Studios & Editors
Audio Software: Software Synthesizers
Audio Software: Sound Converters


69.

None

Topic: How To Remove Scenes?

Posted: 03/24/09 04:29 AM

Forum: Flash

Shift+F2 to open the Scenes panel


70.

None

Topic: Cower Before deckheadtottie

Posted: 03/23/09 01:31 PM

Forum: General

Congratulations mister


71.

None

Topic: It is This.

Posted: 03/23/09 01:29 PM

Forum: General

At 3/23/09 12:18 PM, Spackerchip wrote: I've had a quick look through your recent post history and I don't see anything mentioned that would trigger someone to do something like this. Why do you feel it necessary to 'make them pay'? Are you talking about someone specifically?

haven't you read his hive club attempt and him wanting to know if he can buy honey?

i knew he was fucked up but daaaaamn, never thought he would act on it


72.

None

Topic: Stencils

Posted: 03/23/09 01:24 PM

Forum: General

At 3/23/09 01:22 PM, hio3 wrote: so were i should put it

Art Forum


73.

None

Topic: Reset level

Posted: 03/23/09 01:13 PM

Forum: Flash

At 3/23/09 01:05 PM, dudejonne wrote: I'm making a game, with some levels.
Now when one level is finished, it follows this code: gotoAndStop(2);
Then it gets at frame two, but then the sound of the previous level and all the movieclips are still there, how can I reset them, or anything? (It's a lot of work to removeMovieClip them all..)

Depending on what you want to delete, you can use a for loop. If you need to get rid of everything then you can use this

for(var i in _root){
	_root[i].swapDepths(789);
	_root[i].removeMovieClip();
}

To stop sounds, use stopAllSounds();

Obviously both of these need to be run before you initiate stuff for the second level


74.

None

Topic: good program for animation?

Posted: 03/23/09 01:03 PM

Forum: Flash

At 3/23/09 12:56 PM, BonoMabro21 wrote: i could use some good programs for flash pieces. and also i need to find ways to do voices for flash. i suck at drawing so anything that requieres a lot of drawing or art.. then nope not happenin.

Uh.. so what exactly do you intend to do with Flash?

Audio:
Audio Forum
Audio Sticky - Help & Guidelines
Audio Software: Studios & Editors


75.

None

Topic: Help with script

Posted: 03/23/09 11:22 AM

Forum: Flash

Not surprised it doesn't work, you forgot some vital parts

on.MakeThisMcShootBullets
ThisHp=69
OnEatHamburgerIfHpIs=20.OrLower
IfThisEatHamburger=+50Hp
If{.bored}=on(suckselfcock)=Cock
If{fuckTitArse}=shitOnAHorse[else]=URMOM;
for(ever){goatse;}

76.

None

Topic: hitTest help

Posted: 03/23/09 10:53 AM

Forum: Flash

Also not exactly clear on your problem, but try this

Add this function on the main timeline

function NS(){nextScene();}

With your code, first run a trace to check your hitTest is working

onClipEvent(enterFrame){
	if(this.hitTest(_root.area.bot)){
		trace("HIT");
		nextScene();
	}
}

If that outputs HIT when tested, remove the trace and replace the line nextScene(); with _root.NS();


77.

None

Topic: Dynamic Text Box

Posted: 03/22/09 07:22 PM

Forum: Flash

Not label, var


78.

None

Topic: The Flash 'Reg' Lounge

Posted: 03/22/09 06:42 PM

Forum: Flash

At 3/22/09 05:02 AM, dELtaluca wrote: FUCKING FINALLY!!!!

Jade Goody Is FINALLY dead, thank fuck for that; maybe now i won't have to rip her face out of every single newspaper i read like i've been doing for the last 6 months of my life.

LMFAO. Someone told me today, down the pub, that she'd finally pegged it, I was like: Hand? Face? Bovvered?

Basically, I couldn't give a shit. She's not even a fucking celebrity FFS, she's just some stupid cow that went on Big Borther and made a mess of speaking and thinking. Why the hell should I even attempt to empathise or sympathise? I don't. Wahey.


79.

None

Topic: Listeners

Posted: 03/22/09 06:37 PM

Forum: Flash

I'm not totally sure what you're trying to do, but look up onChanged in the Flash help files. You'd have to apply it to all textfields (and give them instance names), but technically you could refer them to your function and send it the correct parameters.

Aware I may be well of the ball here, if so add more details about exactly what it is you're trying to achieve.


80.

None

Topic: hit test?

Posted: 03/22/09 06:32 PM

Forum: Flash

speed=0; ???

You're going to have to post more of your code (and associated info like instance names of MCs) if you want more help.

In the meanwhile, check these:
AS: Collisions by Glaiel_Gamer
AS: Collisions - Boundaries by Spamburger
AS: Collisions - Circle To Shape Hittest by 23450
AS: Collision Detection by BleeBlap
AS: Collisions - HitTesting Duped MCs by SpamBurger


81.

None

Topic: Making something arc?

Posted: 03/22/09 06:30 PM

Forum: Flash

At 3/22/09 06:07 PM, liaaaam wrote: The best way to do it is to use AS. If you make the y higher (i.e., close to the bottom of the flash) then the grenade will fall. Quite simple =o

Aye. Use an xvel, which may or may not be affected by air friction (*0.98 or so) and a yvel, which depends on the launch trajectory but is affected by a variable gravity (generally between +.5 and +2 every frame is a good bet)


82.

None

Topic: Sitrom93 Collab

Posted: 03/22/09 06:07 PM

Forum: Flash

At 3/22/09 06:06 PM, 14hourlunchbreak wrote: Unfortunately yes. So it's either have the deadline really short and have crappy submission, or have the deadline a little bit longer and have nobody care.

Go for both :)
Now there's a challenge


83.

None

Topic: StartDrag() is a problem!

Posted: 03/22/09 06:06 PM

Forum: Flash

At 3/22/09 04:10 PM, sanjeev98 wrote: this.startDrag();

Try startDrag(this); instead


84.

None

Topic: teh Newb Collab(?)

Posted: 03/22/09 02:32 PM

Forum: Flash

At 3/22/09 02:28 PM, WhoknowsmeaUdiO wrote: I like your idea, but please read the New Collab Rules before posting.

What he said


85.

None

Topic: Pressing two keys at the ame time.

Posted: 03/22/09 07:39 AM

Forum: Flash

At 3/22/09 07:38 AM, KuchiyoseRashomon wrote: if (Key.isDown(Key.UP && Key.LEFT)) {

if (Key.isDown(Key.UP) && Key.isDown(Key.LEFT)) {


86.

None

Topic: for & lag?

Posted: 03/22/09 07:12 AM

Forum: Flash

Really depends what you're doing inside the loop. If you're simply incrementing a number, it doesn't make much difference whether you loop 15 or 15000 times


87.

None

Topic: Enjoy The B B S While It Lasts

Posted: 03/20/09 10:03 PM

Forum: General

At 3/20/09 10:01 PM, RainbowRiderOmega wrote: No. I don't even know what you're talking about.

wuts ah beebee ess?


88.

None

Topic: Input Text Help,.

Posted: 03/20/09 09:59 PM

Forum: Flash

At 3/20/09 09:55 PM, geohoundz55 wrote: So let's say that I had this Input Text Inside a Clip...

Change both vars to _root.myName.


89.

None

Topic: a new idea for newgrounds!

Posted: 03/20/09 09:55 PM

Forum: Flash

http://www.newgrounds.com/bbs/topic/9731 38

Read the first post before typing yours


90.

None

Topic: MovieClip positions

Posted: 03/20/09 09:53 PM

Forum: Flash

Make sure the registration point for both MC's is the same - ie, centre them both on 0,0


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

<< < > >>

Viewing 61-90 of 14,804 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7250494