2,158 reputation
1318
bio website physiks.netii.net
location Chicago
age 26
visits member for 1 year, 3 months
seen Jun 13 at 21:51
stats profile views 204

Current student / web-developer intern.


Jun
7
comment How to add labels to KineticJS shapes?
There is now a labels plugin for kineticJS
May
23
awarded  Civic Duty
May
21
comment jquery UI sortable: how can I change the appearance of the “placeholder” object?
awesome solution. Thanks a bunch.
May
10
comment PHP generated csv file is displaying £ for a UK pound sign (£) in Excel 2007
helped me out, thanks
May
10
comment Preventing padding propety from changing width or height in CSS
I don't know what this black magic is but it works!!!
May
10
awarded  Excavator
May
10
revised HTML/css text in table cell not indenting
fixed markup mistake
May
9
comment Zend: Form validation: value was not found in the haystack error
This was EXTREMELY helpful, thank you so much.
May
7
comment Kinetic.js: Prevent draggable stage from going off-boundaries
after fiddling around with these jsfiddles, pun I realize that when you zoom, you aren't really changing the position of the stage, just it's scale. Hence the x,y coords don't really change. What you want to do is calculate those x,y after scaling and disallow them to be greater than 0 in you dragbound function.
May
3
comment Kinetic JS Multi-Touch Scale Stage
post some code and I'll see if I can help you
May
2
comment Kinetic JS Multi-Touch Scale Stage
not really, redrawing on mobile devices is costly. The thing to do would be to somehow define an area to redraw rather than the whole layer.
May
1
comment box2dweb and kineticjs: poor update rate
looking at your source code on the preview, it seems that you have a lot of layers in the init() function, and with each step(), each layer gets redrawn, this is the main culprit of the slowdown on mobile devices.
May
1
answered Kinetic breaks when dragging one image (panning) on top of another
Apr
30
comment KineticJS image rotate and scale
well, you really havent described the problem you are having
Apr
30
answered KineticJS image rotate and scale
Apr
30
comment Kinetic JS - Change image resolution using filter when mouse is down
can you post more code? like a working jsfiddle?
Apr
29
answered KineticJs / PhoneGap original images don't clear on animation
Apr
29
comment Kinetic JS Multi-Touch Scale Stage
setScale only resizes the objects/layers, you have to translate the positions yourself dependent on calculated coordinates of where you touch/pinch.
Apr
29
answered Kinetic JS Multi-Touch Scale Stage
Apr
29
comment kineticjs drag and drop image from dom into canvas
Well, you can use jquery to read the dom object you want to create the kinetic image object. You just read the image attribute to get the source. then you need to create some pseudo-logic in jquery that will detect when you have your image over the canvas. then you can create the image object inside kinetic.