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

We found 3,570 matches.


<< < > >>

Viewing 1-30 of 3,570 matches. 1 | 2 | 3 | 4 | 5 | 6 | 763119

1.

None

Topic: Save Data Code Strings

Posted: 11/21/09 05:56 AM

Forum: Flash

If you don't even know how to make a string to begin with, you shouldn't even be thinking about making a game. First learn how to program, then write the game, not the other way around.


2.

None

Topic: Error #1033 Cpool entry

Posted: 11/20/09 06:02 PM

Forum: Flash

Ok, long story short, actionscript bytecode has the ability to store a list of constants that they will refer to. This error obviously means that either something is wrong with the definition of the list or how it is used. In either case, it honestly isn't your fault (at least not if you have to ask about this error in the first place).


3.

None

Topic: Preloader with Doc Class..?

Posted: 11/20/09 10:46 AM

Forum: Flash

Except Flex does not work, since it forcibly removes the document class.


4.

None

Topic: Split Screen

Posted: 11/20/09 04:56 AM

Forum: Flash

Apply masks if you need the content to be cut for you.


5.

None

Topic: Preloader with Doc Class..?

Posted: 11/20/09 01:08 AM

Forum: Flash

It's more or less the same stuff. Listen for progress and complete events, calculate the percentage and so on and update your display.


6.

None

Topic: TypeError: Error #1009 (Help)

Posted: 11/20/09 01:05 AM

Forum: Flash

Yes, of course he is using as 3, otherwise he wouldn't have gotten this exact error.

Moving on, I suspect a typo of some kind. I recommend using the debugger to catch the error in the act and see what is null.


7.

None

Topic: Help, with Action sciript

Posted: 11/19/09 03:53 PM

Forum: Flash

!Key.isDown is not true just when the key is released, it is true at all times when the key is not pressed down.


8.

None

Topic: What do you do to keep working?

Posted: 11/19/09 03:52 PM

Forum: Flash

I find that taking a walk with my dog helps me get away from the computer so that I can think without being busy coding.


9.

None

Topic: Tutorial: Coding On Frames

Posted: 11/19/09 07:54 AM

Forum: Flash

I wrote an article that might be relevant.


10.

None

Topic: Help, with Action sciript

Posted: 11/18/09 02:09 PM

Forum: Flash

The obvious fix is to change the used actionscript version in the publishing settings.


11.

None

Topic: Help, with Action sciript

Posted: 11/18/09 10:10 AM

Forum: Flash

"The class or interface 'KeyboardEvent' could not be loaded."
That is an actionscript 2 error. Given that his code was actionscript 3.0, it is obvious that you are not using the right actionscript version when compiling.


12.

None

Topic: Problem with volume slider

Posted: 11/17/09 12:26 PM

Forum: Flash

At 11/17/09 11:08 AM, Jams44 wrote: The math for the volume is correct.

No, it is not. The volume increases as it is moved downwards. This clearly is the right scenario in your picture, the one marked as "do not want".


13.

None

Topic: SDK for emulating a file system

Posted: 11/17/09 12:24 PM

Forum: Programming

There is no such thing.


14.

None

Topic: Include All Dlls Into A Single Exe

Posted: 11/17/09 12:23 PM

Forum: Programming

Kinda, you can include all symbols that you have a statically linkable library or an object file for.

You don't want to include the full dll for the system stuff, you are not allowed, it is not designed to work that way and it's defeating the idea of the dlls being replaceable.


15.

None

Topic: Music help

Posted: 11/17/09 01:35 AM

Forum: Flash

Stopping all sounds is the job of the SoundMixer class. But remember, you might not want to do this. After all, all the sounds are stopped.


16.

None

Topic: input box variable

Posted: 11/17/09 01:32 AM

Forum: Flash

You need to learn how to separate visible stuff from internal logic. You can save the current value in an array like proposed.


17.

None

Topic: Problem with volume slider

Posted: 11/17/09 01:31 AM

Forum: Flash

I don't think that you are considering the height of the handle itself in the calculations. The limitation box is restricting the registration point, not the full object. (But that's just my guts speaking, not something I looked up)

For the volume issue, you are not doing the right math. You should take some classes in linear functions and figure out what the issue is.


18.

None

Topic: My guy's getting stuck in a wall...

Posted: 11/17/09 01:27 AM

Forum: Flash

You are doing post collision checking instead of pre, this leads to this kinds of issues. Check for collisions before moving to the new spot, not after. This means that you don't need to remove yourself from being inside stuff, you are never in it to begin with.


19.

None

Topic: Sound visualization?

Posted: 11/16/09 06:05 AM

Forum: Flash

That is because there might be more than one tone. And instruments have overtones as well.


20.

None

Topic: Got an idea for an game

Posted: 11/14/09 02:39 PM

Forum: Flash

Write a properly formated 2000+ word description of the game, then we can talk. If you can't be arsed to do this, the project will most likely fail big.


21.

None

Topic: AS help once again...

Posted: 11/14/09 02:38 PM

Forum: Flash

Of course it only does it once, the condition stops being true after it has been run.


22.

None

Topic: Simple AS math help

Posted: 11/14/09 02:36 PM

Forum: Flash

My guess is abs(cos());


23.

None

Topic: Null Object Reference... Again

Posted: 11/14/09 02:34 PM

Forum: Flash

I am more inclined to bring out the debugger and just see what is null. No need to waste time with people who accuse innocent code.


24.

None

Topic: [php] Regex troubles.

Posted: 11/14/09 02:31 PM

Forum: Programming

echo preg_match('#^555-?[0-9]{3,}$#',$phonenumber);

25.

None

Topic: [php] Regex troubles.

Posted: 11/14/09 09:45 AM

Forum: Programming

I am surprised that you didn't get any errors about missing the separators. They are mandatory when using the perl compatible regex library. With that out of the way, let's worry about the real issue.

Your regex will match any string that has at least one lowercase character. That is usually not good enough.


26.

None

Topic: Good programmer = Bad mathematician

Posted: 11/13/09 03:44 AM

Forum: Programming

Given how bad I seem to be at practical math, I have to agree with the theory, but I am not sure about the explanation.


27.

None

Topic: AS 3.0 Advent Calendar

Posted: 11/12/09 05:58 AM

Forum: Flash

Bring out the debugger and set a breakpoint in the click handler, something clearly isn't right here.


28.

None

Topic: Hiding passwords in PHP files?

Posted: 11/12/09 01:34 AM

Forum: Programming

The problem is that it is rarely possible to store a hash instead of the real password. He simply needs it if he is going to use it as a client.


29.

None

Topic: Property of null object reference

Posted: 11/11/09 09:52 AM

Forum: Flash

Good old reference variable vs object issue. Most people are confused by this.


30.

None

Topic: Flash speeding up audio file, help!

Posted: 11/11/09 01:44 AM

Forum: Flash

Mp3 playback is buggy in Flash.


All times are Eastern Standard Time (GMT -5) | Current Time: 12:20 AM

<< < > >>

Viewing 1-30 of 3,570 matches. 1 | 2 | 3 | 4 | 5 | 6 | 763119