HanClinto

2,214
Reputation
166 views

Registered User

Name HanClinto
Member for 1 year
Seen Nov 24 at 20:14
Website
Location
Age
Oct
11
awarded  Yearling
Oct
7
revised Pasting bitmaps into as3 app
edited tags
Oct
7
awarded  Enlightened
Oct
7
awarded  Nice Answer
Oct
3
accepted Detecting Memory Leaks in ActionScript-3 Project.
Oct
1
comment How to reduce my flash game’s background engine 600MB memory usage peaks?
+1 for object pooling
Oct
1
revised Adobe AIR - Weird Framerate / Memory Issue (Maybe startAtLogin issue? )
removed defunct "as3" tag
Sep
29
comment Enums in AS3 / Flash / Flex?
Cool, thanks for the suggestion!
Sep
16
answered mxmlc generates different binarys (swf) even with no code changes
Aug
20
revised Actionscript Angle of a Line Trig
edited body
Aug
20
comment What is your best programmer joke?
@Windows programmer: Wow -- sure 'nuff, you're right. :) Ultimately I just had to test it, so made a small test program and compiled it with GCC using the -Wsequence-point flag. Calling "printf("%d", c - c++);" yielded: "test.c:7: warning: operation on `c' may be undefined" Nice catch!
Aug
19
accepted Actionscript Angle of a Line Trig
Aug
19
answered Actionscript Angle of a Line Trig
Aug
17
comment What is your best programmer joke?
@Windows programmer: Why? The rules in the ISO standard (see section 1.9, paragraph 7) say that the value of any operand should only be modified once in a given expression, and that the order of modification side effects is un-specified. The equation (as originally written) was (C == C++), not (C = C++). If it were the latter, it would be undefined behavior. But because there is only one side effect, the behavior should be deterministic. Regardless, I've changed the equation to fit more with the original question ("What's the difference between..."), but both are legit.
Aug
17
revised What is your best programmer joke?
Changing equation to fit more with the question of "what's the difference"
Aug
16
awarded  Necromancer
Aug
15
accepted shape map file decoding
Aug
13
comment shape map file decoding
I'm sorry, I don't have any experience working with them.
Aug
13
answered shape map file decoding
Aug
11
answered Read binary C float in Actionscript 3?
Aug
11
accepted Howto allow any data type to be returned by a function in actionscript 3?
Aug
11
answered Howto allow any data type to be returned by a function in actionscript 3?
Aug
10
answered Detecting Memory Leaks in ActionScript-3 Project.
Aug
6
answered What is your best programmer joke?
Aug
5
comment Best way to deal with users double-clicking buttons in a winforms app?
@tzup: It will happily let the processing stuff execute multiple times -- just so long as they all wait their turn and execute one after the other.
Aug
5
comment Best way to deal with users double-clicking buttons in a winforms app?
@tzup: This code doesn't prevent the user from clicking multiple times. It only prevents the processing code (the "super secret stuff") from trying to execute more than once at the same time in a multithreaded environment.
Aug
3
accepted Accessing a piece of data quickly from a very large sharedObject-data
Aug
3
answered Accessing a piece of data quickly from a very large sharedObject-data
Jul
29
answered What is a good profiling/performance monitor app/method for Flash/Flex?
Jul
29
comment Flash performance for game dev: native render VS BitmapData framebuffer
@fenomas: Sorry for the late reply -- not sure why I didn't think of this before, but one thing that you might have been missing in your example is bitmap caching. DisplayObject can do caching of its objects, so that it doesn't have to recalculate filters every frame, but something about the way you were doing things might have been bypassing the caching, and causing a slowdown. I'm not positive, it's just a thought.
Jul
28
accepted AS3 Sprite Sheets
Jul
28
revised AS3 Sprite Sheets
added 869 characters in body
Jul
28
answered AS3 Sprite Sheets
Jul
28
comment Line number constant in Actionscript 3.0?
Very nice trick!
Jul
20
awarded  Popular Question
Jul
20
answered convert a PDF to a jpg ?
Jul
12
accepted Has anyone tried their software with ReactOS yet?
Jun
25
awarded  Guru
Jun
20
comment Flash performance for game dev: native render VS BitmapData framebuffer
If you use Mr. Doob's in-SWF profiler, you won't have to guess at memory usage or framerate: code.google.com/p/mrdoob/wiki/stats
Jun
20
comment Flash performance for game dev: native render VS BitmapData framebuffer
@oshyshko: #2 performed much better for me, but it's hard to give you good metrics without an FPS counter. Have you tried using a performance-measuring widget like Mr. Doob's? code.google.com/p/mrdoob/wiki/stats @fenomas: Just because DisplayObject is a pretty heavyweight class. It has a lot of checks for fancy things that you are probably not using, and if you manage all of your rendering code yourself, you're free to cut out a lot of the cruft. In my experience, the Flash display stack really isn't all that efficient (especially for thousands of objects, such as a big tilemap).
Jun
19
answered Flash performance for game dev: native render VS BitmapData framebuffer
Jun
9
answered Code completion for non .as documents in Flex Builder
Jun
9
comment Memory Leak in Flex AIR Application
Your question must be in the form of a question.
Jun
9
answered AS3 anti bot form script?