Questions tagged [adobe-animate]

Adobe Animate is an app (the next generation of Adobe Flash) to create animation for the web and also support the old format .swf

Adobe Animate is part of the Creative Cloud suite, and as of this has been renamed Adobe Animate CC 2018. Its latest update was on October 18th 2017.

http://www.adobe.com/il_en/products/animate.html

157 questions
0
votes
1 answer

Image Overlapping - action script 3 / adobe flash / adobe animate

I am working on a project which is loading png(png1) on run-time in front of another png(png2) image(which is placed earlier) I have done this and it is working properly, the problem is after some time png1 transparenting to the background even the…
0
votes
1 answer

Set interval with random numbers in Adobe Animate cc

I'm trying to generate random numbers every 5 seconds and to output in a dynamic text box using Animate Canvas.In the canvas, I have a dynamic text box named numberOutput. So far, I have: var max = 225; var min =…
0
votes
0 answers

Efficiently navigating arrays and selected strings

I am a noob playing around with actionscript but i feel this question is a basic coding questionMy project is similar to this picture. I have four quadrant areas (Red, blue, yellow, and green) that I am adding text buttons to each area with a…
0
votes
1 answer

Start Animation (Animate CC) only when the canvas become visible after scrolling.

I have an animation (made with Adobe animate CC) that I have included into my html file. I am trying to change its original script in order to start the animation from the beginning only when it becomes visible in the viewport of the browser.…
0
votes
1 answer

Actionscript 3 equivalent of KeyboardEvent.Repeat

I'm very much a beginner when it comes to programming; I'm doing a flash game for my 2D Game class on Adobe Animator, and I had a doubt about the code that my instructor couldn't answer himself. Long story short, I want the character speed to…
0
votes
1 answer

HTML5 with swf and .net

I have some confusion about HTML5. Why do people want to to convert swf to HTML5 - what is benefit or drawback of using swf? What are best way to convert swf, I have checked some tools like Adobe Animate CC but it seems that it does not work for…
newbeedeveloper
  • 759
  • 2
  • 6
  • 10
0
votes
0 answers

Hittestpoint not working with camera (adobe as3)

grav = 0; gravity = 2; this.character.y += grav; grav += gravity; while (this.ground.hitTestPoint(this.character.x, this.character.y, true)) { this.character.y -=gravity; grav = 0; } } I use this command for gravity and they work with camera…
0
votes
1 answer

how to manipulate graphics created with Adobe Animate CC?

So I have created some fancy graphics with Adobe Animate (HTML CANVAS)and added some animation as well. Is there a way to manipulate (or simply get) the Javascript code that generated these graphics? Say I want to use these same graphics in another…
0
votes
1 answer

Cannot add child stage using pixijs and pixi-animate

I am using PixiJs 4.4.2 and Pixi-animate to load stages generated by Adobe animate. in my project, I have divided my project into components and generated adobe stage pixijs code for each component. Now want to combine them into one project. I have…
Sahadev
  • 1,368
  • 4
  • 18
  • 39
0
votes
1 answer

Button Hyperlinking in Animate ActionScript 3.0

I'm trying to make three buttons in Adobe Animate, using ActionScript. Here is the code I'm using for button 1: button. addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler); function mouseDownHandler(event:MouseEvent):void { …
mbjb
  • 111
  • 5
0
votes
2 answers

Adobe Animate iOS app >WARNING ITMS-90722: "Certificate Expired. The signing certificate has expired?

Just came across this warning message while uploading an existing AIR App compiled using Adobe Animate iOS app. Uploaded with Apple Application Loader. I am using the latest AIR (30beta and have tried stable) and XCODE 9.3.1, Adobe Animate…
K-G
  • 2,799
  • 4
  • 26
  • 42
0
votes
1 answer

Adobe Animate Missing Export Compliance ITSAppUsesNonExemptEncryption False

Anyone know how to remove the annoying Apple Missing Export Compliance? I have tried adding ITSAppUsesNonExemptEncryption to the app's XML config file (name-app.xml). ITSAppUsesNonExemptEncryption Has no effect.
K-G
  • 2,799
  • 4
  • 26
  • 42
0
votes
2 answers

Adobe Animate CC - Responsive not working on mobile

I've got a situation where after selecting the make responsive and both settings in the publish settings so I have; makeResponsive(true,'both',false,1); In my script. The animation scales with the browser window and even in Responsive design mode…
0
votes
1 answer

How to reinitialise init(); in React to allow Adobe Animate SVG file to rerun upon route change?

I have set up a simple react project that has a reusable component called 'cover'. Within the 'cover' component, I have an animated SVG I created from Adobe Animate and have it exported into HTML, JS and SVG. This works fine on first load as the JS…
user2986096
  • 107
  • 1
  • 10
0
votes
0 answers

value is not a function heeelp

I have this code where it computes the name of the user and tells it color but it keeps on error TypeError: Error #1006: value is not a function. This is the code of my flash: import…