Questions tagged [createjs]

A suite of Javascript libraries and tools for building rich, interactive experiences with HTML5.

CreateJS is a suite of modular libraries and tools which work together to enable rich interactive content on open web technologies via HTML5. These libraries are designed to work completely independently, or mixed and matched to suit your needs.


The CreateJS Suite is comprised of:

  • EaselJS - Makes working with HTML5 Canvas a breeze
  • TweenJS - Powerful library for tweening and animating
  • SoundJS - Tools for working with HTML5 Audio API
  • PreloadJS - Asset management system
  • Zoë - Tool written in ActionScript for producing Sprites for the CreateJS library.

Resources


Related tags

1271 questions
0
votes
1 answer

createjs: Shape moves mysteriously when clicked

I'm new to HTML5 and JavaScript. I'm working on a very simple 'canvas' project where you have two test tubes and clicking on one reduces its level and increases the level of the other. I've written code to do this and it works, the only trouble is…
W.K.S
  • 9,787
  • 15
  • 75
  • 122
0
votes
1 answer

Newer EaselJS version update breaks animation

I have a working animation using BitmapAnimation, but with the newer version 0.7.0 this class has been replaced with the Sprite class and is now depracated, I'm updating my code to the new class, but there seems to be problems with my…
Kyohei Kaneko
  • 932
  • 2
  • 8
  • 25
0
votes
1 answer

Bitmaps breaking up on android when using createjs and canvas

This isn't as much of a code question as it is a performance question. I'm making a small game that's meant to work both on a desktop browser as well as in a mobile. I'm making the game using HTML5 and CreateJs and drawing most of it on a canvas. My…
Maffelu
  • 2,018
  • 4
  • 24
  • 35
0
votes
1 answer

Modular Design (Separate Prototypes from Logic)

I am just starting using CreateJS. It is easy enough to learn that I was able to quickly grasp its concepts. I just included one JS file to contain all my logic and data structures. At first, it was serviceable. But over time, I got to the point…
developarvin
  • 4,940
  • 12
  • 54
  • 100
0
votes
1 answer

How to create an imagemap using createjs

I'm using CreateJS to render graphics for my game. The images are organized into Bitmaps. However I have this heart bitmap that contains both a full/half/empty hearts. How do I use the image as a imagemap? I know there is the "mask" method, but I…
mipmap
  • 221
  • 1
  • 13
0
votes
2 answers

animating a line being drawn on the screen with EaselJS and TweenJS

Trying to find the best way (or any way) to animate a line being drawn. This is just a case study for how I would draw several lines etc to the screen creating an "intro" animation of a final image. At the moment the only thing I've figured I can do…
ocergynohtna
  • 1,703
  • 2
  • 21
  • 29
0
votes
1 answer

EaselJS with TweenJS with MovieClip

I'm running into the error: Uncaught TypeError: Cannot call method 'installPlugin' of undefined when trying to include movieclip-0.7.0.js. I've got the following in my html:
ocergynohtna
  • 1,703
  • 2
  • 21
  • 29
0
votes
1 answer

JS image on click

I have made a startscreen with an playbutton image on it. When this button is pushed, the init function should be launched. Can anyone tell me how to do this? Below the code: imgPlaybutton.onload = handleImageLoad; imgPlaybutton.src =…
0
votes
1 answer

PreloadJS, how can i test if i really use the preloading system?

I'm working on a 2d isometric map with canvas and CreateJS. I had memory problems so i use PreloadJs and i have loaded all my tiles with the lib like : preload = new createjs.LoadQueue(false); preload.loadFile({id: "first", src:"MY_URL"}); myImage…
Clément Andraud
  • 9,103
  • 25
  • 80
  • 158
0
votes
1 answer

Applying a filter to AudioContext

I'm attempting to apply a low-pass filter to a sound I load and play through SoundJS. Right now I'm attempting to do this like this: var audio = createjs.Sound.activePlugin; var source = audio.context.createBufferSource(); // Create the…
Tarrence
  • 794
  • 1
  • 6
  • 14
0
votes
2 answers

Reverse image on keydown - Javascript

What I am trying to implement here is that I have a character on my screen and I can move it around to the left, right, up and down with a press on my arrow keys. What I want to do is when I click to the left is that the image will reverse and when…
SmalliSax
  • 342
  • 3
  • 6
  • 24
0
votes
1 answer

Rotate the volume knob in html5 with createJS

I want to create volume knob using HTML5 and CreateJS. It is almost done. you can see this on following url http://www.urbantruanthosting.co.uk/radiosimulator/testpage.html but it is moving on every event of js. And I want to rotate on mouse's…
Pushpendra
  • 11
  • 4
0
votes
2 answers

How do I convert easejs path to svg

I have a js file created using ease.js which creates some shapes in canvas. But I dont want to use canvas. I want to implement it using svg. Is there a way to convert path file to svg file? Code written using easyjs (lib.FlashMuxSymbol =…
Rahul Prasad
  • 8,074
  • 8
  • 43
  • 49
0
votes
1 answer

createjs fileload event with registerSound

I am using this CDN version of createjs as I'm trying to follow along with this introductory screencast http://www.youtube.com/watch?v=OWHJa0jKJgo…
Leahcim
  • 40,649
  • 59
  • 195
  • 334
0
votes
1 answer

"Array" not working within an EaselJS CreateJS Container object

I'm working on a semi-OOP game and using EaselJS as my library. To this point I've gotten it mostly working, but I'm running into a persistent and annoying problem. When I render my tiles out, the tile container is failing. It won't read the type…
Merlin
  • 929
  • 12
  • 33