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

We found 2,332 matches.


<< < > >>

Viewing 181-210 of 2,332 matches. 1 | 24 | 5 | 6 | 7 | 8 | 9 | 104478

181.

None

Topic: Movie clip loaded event

Posted: 11/26/08 10:55 AM

Forum: Flash

1009 errors?? What the hell were you doing?


182.

None

Topic: need source

Posted: 11/26/08 10:51 AM

Forum: Flash

Age is no excuse. I've started scraping the surface of programming at 11, I know someone who at least learned how to to formatting tags in HTML at a younger age (though technically HTML isn't programming).

In any case, you should just study AS and start with this one. You can never hope to just post in a forum and ask for a ready made code/fla to be sent to you. You may claim you'll never steal it, but you'll never be able to prove it, especially since no one here knows you.


183.

None

Topic: How to trim music in flash 8?

Posted: 11/26/08 05:58 AM

Forum: Flash

Which would only work if you only want to trim the right side.


184.

None

Topic: AS prob. need a pro with extra time

Posted: 11/25/08 11:35 AM

Forum: Flash

Sorry, but you're practically asking for someone to do your work by making someone sending you the *.fla file which you'll just modify. Worst of all is that you'd actually enter it in a contest.


185.

None

Topic: Sponsered multiplayer game

Posted: 11/25/08 11:30 AM

Forum: Flash

Pretty cool. Bookmarking for the future.

Don't have time to read now, but does the API cover unified online scoreboards?


186.

None

Topic: How to trim music in flash 8?

Posted: 11/25/08 11:15 AM

Forum: Flash

Doubt there's a real good way, unless streaming a music inside a movieclip then let it start at a certain frame counts (horrible way).

Just go get Audacity. It's a free and easy to use sound editor. Google for it.


187.

None

Topic: Can't Trasfer Flash Pc To Mac?!

Posted: 11/25/08 11:04 AM

Forum: Flash

Well IIRC when you acquire a license, you're given two, and if somehow you couldn't deactivate one (like PC went bonkers, or formatted before doing so), then there's no turning back.


188.

None

Topic: shapeflag hittest help

Posted: 11/25/08 10:42 AM

Forum: Flash

Put the trace function inside the event handler.


189.

None

Topic: shapeflag hittest help

Posted: 11/25/08 06:07 AM

Forum: Flash

So you put an enterFrame even inside an enterFrame handler. . .

Also, try adding _root to the MCs you're referencing to (in code, of course).


190.

None

Topic: Symbol animation vs frame by frame?

Posted: 11/25/08 05:48 AM

Forum: Flash

Tweening to save time, but I wanted detailed tweening so often I end up editing each frame.


191.

None

Topic: Lowest Rated Game You Own

Posted: 11/24/08 11:11 AM

Forum: Video Games

Signed copy of Terrawars: NY Invasion. Around 2.0 from GS I think.


192.

None

Topic: why isnt is removing the clip?

Posted: 11/24/08 09:29 AM

Forum: Flash

Try tracing its depth. trace(MC.getDepth()). See what you get.


193.

None

Topic: God damn BG art.

Posted: 11/24/08 09:27 AM

Forum: Flash

Total noob?

Yours put mines to shame.


194.

None

Topic: Wacom 3: W-P-S

Posted: 11/23/08 12:49 PM

Forum: NG News

That picture is creeping me out.


195.

None

Topic: Should I Buy L4d?

Posted: 11/23/08 09:52 AM

Forum: Video Games

Wait for price drop.

Though I spent 14 hours on the demo and left wanting to play more, it's a ripoff at $50.


196.

None

Topic: Undefined AS

Posted: 11/23/08 04:48 AM

Forum: Flash

if(_parent.username==undefined || _parent.username==""){
stay;
}

"this._parent" is pretty redundant.


197.

None

Topic: Left 4 Awesome! (need Voice Actors)

Posted: 11/23/08 02:13 AM

Forum: Flash

At 11/23/08 02:04 AM, yugimt wrote: my Deagle.

Great job... at using Trace Bitmap function.


198.

None

Topic: Wacom what?

Posted: 11/22/08 02:17 AM

Forum: Flash

Bamboos are meant more for very light and casual casual entry-level users.

Graphires are still Graphires. They're still more for hobbyists and those who just can't afford an Intuos, yet is still serious about drawing.


199.

None

Topic: Newb To Oop In Flash (as2.0).

Posted: 11/21/08 12:50 PM

Forum: Flash

So I guess what I was doing was a very horrible way to mess around with OOP with Flash. :/

Thanks for the tip! I really find it very strange that giving an MC in the library with the same identifier as a classfile would automatically make it inherit the class' attributes though. Shouldn't it be better if I typed "Toy" under the AS2.0 Class box under Linkage instead? So that I can have multiple MCs in the library be able to inherit the attributes of the class. I've tried using either boxes, and both seemed to work fine. Tested by giving the class a method that returns a number.


200.

None

Topic: array confusion and manipulation

Posted: 11/21/08 11:49 AM

Forum: Flash

STOP.

What's this I'm seeing?

if enemies[i] = undefined

201.

None

Topic: array confusion and manipulation

Posted: 11/21/08 11:48 AM

Forum: Flash

the enemies don't affect the array at all, they die, they leave, and the array ends up pointing to nowhere.

That's why. The enemy doesn't bother trying to update the array when they leave, leaving your array with undefined values. Rather than cleaning up the array once in a while, you should make sure your enemy will do the job himself and find his address in the array (just compare them, like enemy[i] == enemyInstance).

Also, tried comparing an undefined or a null? I've never really bothered trying if Flash considers the two different. >.>


202.

None

Topic: Newb To Oop In Flash (as2.0).

Posted: 11/21/08 11:44 AM

Forum: Flash

So after all this time, I'm only really trying OOP just now. >_> Just playing around.

I created a class "Toy" (Toy.as). I have my main Flash file (let's call it Main.SWF). I need to be able to place an instance of a Toy on the stage of Main.SWF by declaring an instance and passing the coordinates to it.

Code for Toy:

class Toy{
	private var type:String    = "";
	private var libID:String   = "";
	private var stageID:String = "";
	private var locX:Number = 0;
	private var locY:Number = 0;
	
	public function Toy(myType:String, myX:Number, myY:Number){
		trace("create");
		type = myType;
		locX = myX;
		locY = myY;
		
		if (type == "Teddy"){
			libID = "libToy_TeddyBear";
			stageID = "mcToy_TeddyBear";
			_root.attachMovie(libID, stageID+_root.getNextHighestDepth(), _root.getNextHighestDepth(), {_x:locX, _y:locY});
		}
	}
}

As for Main.SWF:

var teddy:Toy = new Toy("Teddy", 100, 100);

The problem is with attaching. The attachMovie() will not work, and I was fairly certain it wouldn't, since I "_root" couldn't really mean the stage of Main.SWF. I thought maybe I could pass the Stage, but I don't even know it's data type. I'm sure there's just some tidbit I'm missing here. Help is greatly appreciated.


203.

None

Topic: array confusion and manipulation

Posted: 11/21/08 11:24 AM

Forum: Flash

as the help file explained to me, enemies[i] = newEnemy_mc doesn't actually put anything in the array, it creates a pointer to the MC.

That's what I meant. Anyway, could you post the piece of code that removes itself from the enemy array? On a sidenote, I'd rather suggest thinking Array in AS2.0 as more of a linked list rather than having a fixed length. Apart from making it more dynamic, you wouldn't have to worry much who should occupy which slot.

I noticed while debugging that it's index in the array became undefined when this happened.

I'm guessing it's because you removed the movie clip, but did not remove him from the array. That way, you still retain a pointer to a movie clip that you just removed (ie, pointing to nowhere, hence undefined).

are these nothing areas "void" things that I also have to look for,

A void method means it doesn't have to return any value.


204.

None

Topic: need source

Posted: 11/21/08 11:16 AM

Forum: Flash

Talk about lazy.


205.

None

Topic: array confusion and manipulation

Posted: 11/21/08 10:18 AM

Forum: Flash

You sure you're removing the enemy properly from the array? I had a similar sounding problem before. Turns out my splicing was wrong and I wasn't referring to the right MC, so nothing got removed from the enemy array.


206.

None

Topic: if ( array[0] = something ) ?

Posted: 11/20/08 07:04 AM

Forum: Flash

if (array[0] == something){
do things
}


207.

None

Topic: Windows 2000

Posted: 11/19/08 11:25 AM

Forum: Flash

Didn't seem to mind when you forked several hundred dollars for Flash, huh?

Just assemble a PC yourself, you'll save more money than buying packages.


208.

None

Topic: Windows 2000

Posted: 11/19/08 11:20 AM

Forum: Flash

...buy a new computer?

Joke topic?

209.

None

Topic: Go button, nextFrame(), won't run

Posted: 11/19/08 11:13 AM

Forum: Flash

Most of the CS3 flank I've read comes from kiddies who hate how much more formal AS3.0 is compared to the allowable hodge podge coding in AS2.0.

Anyways, I've read the review on that AS3.0 book. Doesn't sound good, Essential ActionScript 3.0 sounds like the better choice. But if you'll pursue on AS2.0, go for that Flash 8 ActionScript Bible. Lots of the ActionScript 3.0 Bible reviews I've read were disappointed at how bad the book was compared to their AS2.0 iteration.


210.

None

Topic: Go button, nextFrame(), won't run

Posted: 11/19/08 11:05 AM

Forum: Flash

Well, the ActionScript Bible gets mentioned fairly often, but I've never held any book on Flash, so I can't give personal feedback. Yes, the link is Flash 8.0. CS3 is hardly any different, the only notable thing about it is AS3.0.


All times are Eastern Standard Time (GMT -5) | Current Time: 10:04 PM

<< < > >>

Viewing 181-210 of 2,332 matches. 1 | 24 | 5 | 6 | 7 | 8 | 9 | 104478