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


<< < > >>

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

1.

None

Topic: Segregating the Flash forum

Posted: 11/09/09 01:18 AM

Forum: Flash

I support this, it is difficult to know what topics are relevant.


2.

None

Topic: Trigonometric movement?

Posted: 11/09/09 01:17 AM

Forum: Flash

That doesn't turn at a specific point.


3.

None

Topic: fullscreen...

Posted: 11/09/09 01:16 AM

Forum: Flash

There is no syntax error there. The issue is more like a logic error where the state variable loses sync with the real property if the user hits escape to forcibly leave fullscreen.


4.

None

Topic: action script 3??

Posted: 11/08/09 12:07 PM

Forum: Flash

As 3 is easier to code in, since it tells you when it finds an error.


5.

None

Topic: [php] Cookie Problem

Posted: 11/08/09 12:03 PM

Forum: Programming

Good idea, horrible execution. You are missing the fact that cookies are read and sent by the client. You can not trust the client with the userid to be logged in as.


6.

None

Topic: AS3 Help : if Condtion wont work :(

Posted: 11/07/09 01:18 PM

Forum: Flash

as 2: breif, messy, hard to debug, insane event system, evolved into what it is today
as 3: descriptive, easy to debug, easy event system, clearly designed with the full system in mind from the start.


7.

None

Topic: This clock...

Posted: 11/07/09 01:15 PM

Forum: Flash

Most people are used to mod 12 clocks, not mod 24 clocks.


8.

None

Topic: Custom level code

Posted: 11/07/09 01:11 PM

Forum: Flash

If compression makes sense, you shouldn't be using copy and paste to begin with. Just use the Filerefference class and load/save the data as a real file.
If you want people to share their creations online, just make such a system too! If you are a good enough programmer to make something that can be saved in the first place, you will be good enough to be able to written a simple system for letting users upload their creations.
I heard that the NewgroundsAPI has such a system, try asking Tom about it.


9.

None

Topic: "1037: Packages cannot be nested"

Posted: 11/07/09 01:08 PM

Forum: Flash

Fun fact, framescripts are a part of the class for the timeline they are on. And that class is already in a package, leading to this error.


10.

None

Topic: Php Regular Expressions

Posted: 11/07/09 01:05 PM

Forum: Programming

You have to write the query with special placeholders instead of adding the data in the query string directly. Then you pass this query string to a function that parses it. Then you can bind the placeholders to real values. Once that is done, you can run the query.

Do note that this is slightly more complex. Also, the mysql extension is so old that it doesn't have this already old feature, get a new extension! I recommend the mysqli extension instead.


11.

None

Topic: Custom level code

Posted: 11/06/09 02:14 PM

Forum: Flash

Not to mention that Flash has a built in compression algorithm implementation for Bytearrays.


12.

None

Topic: Php Regular Expressions

Posted: 11/06/09 02:12 PM

Forum: Programming

I would just use parametrized queries, that way, the data won't even touch the sql command.


13.

None

Topic: [as3.0] Document Class / Preloaders

Posted: 11/06/09 01:53 AM

Forum: Flash

Framescripts are a part of the class for the timeline they are placed on.

Your issue is due to not being on the stage when you need to use it. The solution is to wait for the ADDED_TO_STAGE event.


14.

None

Topic: [php] Cookie Problem

Posted: 11/06/09 01:50 AM

Forum: Programming

Why are you even using cookies here? The session system is doing a far better job than you are doing with the cookie. For example, it does not let the user tamper with the data.


15.

None

Topic: Php Regular Expressions

Posted: 11/06/09 01:48 AM

Forum: Programming

Indeed, who cares if it is synthetically valid if it doesn't actually work in the end?


16.

None

Topic: Php Cms Problem

Posted: 11/06/09 01:47 AM

Forum: Programming

To state the issue very clearly:
Outputting a string to the client will not execute it as php code. Yet, that is what you tried to do. Save php code as a file and include that file instead. Using eval also works, but should not be done, due to performance issues.


17.

None

Topic: Preloader Without Timeline Anim

Posted: 11/05/09 02:32 PM

Forum: Flash

Things used by the main timeline class is forcibly exported in the first frame. Don't do that.


18.

None

Topic: PHP Uploads

Posted: 11/05/09 02:28 PM

Forum: Programming

While it does forget to properly encode the embeded strings in the sql query, it should work.


19.

None

Topic: Class File Help As3 (3d)

Posted: 11/05/09 07:43 AM

Forum: Flash

If root is null, the object is not on the displaylist.


20.

None

Topic: Question about menu & music

Posted: 11/04/09 01:41 AM

Forum: Flash

Start it in the constructor for the timeline class. It will only be started once, when the constructor runs.


21.

None

Topic: Hidden layers show in test movie?

Posted: 11/04/09 01:40 AM

Forum: Flash

I personally think that it's stupid to hide layers in order to not get them exported. I just use guide layers instead, since they are never exported, no matter what the settings are.


22.

None

Topic: Breadth First Search Algorithm

Posted: 11/04/09 01:37 AM

Forum: Flash

A* is better for open worlds, since it doesn't waste so much search time most of the time.


23.

None

Topic: Vectors in AS3

Posted: 11/04/09 01:35 AM

Forum: Flash

flash.geom.Vector3D, exactly what you wanted, and implemented in native code for that extra speed boost.


24.

None

Topic: C++ Minor Problem

Posted: 11/03/09 04:07 PM

Forum: Programming

You are using the wrong operator. You are using the << operator in both cases, but you should only use it in one case.


25.

None

Topic: [AS3] Socket.flush behaving oddly..

Posted: 11/03/09 01:29 PM

Forum: Flash

It's about timing, the os most probably will not have time to send any packets in between the two calls.
Also, there is an algorithm that says that the stream should be idle buffered, Naegels algorithm. It is optional, but defaults to on. I am not sure if flush will bypass that algorithm.

And for the terminating nulls, it is likely due to how strings work in flash or something like that.


26.

None

Topic: 'Execute' commans=d

Posted: 11/03/09 06:28 AM

Forum: Flash

I feel like we talked about this like yesterday, it is a bad idea, but possible in as 2, as 3 does not have this bad idea.


27.

None

Topic: Why does no one use AS3!?!?!?!!!

Posted: 11/03/09 06:21 AM

Forum: Flash

The answer is simple:
Because copypaste tutorials is harder when there is more than one file.


28.

None

Topic: [AS3] Socket.flush behaving oddly..

Posted: 11/03/09 06:20 AM

Forum: Flash

TCP is not a packet delivery system, it is a stream delivery system. There is no separate packets. Just a stream of bytes that is added to once in a while.

Your system is flawed from the beginning since it assumes something that outright isn't true. TCP may cause packets to be sent, yes. But all the application sees is a pair of byte streams with no special separation marks.

It is fully legal for multiple "packets" to be joined like this. Or it could hold sending half of one "packet" for 5 sec while letting the rest be sent instantly. Your code has to deal with the fact that it's a bytestream and not packets.


29.

None

Topic: .htaccess dilemma

Posted: 11/02/09 01:26 AM

Forum: Programming

One thing for sure, no standard forbids him from having as he wants it. Each http resource has it's own access rights.


30.

None

Topic: Sound help

Posted: 11/01/09 02:57 PM

Forum: Flash

For event sounds, there is the stop type. For streaming sounds, just don't make the layer so long.


All times are Eastern Standard Time (GMT -5) | Current Time: 01:44 AM

<< < > >>

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