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,324 matches.


<< < > >>

Viewing 61-90 of 2,324 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94378

61.

None

Topic: Making Defence Game With No Arrays?

Posted: 01/16/09 01:09 PM

Forum: Flash

What next?

Making a game that is far simpler than a TD game.

And learning how to program, so you can make any game you want.


62.

None

Topic: Flash Game to iPhone App?

Posted: 01/16/09 12:37 PM

Forum: Flash

Afaik, iPhone apps are written in Objective-C. If you're familiar with C and well-versed with OOP, you wouldn't have much of a hard time learning the language, so if you've been using AS3.0 the proper way (as in writing code in *.as files), you should be fine.


63.

None

Topic: Making Defence Game With No Arrays?

Posted: 01/16/09 12:34 PM

Forum: Flash

UF mentioned something about adding children, but I never really bothered reading up more on it. Arrays are very easy, come on. You've probably been using arrays without realizing it, since a string is just an array of chars.


64.

None

Topic: Smoothing in flash Cs4

Posted: 01/14/09 09:01 AM

Forum: Flash

o_O How'd they change it? I really liked smoothing.


65.

None

Topic: Stopping duplicates: Math.random()?

Posted: 01/13/09 12:47 PM

Forum: Flash

See? I was right!

Not Gust though. >.>

66.

None

Topic: Looking for flashers

Posted: 01/13/09 12:18 PM

Forum: Flash

"I have an idea for a game/movie. Make it for me, slaves."


67.

None

Topic: Stopping duplicates: Math.random()?

Posted: 01/13/09 12:02 PM

Forum: Flash

var numList:Array = new Array();   //Array of random identical unique numbers.
var hasIdentical:Boolean = false;
while(numList.length < 10){  //while we still don't have 10 random unique numbers
  hasIdentical = false;
  randNum = pickRandomNum();   //pick ONE random number
  for (int i = 0; i < numList.length; i++){   //going through the list of picked numbers
    if (numList[i] == randNum){   //if there is any identical pair, skip the rest of  
      hasIdentical = true;   //we found an identical
      break;  //cut the for loop, because of previous line
    }
  } 
  if (!hasIdentical){   //If the number isn't identical to anything in the list
    numList.push(randNum);   //add it
  }
}

Might be wrong, but the idea is to check for an identical number against the current list of random identical numbers for every number randomly generated. Gust or some another AS god will be able to provide something more elegant. >_>


68.

None

Topic: Loading MovieClips.

Posted: 01/12/09 07:50 AM

Forum: Flash

attachMovie()
removeMovieClip()


69.

None

Topic: Ultimate Pwnage

Posted: 01/11/09 11:50 AM

Forum: Flash

Zero.

The forum is not a place to advertise your Flash, this is why you have your own NG blog.


70.

None

Topic: Random frame

Posted: 01/11/09 07:39 AM

Forum: Flash

on(release){
   var min:Number = 20;
   var max:Number = 30;
   var randNum:Number = (Math.random()*(max-min))+min;
   _root.gotoAndStop(randNum);
}

71.

None

Topic: Whats the average FPS people use?

Posted: 01/11/09 01:07 AM

Forum: Flash

30FPS minimum for games.

You'd have to be a blind tool not to be able to differentiate between 24FPS and above. Playing DMC4 at 30FPS gave me headaches compared to playing it at 60FPS.


72.

None

Topic: Vcam And Importing Movies Help

Posted: 01/10/09 10:24 AM

Forum: Flash

Turn off your caps lock.

Maybe we'll read your plea for help after that.


73.

None

Topic: Importing music help needed

Posted: 01/08/09 12:26 PM

Forum: Flash

Required if you want to export a sound to mp3.

Not required if you're okay with wav.


74.

None

Topic: Importing music help needed

Posted: 01/08/09 12:13 PM

Forum: Flash

Import then Export using Audacity + lame_enc.dll.

Import new mp3 to Flash.


75.

None

Topic: need help with actionscript code

Posted: 01/08/09 10:55 AM

Forum: Flash

What's the error code?

Help us help you!


76.

None

Topic: pls help with a Variable problem AS

Posted: 01/08/09 10:23 AM

Forum: Flash

Perhaps _parent instead of parent?


77.

None

Topic: i sucks at flash, plz help me?

Posted: 01/06/09 08:43 AM

Forum: Flash

You shouldn't really be here, since you're below 13 you're violating the COPPA.

and seems like flash isn't desighed to do it that way( or is it?)

Why shouldn't it? There are a lot of great frame by frame Flash movies, ranging from stick fights to Adam Phillips' movies like Waterlollies. Note that he used to work for Disney until he resigned.

Tweening is just there to ease animation. I has far less variety in frames, but it saves time.

And don't let age as an excuse. Unless I got my numbers mixed, JAZZA startedhis Paladin series, with the first episode submitted while he was just 13. The last episode was started when he was ust 16 and finished it 2 years later.


78.

None

Topic: removeMovieClip?

Posted: 01/05/09 12:01 PM

Forum: Flash

onClipEvent (enterFrame) {
the_head.swapDepths(1);
the_head.removeMovieClip();
the_tail.swapDepths(2);
the_tail.removeMovieClip();
}

If that doesn't work, then some variable name is misspelled, or there's something wrong about how you structured your MCs, and I would take a wild guess and suggest that you do:

_root.the_head . . .
_root.the_tail . . .


79.

None

Topic: removeMovieClip?

Posted: 01/05/09 11:46 AM

Forum: Flash

If that's your actual code, way to misread Kirk-Cocaine's post. Lacks the parenthesis to indicate that it's a method.


80.

None

Topic: removeMovieClip?

Posted: 01/05/09 09:18 AM

Forum: Flash

Check if your code is actually "seeing" the MCs by tracing a value from them, like the_head._x.


81.

None

Topic: MC's wont attach at given Co-ords

Posted: 01/05/09 02:04 AM

Forum: Flash

Typo.

getNextHighest should be a method.

Change it.


82.

None

Topic: MC's wont attach at given Co-ords

Posted: 01/05/09 01:55 AM

Forum: Flash

Format:

attachMovie(libraryName, stageName, depth, {initial values});

You can try something like:

attachMovie("Bullet", "Bullet"+p, _root.getNextHighestDepth, {_x:this._x, _y:this._y});

83.

None

Topic: repeat linear efect in flash 8?

Posted: 01/04/09 06:11 AM

Forum: Flash

What do you mean by a linear effect?


84.

None

Topic: Action scripts

Posted: 01/02/09 02:19 PM

Forum: Flash

Doubt it's loadMovie() he wants. Preloaders, more likely.


85.

None

Topic: Difference Between As2 And As3?

Posted: 01/02/09 06:26 AM

Forum: Flash

I'd suggest you just jump straight to AS3.

I'm still at AS2, but looking at some sample codes, it's not really that much different, and in fact I like it better than AS2 because it's cleaner. I don't even do old AS2 habits like onClipEvents and OEF onKeyDowns anymore.


86.

None

Topic: where to buy flash?

Posted: 01/01/09 01:21 PM

Forum: Flash

*facedesk*

I was meaning to type Pivot, I have no idea why I typed ToonBoom, which is a professional animation software. >_<

Oh, it's 2AM already.

87.

None

Topic: where to buy flash?

Posted: 01/01/09 12:55 PM

Forum: Flash

Flash is a professional tool, that's why it's expensive for you.

If you wanna stick to less-capable animation-only software that's free, go get LiveSwif or ToonBoom.


88.

None

Topic: Help

Posted: 01/01/09 12:45 PM

Forum: Flash

Is miniBoss a Boolean or a MovieClip? The condition kinda doesn't make sense if it's the latter.

You can probably try if (_root.miniBoss == null), but I'm not sure.


89.

None

Topic: Happy New Year!

Posted: 01/01/09 09:57 AM

Forum: NG News

Happy new year!

Gonna look through the history now. :D


90.

None

Topic: anyone that wants a setup file thg

Posted: 12/31/08 01:46 AM

Forum: Flash

I do hope you're talking about trials and demos, otherwise you are so gonna get the banhammer laddy.


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

<< < > >>

Viewing 61-90 of 2,324 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 94378