760 reputation
19
bio website
location Ann Arbor, MI
age 22
visits member for 1 year, 5 months
seen Nov 1 '12 at 17:45
stats profile views 16

Dec
5
awarded  Yearling
Oct
26
answered as3 different between cacheAsBitmap vs CachedSprite
Oct
26
comment as3 different between cacheAsBitmap vs CachedSprite
Did you write the CachedSprite class?
Oct
26
answered creating the right array structure
Oct
26
answered creating the right array structure
Oct
26
comment Why is WebKit not redrawing this text properly?
The outline solution is a good idea. It doesn't affect the layout like padding or margin, but still forces the redraw region to grow. Nice!
Oct
26
accepted Why is WebKit not redrawing this text properly?
Oct
25
comment Why is WebKit not redrawing this text properly?
I changed the container to have a fixed width. The padding is just so the descender of the J is visible. I think the root issue is the descender extends beyond the computed width of the text node (try selecting the text to see it). I'm looking for a solution to make WebKit repaint the entire container.
Oct
25
revised Why is WebKit not redrawing this text properly?
updated fiddle
Oct
25
comment Why is WebKit not redrawing this text properly?
Yea, I found the padding and margin fix and that will work for most cases. I'm more curious about why this is happening and if there is a generic solution to it.
Oct
25
comment determine efficiently which rectangle a point is in 2d space
You can get the color of a pixel in a canvas image with getImageData. Then you assemble the color into a hex-string, which you can use to look up the corresponding object.
Oct
25
asked Why is WebKit not redrawing this text properly?
Oct
25
answered What is “this” bound to in a frame script?
Oct
25
comment How to scope a Javascript application
@pilau Matt is correct, prototype functions operate on the instance and aren't like static methods at all. myFramework.foo = function() { } creates an instance function. myFramework.foo() will call the instance function if it exists, or the prototype function if it doesn't.
Oct
25
comment How to scope a Javascript application
If you are coming from a class-based inheritance model, you can think of prototype methods as static. Creating a method on the prototype creates it for all objects that extend that prototype. In your example, the this statement would refer to the function instance, which is quite different from the prototype.
Oct
25
comment Javascript - Matching a hyphen in regex
To add to others, the sequences in [] are text based, not number based. [0-9] means match any digits between 0 and 9, not any number. Bit of a weird distinction, but it means you cant say [0-10] because 10 is not a digit.
Oct
25
comment As3 draw bitmap + copyPixel around mouseX and mouseY
In your question you ask why it is drawing the whole stage, could that be the line that is doing that?
Oct
25
comment As3 draw bitmap + copyPixel around mouseX and mouseY
What is bd and why do you draw _parentStage.mc_mainContainer to it?
Oct
25
comment javascript crashes in a browser when running this script, what's wrong?
Whoops, fixed those. I edited the snippet several times and didn't test the edits. Regarding the upvote remark, I would assert that the post is helpful even with those errors. I have to ask why you didn't just edit the post to fix such a small portion of the code?
Oct
25
revised javascript crashes in a browser when running this script, what's wrong?
corrected function