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
3 answers

CreateJS Flash Buttons as links

I've successfully converted a Flash file to HTML using CreateJS but I am having no joy making a symbol a link. The buttons work perfectly in the flash movie but when converted to JS/HTML5 it seems to fail. Does anyone have a solution?
Robert Owen
  • 930
  • 7
  • 12
0
votes
1 answer

How to override tick() to lower FPS in multiple Stages

Assuming we have 2 Stages and Ticker.setFPS(30), how can i override the ticker for the second stage to have let's say 15fps? // Targeting 30fps Stage['GUI'] = new createjs.Stage(gui_canvas); createjs.Ticker.useRAF =…
tsiokos
  • 1,090
  • 2
  • 10
  • 21
0
votes
1 answer

CreateJS published Movieclip divided to four

i have 200 image that shows body as a animation. just 200 image continuously. when i create html version of it by using CS6 CreateJS toolkit, i got that output. When it plays it divide screen to 4. Does anyone have any suggestion.
Engin
  • 79
  • 1
  • 9
0
votes
1 answer

Canvas browsers support using easeljs?

As I am converting my flash based virtual lab to HTML5 using EaseLJS, I thought its a good idea to ask if some one knows any browser support issues or restrictions? lots of new and old browsers out there .. I wonder how easeljs handle such…
simo
  • 23,342
  • 38
  • 121
  • 218
0
votes
1 answer

Example on how to control tweens using Ticker in CreateJS

I'm working with CreateJS and wondered if anyone here has examples of controlling tweens using the Ticker object. I'm trying to get a sprite to follow a path defined by waypoints but i don't want to control each tween (in between waypoints) by time.…
Gary Willoughby
  • 50,926
  • 41
  • 133
  • 199
0
votes
1 answer

Why onMouseUp is not fired?

I tried a simple example for createjs, yet, the onMouseUp event is not fired, what would be the reason? Here is the example I tried
simo
  • 23,342
  • 38
  • 121
  • 218
0
votes
1 answer

Object not removing child of stage in createjs

i created a stage which holds one circle and a text.i am animating both using var tween = createjs.Tween.get(ball, {loop:true}) .to({x:ball.x, y:canvas.height - 55, rotation:-360}, 1500, createjs.Ease.bounceOut) …
Gajini
  • 413
  • 1
  • 5
  • 21
0
votes
1 answer

Class Extends Container But Can't Add Event Listener?

I created a custom class extending Container. However, when I try to add a listener to it, I get the following errors: "TypeError: this.addEventListener is not a function Here's a minimal example of my code: (function() { var…
Ricebandit
  • 233
  • 4
  • 12
0
votes
2 answers

Audio playing issue on IE9

I am developing a game where in I have number of audio file to be loaded before the actual game start. I have 60 to 90 audio files. I load them and play one by one. The loading functionality is through CreaJS Lib. The audios are playing fine on…
neel dhara
  • 51
  • 1
  • 8
0
votes
2 answers

CreateJS - Change color in object

I have a .fla file where I have symbols to change skin, hair and shirt colors in a boy draw. When I export it with CreateJS I got this: // 1Hair this.shape_226 = new…
Cristianpark
  • 186
  • 1
  • 9
0
votes
1 answer

Why MovieClip is not visible?

I tried to use createjs to create a movieClip and add an image inside it like this: rect2 = new Bitmap(_preloader.getResult("rect").result); mv = new MovieClip("single", 0, false, []); mv.addChild(rect2); _stage.addChild(mv); I expect to see rect2…
simo
  • 23,342
  • 38
  • 121
  • 218
0
votes
1 answer

javascript easelJs onPress enlarge image circle

Working with javascript and the Easeljs lib and createjs, i need some help. my program draws some circles and fills them with color. also with a Ticker they are moving and with some if statements they are bouncing from the walls of the window. The…
0
votes
1 answer

CreateJS fails certification for Windows 8 apps

I have completed my Javascript Game/App, and after having the build run with no errors or warnings, I was certain the Certification SDK would pass me with flying colors. Instead it game me two failures, both related to the CreateJS libraries that…
EwanG
  • 5
  • 2
0
votes
1 answer

javascript scoping in requirejs and qunit

I've been trying to puzzle out why the scoping was a little screwy on these 2 prototype objects - the first one is my preloader based on PreloadJS and the second is my QUnit test. I've fixed the issue but I accidently deleted the original thread…
obie
  • 578
  • 7
  • 23
0
votes
1 answer

CreateJS : Handle Bitmaps

Using EaselJS (HTML Canvas framework, from CreateJS) I have a tileset, and I need to draw a tilemap. So I assigned my tileset bitmap to each tile. But of course, each tile has to draw only a part of the tileset. I figured out how to draw a part of a…
hugo
  • 3,067
  • 2
  • 12
  • 22