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

ActionScript3 gotoAndPlay not finding frame.

I am new to ActionScript 3, but I have a pretty good idea how to jump frames. However, I have nested frames inside a movieclip symbol and my code cannot find them. I am making a simple platforming game. ArgumentError: Error #2109: Frame label Stand…
Mary Kate
  • 67
  • 1
  • 6
1
vote
3 answers

Animate CC: Creating/accessing global function from external .js file

I need to have a function that is accessed by Animate CC through connecting to an external file by: Global>Includes. Then I need to run the function that is sitting on the external file when I click on a movie clip. For example, the code on my movie…
ristenk1
  • 435
  • 3
  • 6
  • 26
1
vote
1 answer

Actionscript navigation not working

In animate CC,(actionscript 3) I have 4 frames that need to go in sequence when the "A" or "D" buttons are pressed like so: (((((1 -> 2 -> 3 -> 4|||and then back|||4 -> 3 -> 2 -> 1))))) This works fine, but when i am back to frame 1 after the above…
1
vote
0 answers

When publishing an Animate CC .fla file, the .js will not play

I am new to animation, so my apologies if my vocabulary does not make complete sense. When I go to play my .js file, only this code comes up in both chrome and safari : (function (cjs, an) { var p; // shortcut to reference prototypes var…
Kirneun
  • 11
  • 1
1
vote
1 answer

Animate CC, creating a code for collectables

I haven't coded since Macromedia, and god things have changed. I'm at a steep learning curve and trying to get back into it. Im making a little flash game where the player collects tacos and the score goes up. No code online that I have found for…
1
vote
0 answers

Debug JSFL for Adobe Animate CC?

Back when it was called flash, we could debug using the extendScript Toolkit editor. But that editor doesn't seam to support Adobe Animate, and the official docs say to edit JSFL in adobe animate. Animate has a debug panel, but no obvious options…
user5900250
1
vote
1 answer

Adobe Animate CC - Clicks not working with a Video embedded

I'm working on HTML5 canvas in Adobe Animate CC. Before embedding video I've created click actions and added links and since the video has been added (by Components > Video) all clickable objets stoped to work. Video is playing and slides and all…
Anna
  • 11
  • 1
1
vote
2 answers

Main class was not the first class which was called in ActionScript 3.0

I have a weird problem in a game which I want to create. At first I have created a project without external classes. On the root I have three Characters and one Level. Also there is a script for the key listeners and I have eventListeners to…
Micha93
  • 628
  • 1
  • 9
  • 22
1
vote
1 answer

ActionScript 3: Adding multiple instances of the same object to the stage and removing each separately

I have a piece of code adding three insances of the same MovieClip to the stage. I also added MouseEvent.CLICK listener. Once any of the MovieClips gets clicked, I want it to be removed from the stage. My problem is, whenever any of the elements…
Dhager
  • 9
  • 3
1
vote
0 answers

Find all breakpoints in Adobe Animate

I'm updating an old .fla that was created in an old version of 'Adobe Flash Professional'. I am now using 'Adobe Animate CC' however when I attempt to save the .fla, I get an alert warning saying... This file contains the following data that will…
Zze
  • 18,229
  • 13
  • 85
  • 118
1
vote
1 answer

Drag doesn't detect drop when the canvas is made responsive

In Animate CC, and using the CreateJS/EaselJS API, I created a considerable amount of different HTML5 canvas, all of them featuring drag and drop elements, each time with progressive features. To build the drag and drop interaction, I added to a…
1
vote
1 answer

Can't get dynamic text to change in AS3

Here's the link to the whole project including all the dependencies if needed. https://www.dropbox.com/sh/3d3towtkhb4c38r/AADdxDJq9ix7bK9hTkt_VTSAa?dl=0 Basically trying to clean up some script I was left to deal with and have been banging my head…
1
vote
1 answer

CreateJS targeting mc scope issue

In Adobe AnimateCC using CreateJS I have an mc on frame one called disclaimer_btn, and an mc on frame one called discTxt. I want to be able to mouseover disclaimer_btn and gotoAndStop on a frame label in discTxt. Round about frame 150 I try to do…
Agent Zebra
  • 4,410
  • 6
  • 33
  • 66
1
vote
2 answers

ActionScripts 3 to PHP email send

I found a tutorial for send email using actionscripts 3 and php, i downloaded project files and copied mail.php to our VPS server xamp htdocs folder. Animate CC project run but nothing sent. AS3: submit_btn.addEventListener(MouseEvent.CLICK,…
A.M
  • 345
  • 4
  • 13
1
vote
1 answer

Is it possible to assign masks in an Adobe Animate CC HTML5/Canvas project via Javascript?

I've done some digging and can't find any clear documentation on this. When the user clicks the stage, I would like to pull an instance of Symbol A from the library and place it on the stage, then pull an instance of Symbol B and assign it as a…