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
2
votes
1 answer

Actionscripts 3 POST JSON with Content Header

I'm trying to post JSON to server but code not working. I found some example to post JSON with Actionscripts 3 but i need to define content type in code. i post my test code here. I tested url+header+body in firefox RESTClient and they…
A.M
  • 345
  • 4
  • 13
2
votes
1 answer

convert simple rotation code AS2 to AS3

A flash-file was send to me with some animation in it. The client asked if I could just adjust a couple of images in the animation. But with the update to Animate CC, AS2 is no longer supported, so the animation doesn't work anymore. Since I'm not…
2
votes
2 answers

How to separate strings in actionscripts 3

I need code sample to separate a string, i'm new developer please write sample code. thanks. This is string: username@gmail.com|3.705|18|0.90 I need to separate each part between "|": username@gmail.com 3.705 18 0.90
A.M
  • 345
  • 4
  • 13
2
votes
1 answer

ActionScripts3 Movie clip click event issue

I'm trying to write some code for a movie clip to make a clickable area in stage in specific frame, There is an error that i couldn't find what is that error. "btn_SETTINGS" is a movie clip. import flash.ui.Mouse; import…
Mohammad Samir
  • 211
  • 1
  • 8
2
votes
1 answer

How to create scrolling list with picture in Adobe Animate CC/ActionScripts3

I'm a designer and animator, I newly start to coding with Adobe Animate CC, In all versions of adobe flash there is List item but i couldn't find a simple way to add image and text to it, if possible guide me how can i make a scrolling list like…
Mohammad Samir
  • 211
  • 1
  • 8
2
votes
1 answer

Animate / EaselJS - removeEventListener not working

I have an issue w/ Adobe Animate CC, and the Javascript framework it uses, EaselJS/CreateJS. I can add event listeners w/o issue, but I cannot remove them. I have tried various things from the debugger, including stepping into their JS…
2
votes
2 answers

Trying to use indexOf to find index value of the array when the buttons are clicked

I'm using Adobe Animate CC for a canvas project. I have an array that I assigned events listeners to like so: for(var i = 0; i < navBtnArray.length; i++ ){ navBtnArray[i].addEventListener("click", navigationControls); } What I am trying to figure…
icekomo
  • 9,328
  • 7
  • 31
  • 59
2
votes
1 answer

EaselJS: How to access the children after instantiating object from library

I need some sorcery to get children of an object that I've just instantiated. Here's the story: So I have an Animate CC and I'm making a MovieClip with few children inside. After I'm happy with it I'm setting Linkage in the library to FooClip and…
3vilguy
  • 981
  • 1
  • 7
  • 20
2
votes
1 answer

Including code files in HTML 5 Canvas Animate CC documents

We're currently transitioning from AS2 in CS6 to the HTML5 Canvas with Javascript in Adobe Animate CC, while trying to retain as much of the functionality we've built in AS2 over the years. So far, the biggest thing I've not been able to replicate…
Stuart Kemp
  • 150
  • 1
  • 11
2
votes
1 answer

How to stop program from looping in Animate CC 2015

Animate CC workframeHow do i stop this program from looping? The stop(); function won't work. It is not an animation clip but a drag and drop game. Because I'm still new to AS3, I would appreciate it if someone answered my question with…
CHIGGAJX
  • 41
  • 8
2
votes
2 answers

Trouble referencing object from within function - adobe animate canvas

I am having trouble getting a function to reference a movie clip on the stage (thatsRight). I can reference it outside of a function to initially set it visible = false and inside the this.Correct function to visible = true, but calling another…
efortin
  • 21
  • 3
1
vote
1 answer

AS3 Particle Explosion

I'm coming from AS2 and having trouble converting to AS3. I'm trying to make an exploding particle using a movie clip but keep running into errors. Here's the original AS2 script: maxparticles = 200; //number of particles i = 0; //counter, for…
mahmad1018
  • 13
  • 2
1
vote
1 answer

How to remove addEventListener when jumping between frames in Animate CC HTML5 Canvas?

I seem to have trouble removing addEventListeners when I jump between frames. When I jump back and forth, the addEventListeners still seem to stack up: Frame 1 code: this.stop(); this.arrowForward_btn.addEventListener("click",…
Trial
  • 47
  • 5
1
vote
1 answer

How to make object jump to cursor/touch position on mousedown?

based on the createjs drag and drop demo, I'm trying to make it so that the circle jumps to the position of the cursor/touch on mousedown. I managed to make the dragging work, but no idea how to make the circle jump to…
Trial
  • 47
  • 5
1
vote
0 answers

How to add subtitles to the Animate CC HTML5 canvas video component

I am working on Animate CC and want to have a subtitle for the video component. Would anyone be able to help me out?
Code-der
  • 11
  • 2
1
2
3
15 16