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

array.push adding to wrong array

I have created 2 arrays, answeredArr andcorrectArr; to hold info for a game. The first time the game is completed I copy the correct answers array to the answers array: answeredArr = correctArr; After this point, every time I…
RasMason
  • 1,968
  • 4
  • 32
  • 54
-2
votes
1 answer

CreateJS click target is wrong on Samsung Internet browser

I develop a html5 canvas browser game with createjs (Adobe Animate) and after the last update of Samsung Internet browser when the user clicks somewhere, it fires the click event for totally different button. It looks like the createjs native method…
-2
votes
1 answer

Createjs and Firefox 72

After updating Firefox (Firefox 72.0) an error appeared: "The buffer passed to decodeAudioData contains invalid content which cannot be decoded successfully." Apps don't work, because of this problem with audio playback. Has anyone encountered such…
-2
votes
1 answer

Object is not moving proper with mouse movement in mobile devices

I am trying to move an object with mouse using pressmove event on the object. In PC and Tablet it is working well. But, in the mobile devices it is not working well as those have different width and height. You can view the following…
-2
votes
1 answer

EaselJS Perfromance Issue/Frame rate drops

I am working on the project below initially stages animation works fine but after 2nd level the Frame rate drops drastically, below is the link of the game can anyone look into and help me, please! http://fbapps.ae/mfc/game-demo/ thanks mustafa
-2
votes
1 answer

Creating Rainbow Gradient CreateJS

****Edit*** I have figured out the issue my next question is, why is that if I change the first X point and leave the others at 0 that I get my desired gradient effect? function init(){ var canvas = document.getElementById("easel"), SIZE =…
-3
votes
1 answer

Could somebody explain the following bit of code?

I am working on a game, that involves a snake moving across the screen. The Following script works but i found it online, so am unsure of what exactly it does var btn = new createjs.MovieClip(null, null, false, { up:0,over:10,down:60,…
MrScotia
  • 1
  • 2
-3
votes
2 answers

I want to know why this is not working, all im trying to do is get an image and use it as a stage child for my canvas

HTML CODE: I HAD TO ADD SOMETHING TO DESCRIBE THE CODE, DONO Y so obviously this is html code, don't know why its not running. the code after this is javascript. If my code is very bad and doesn't make any sense, what im looking for is basically a…
Shaker
  • 1
  • 4
-3
votes
1 answer

How to pass array value into javascript function in create.js?

Just wondering if anyone can help? I can't seem to figure out how to get the value of textArray[i].text from inside this function function tock(event) { createjs.Ticker.setInterval(83.33333333333333); var tickerInt =…
Alpinist1974
  • 21
  • 1
  • 5
-4
votes
1 answer

Guessing Game : Error Check For Repeat Guesses

I Am using Createjs/Java to create a guessing game. My game is nearly complete but my last thing that I would like to do would be to check to see if the same guess has been entered twice var result = 0; // check for matches if (myGuess >…
MrScotia
  • 1
  • 2
-4
votes
2 answers

How to create and run a file in node.js

I installed node.js new version and I checked in command prompt by using node-v and npm-v I want to know how create and run that file.
user2938731
  • 1
  • 1
  • 1
1 2 3
84
85