Michael Aufreiter
Michael Aufreiter
http://localhost:6006/#aufreiter/cee-releases-new/1 1. Filter Shortcode MP250 CRG708H 2. Filter Costcentre BJ Fax & MF Products /// value CRG708H gets hidden.... 1. Release MP250 ..... Madness...
When accessing `/user/project` a sheet-overview might be useful too.
``` dejavis serve # defaults to 5000 dejavis serve -p 5001 ```
default order is: 1. translate 2. rotate 3. scale ``` uv.Actor.prototype.tWorld = function() { return uv.Matrix() .concat(this.tWorldParent()) .translate(this.p('x'), this.p('y')) .rotate(this.p('rotation')) .scale(this.p('scaleX'), this.p('scaleY')); }; ```
E.g. ``` // Remove a specific node scene.remove('frank'); // Remove all actors with an x-value greater than 10 scene.remove(function(a) {return a.properties.x > 10); }); // Replace a certain actor with...
Eg.: ``` scene.add('kevin', new uv.Bar({}); scene.get('kevin').add(new uv.Label({text: 'Kevin')); scene.get('kevin').p('rotation', uv.PI/2); ```
Currently when you paste images into the editor they'll be converted to base64. But we don't want to store base64 strings in the HTML in our database. We should be...