Questions tagged [animate-cc]

This tag is for question pertaining to Adobe's "Animate CC" software (formerly Flash Professional).

Adobe Animate (formerly Adobe Flash Professional) is a multimedia authoring tool/IDE and computer animation program developed by Adobe Systems.

It is used for creating animation/video, desktop applications, RIAs ("Rich Internet Applications"), HTML5 web content, and Android/iOS mobile applications.

Adobe Animate CC (Creative Cloud) was first released in Dec 2015. The version at that time was labeled "2016". New features included:

  • Adobe Stock integration
  • 4K resolution video export
  • Creative Cloud Libraries support
  • TypeKit integration
235 questions
1
vote
1 answer

CreateJS JavasScript Frame Scripting in Animate CC

I used to be a Flash Developer, and I'm trying to understand the differences between ActionScript and the new CreateJS platform. I'm finding it difficult to find answers on Google so I figured I would ask here in hopes an expert can give me a solid…
Cmaxster
  • 1,035
  • 2
  • 11
  • 18
1
vote
2 answers

Issue with removing eventlistener in actionscript

I'm not new to flash, but I'm a bit of a noob with actionscript, trying to build an app in flash pro (or rather, animate cc) which will (hopefully) teach the users music theory (how to read music, etc.). What I want is to have different lessons on…
1
vote
2 answers

Saving bitmap on iOS using Adobe AIR

I'm finally trying to port my Flash games to apps, starting with iOS. I'm stuck on the image saving functionality. In swf's, I used jpegencoder to save to the desktop server. It seemed with some research that that code should still work on…
ola.rogula
  • 307
  • 1
  • 9
1
vote
4 answers

Adobe Animate CC and JavaScript - Collision Detection

I am using Adobe Animate CC and coding in JavaScript. I am trying to detect a collision between two symbols using the following code: createjs.Ticker.on("tick", gameLoop, state); function gameLoop(){ var pt = player.globalToLocal(collect.x,…
ALR
  • 441
  • 2
  • 7
  • 19
1
vote
2 answers

Adding Preloader on Animate CC

I'm new in Adobe Animate. Is there a way for adding a preloader for loading image assets when creating a Canvas in Adobe Animate CC? Is it the same way as inserting the loadqueue class on the html file after the Animate CC has published the html and…
Iverson
  • 179
  • 3
  • 11
1
vote
1 answer

Animate CC javascript Buttons not working all the time?

I am making a simple presentation in Animate CC, and I have several buttons, all with different names, similar functions (gotoAndPlay). Only one of the buttons work (button 22), and only on the first click, the second click it goes to the wrong…
Fushy
  • 83
  • 2
  • 13
0
votes
0 answers

AS3 Particle Explosion Crash

Hellooooo, hope y'all are doing great. A while ago, I asked a question about how to do particle explosions in AS3 when I was coming from AS2. Luckily, I got help from Organis (thank you so much btw), but every time I try export the animation in SWF,…
mahmad1018
  • 13
  • 2
0
votes
1 answer

How to change a publish template html to use a function that's within $ANIMATE_CC_SCRIPTS token?

Awhile ago I found a little bug when the html5 was added to the iOS home screen. With the web app open, during screen orientation changes, the canvas doesn't scale properly. It's because Animate's resizeCanvas code fires too fast. So I added a…
Trial
  • 47
  • 5
0
votes
1 answer

How to scaleX an object from the side, instead of centered in Animate CC HTML5?

I managed to create a progress bar where I used queue.on("progress", handleProgress); to change the scaleX of a movieclip I named as bar_mc. var queue = new createjs.LoadQueue(); queue.on("complete", handleComplete); queue.on("progress",…
Trial
  • 47
  • 5
0
votes
1 answer

how to access the currentTarget movie clip from a button click

I need help with JavaScript in Adobe AnimateCC: I have two different movie clips and a button. I would like to be able to click on a movie clip (making it the currentTarget) and then click on a button which calls the currentTarget (the…
Zaffer
  • 17
  • 2
0
votes
0 answers

Check if object is painted

I'm trying to create a coloring game for kids using animate cc. I used the following code: var drawingCanvas; var oldPt; var oldMidPt; var color; var stroke = 50; var index; var that = this; this.colorArray = ["#FF0000", "#009900", "#FFFF00",…
TheGunners
  • 185
  • 1
  • 13
0
votes
0 answers

action script 3.0 in adobe animate cc , how to solve click go on the web page

when I test movie in adobe animate the function of button fb can directly go to the fb page but when I export to the .swf file it cannot go to fb page i do not know how to solve this issue someone help this is my project...
0
votes
1 answer

Text dynamic size - Animate CC HTML5canvas

I need to have a dynamic text field to control by code the size of the text and the text. I create a dynamic text field on the Stage with the "notification" instance and the following code: function Message () { var text1 = new createjs.Text…
0
votes
1 answer

drag and drop in instance, button on main timeline dos not play instance from beginning

i created an mc with instancename subtraktiv that plays automaticly until frame 31. in frame 31 i have the actionscript for drag and drop for a mc named cyan2 here is the code in the timeline of mc subtraktiv…
0
votes
2 answers

Why is this.stop() changing the z-index I set with setChildIndex() in Adobe Animate?

I've been having difficulty getting the expected results with setChildIndex(). In this example I have 2 MovieClip instances named redDot and yellowDot, and a black square Shape. I would expect it to place yellowDot on bottom, then square, then…