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
-1
votes
4 answers

CreateJS/Canvas text position changed after chrome version upgrade from 70 to 71

Createjs text position changed after chrome version upgrade from 70 to 71. please guide me.
-1
votes
1 answer

CreateJS - Collision detection with multiple objects in two containers

This is the code I am using for my collision detection: for(var k = 0; k < enemies.children.length; k++) { if(bullet.x >= enemies.children[k].x + wingmanWidth || bullet.x + sizeBullet <= enemies.children[k].x - wingmanWidth || …
Infinity
  • 243
  • 1
  • 2
  • 10
-1
votes
1 answer

How to create a fade in and fade out using CreateJS

im new to createJs and would like some help on something I got stuck on. What im trying to achieve is a fade in and fade out animation but I cant seem to get it right or even know if what im doing is in the right direction. Here is the…
legoflust
  • 1
  • 1
-1
votes
1 answer

How to show object when another object pass over it

I'm creating an animation with 5 objects using createjs and tween. The first object is a car that cross horizontally the screen and the other 4 objects are 4 buildings that I want to show once at a time every time the car pass over the object (that…
Kerby82
  • 4,934
  • 14
  • 48
  • 74
-1
votes
1 answer

How can i add cash to shapes generated from animate cc

How can i add cash to shapes generated from animate cc i don't want to miss with the file generated from Animate CC , in addtion , the file get complected quickly regards
Hani Safa
  • 91
  • 5
-1
votes
1 answer

How can i add oncomplete evetn to movie clip generated from animate CC exporter

i have a canvas project created by Animate CC , i need to add "onComplete" event to a movie clip generated from Animate CC canvas project , the solution present from createjs site : target.alpha = 1; createjs.Tween.get(target) .wait(500) …
Hani Safa
  • 91
  • 5
-1
votes
1 answer

How to use easeljs in redux

I want to play multiple sprite animation in redux (ES6). I am using npm createjs-easeljs library. I did npm install createjs-easeljs and calling as import createjs from 'createjs-easeljs'. I am getting error as Uncaught ReferenceError: createjs is…
-1
votes
3 answers

Canvas - How to find if a point is above or under a diagonale line?

In a 2D game, i need to find if an object is above or under a diagonale line. Anyone knows how to do this ? (i use createJS framework)
Simon Guichard
  • 162
  • 1
  • 9
-1
votes
1 answer

Understand CreateJs

I have some problem with understanding some code (function (lib_p, img, cjs) { var p; // shortcut to reference prototypes // library properties: lib_p.properties = { width: 364, height: 540, fps: 20, color: "#000000", manifest: [ …
Malfar
  • 9
  • 2
-1
votes
1 answer

How to add text or picture to a createjs.Sprite?

I would like to add Text or Picture to a createjs.Sprite object, to create similar sprites. How can I achieve this? I think create a createjs.Container for each Sprite is a waste of resource. Like the picture, how to add the numbers to the…
leetom
  • 723
  • 1
  • 6
  • 27
-1
votes
1 answer

how to emulate a shake with the cordova android emulator?

How can I do a shake event in this emulator to test my shaking actions ?
Jim Peeters
  • 2,573
  • 9
  • 31
  • 53
-1
votes
1 answer

aligning n-circels on a circle > no overlapping

for a data visualization im aligning n-circels on a circle. That just works fine - but i dont't know how to stop the circles overlapping each other. Anybody here knows howto? The result should work like this sketch: Link:…
SimonGG
  • 1
  • 2
-1
votes
1 answer

Fill a closed path in easeljs

Is there a way to fill a closed drawn path in easeljs? I have along string of mt(x_t,y_t).lt(x_(t+1),y_(t+1)) that draws a wacky shape. the shape closes off, but I can't find a way to have it actually fill in the closed area. Any ideas? T is how…
jbbj94
  • 324
  • 3
  • 13
-1
votes
1 answer

Easaeljs game project

In the following link basket I create a game but everything disappeared. Right now I have no clue why. I hope someone could see into the code just inspecting for give some advice. Thanks for help.
-1
votes
1 answer

framework to create tooltip (createjs and kineticjs)

I'm searching for a JS framework that is compatible with CreateJS and KineticJS to create tooltips on a canvas. I'm making an app that uses both CreateJSs and KineticJS and I want to draw tooltips on both of them (without using two libraries). Thank…
1 2 3
84
85