Daniel Howe
Daniel Howe
See also #1224
Wonder if it is possible to attach our own onclick handler to the element, which then updates the target URL... if not too much overhead this might even be the...
just thinking aloud, but: 1. add onclick handler, which simply updates the ad.targetUrl, then cancels the click 2. do click via js not sure if we'd get the correct url...
`fontWidth()` gives the width of the text via `measureText(string).width` including leading/trailing invisibles (spaces, etc.) `textWidth()` gives the width of the smallest bounding box containing the visible text, by returning the...
Here is the current behavior (which is consistent) for the two varieties of xWidth and xBounds, noting that `textBounds()` uses the same metrics as `textWidth()`, and `fontBounds()` uses the same...
Good info and suggestions... Note however that this is NOT the issue I originally reported, which occurs (intermittently) with a sketch opened in only ONE tab/window... The next time it...
Sure, though each is a significant chunk of work (I actually wonder if they should be separate tickets). Which do you plan to tackle first?
Any thoughts on this anyone? @marcuspoehls ? thank you
### Drawing functions - [x] background - [x] fill - [x] stroke - [x] tint - [x] rectMode - [x] colorMode - [x] blendMode - [x] imageMode - [x] ellipseMode...
### Questions **1. what to return for the no-arg functions dealing with color (fill, stroke, etc)?** _In the current implementation I simply return the full color object, but an alternative...