Comments for ZIM JavaScript Framework https://zimjavascript.wordpress.com Canvas Components, Controls and more! Mon, 05 May 2025 02:55:30 +0000 hourly 1 http://wordpress.com/ Comment on Multi-touch Gestures – Pan, Pinch, Rotate with ZIM for the #HTML #Canvas with #ZIMjs powered by #CreateJS by Dan Zen https://zimjavascript.wordpress.com/2017/08/07/multi-touch-gestures-pan-pinch-rotate-with-zim-for-the-html-canvas-with-zimjs-powered-by-createjs/comment-page-1/#comment-710 Mon, 05 May 2025 02:55:30 +0000 http://zimjavascript.wordpress.com/?p=2613#comment-710 In reply to Dan Zen.

We now have templates for React, Angular, Svelte and VUE see https://dev.zimjs.com

Like

]]>
Comment on Multi-touch Gestures – Pan, Pinch, Rotate with ZIM for the #HTML #Canvas with #ZIMjs powered by #CreateJS by Dan Zen https://zimjavascript.wordpress.com/2017/08/07/multi-touch-gestures-pan-pinch-rotate-with-zim-for-the-html-canvas-with-zimjs-powered-by-createjs/comment-page-1/#comment-272 Wed, 02 Oct 2019 19:13:41 +0000 http://zimjavascript.wordpress.com/?p=2613#comment-272 In reply to Sitara Singh.

Are other ZIM functions working in your react app? Hey… sorry for the delay… we just got this message. Please join us at https://zimjs.com/slack and we can discuss further. Looking forward to seeing you there.

Like

]]>
Comment on Multi-touch Gestures – Pan, Pinch, Rotate with ZIM for the #HTML #Canvas with #ZIMjs powered by #CreateJS by Sitara Singh https://zimjavascript.wordpress.com/2017/08/07/multi-touch-gestures-pan-pinch-rotate-with-zim-for-the-html-canvas-with-zimjs-powered-by-createjs/comment-page-1/#comment-254 Fri, 13 Sep 2019 10:22:05 +0000 http://zimjavascript.wordpress.com/?p=2613#comment-254 I want to integrate this in react app. But pan, zoom , pinch etc not working.

Like

]]>
Comment on ZIM 6.3 Launches with Transform Tools for #Canvas #JavaScript #CreateJS and #ZIMjs by Dan Zen https://zimjavascript.wordpress.com/2017/10/06/zim-6-3-launches-with-transform-tools-for-canvas-javascript-createjs-and-zimjs/comment-page-1/#comment-135 Thu, 02 May 2019 20:57:45 +0000 http://zimjavascript.wordpress.com/?p=3439#comment-135 In reply to borntofree.

Hi borntoFree – sorry for the late response… just saw this. Blobs and Squiggles now have multiple select. All the best!

Like

]]>
Comment on ZIM 6.3 Launches with Transform Tools for #Canvas #JavaScript #CreateJS and #ZIMjs by borntofree https://zimjavascript.wordpress.com/2017/10/06/zim-6-3-launches-with-transform-tools-for-canvas-javascript-createjs-and-zimjs/comment-page-1/#comment-77 Fri, 04 May 2018 19:04:06 +0000 http://zimjavascript.wordpress.com/?p=3439#comment-77 Thanks for the great tool!
Do you have any plans to develop this tool? Specifically interested in the possibility of multiple selection.

Like

]]>
Comment on ZIM Meme Launches with ZIM 4.9.1 on HTML Canvas with #JavaScript and #CreateJS by Dan Zen https://zimjavascript.wordpress.com/2017/03/26/zim-meme-launches-with-zim-4-9-1-on-html-canvas-with-javascriot-and-createjs/comment-page-1/#comment-36 Mon, 17 Apr 2017 06:49:03 +0000 http://zimjavascript.wordpress.com/?p=2353#comment-36 Hi Fanatic… thanks a lot for pointing that out. I had shown an alternative loop during the What’s Bubbling video and accidentally left it in – and had just used bitmaps rather than e.bitmaps! So it is fixed now. Cheers – have fun with it.

Like

]]>
Comment on ZIM Meme Launches with ZIM 4.9.1 on HTML Canvas with #JavaScript and #CreateJS by fanatic https://zimjavascript.wordpress.com/2017/03/26/zim-meme-launches-with-zim-4-9-1-on-html-canvas-with-javascriot-and-createjs/comment-page-1/#comment-35 Mon, 17 Apr 2017 05:54:36 +0000 http://zimjavascript.wordpress.com/?p=2353#comment-35 hello, loader got problem. it’s never showing my uploaded’s images

Liked by 1 person

]]>
Comment on SpriteSheets in ZIM – canvas coding with #JavaScript and #CreateJS by ZIM 4.7.0 Launches with Animation Series, Sprite Improvements and More for HTML Canvas Coding with JavaScript and CreateJS | ZIM js JavaScript Framework https://zimjavascript.wordpress.com/2017/01/14/spritesheets-in-zim-canvas-coding-with-javascript-and-createjs/comment-page-1/#comment-26 Mon, 23 Jan 2017 04:18:10 +0000 http://zimjavascript.wordpress.com/?p=2029#comment-26 […] SPRITE ANIMATION SERIES The zim.Sprite makes use of the animate series with the run() method.  See the blog post on Sprite Updates. […]

Like

]]>
Comment on SpriteSheets in ZIM – canvas coding with #JavaScript and #CreateJS by Dan Zen https://zimjavascript.wordpress.com/2017/01/14/spritesheets-in-zim-canvas-coding-with-javascript-and-createjs/comment-page-1/#comment-25 Sun, 22 Jan 2017 05:30:27 +0000 http://zimjavascript.wordpress.com/?p=2029#comment-25 In reply to Stacey Reiman.

Make sure you:
frame.assets.load("alphabet.json");
frame.on("complete", function() {
//do code
});

// Also - you might just try:
sprite.run(null, "r");
// or whatever the label is
// the first parameter is time to play
// but with one frame - it will just stay there
// you can also use:
sprite.run({label:"r"}); // the ZIM 4TH method
// or perhaps
sprite.gotoAndStop("r");

Note: in ZIM, you should try the run() method on sprites first – this should work for most spritesheets except perhaps nested labels – in which case, you can use CreateJS commands. You should not really need nested labels if you use the animation series provided by run().

This is all pretty new in ZIM so, please let us know how it goes. Thanks! And thanks for the post, Stacey 😉

Like

]]>
Comment on SpriteSheets in ZIM – canvas coding with #JavaScript and #CreateJS by Stacey Reiman https://zimjavascript.wordpress.com/2017/01/14/spritesheets-in-zim-canvas-coding-with-javascript-and-createjs/comment-page-1/#comment-24 Thu, 19 Jan 2017 17:01:17 +0000 http://zimjavascript.wordpress.com/?p=2029#comment-24 Sorry in this case [r] is the name of the letter I want. I can add any letter there in the var theFrame and it will get just that image.

Like

]]>