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

How to change background color of a specific row in dataGrid in actionscript 3

am using Adobe Animate in creating Air Desktop Application, in my application I have a dataGrid component all I want to do is to change the color of a specific row depending on a cell value in it, i searched here but all i got was in Flex and mxml…
Ali Nabeel
  • 50
  • 5
0
votes
1 answer

how to load dynamic text sharedObject when flash is reopened in Actionscript 3?

I created a simple username page, in frame 1, there is a button and input text like the code below stop(); var SOlastFrame: SharedObject = SharedObject.getLocal("save_frame2"); var shared_data: String next.addEventListener(MouseEvent.CLICK,…
Ahlan
  • 9
  • 3
0
votes
1 answer

how to make dynamic text move to vertical center if only 1 line is left in AS3

Is there a way to move dynamical text multiline to the center if there is only 1 line left, because veritcal center cannot be adjusted in the properties panel. Image 3 Lines text and 1 line text
0
votes
1 answer

how to get instance name on object boolean which value is true

i may have gone further than what i could because i just learned actionscript 3 days ago. I'm making a simple quiz where I made the answer choices manually, not using the components provided by Adobe Animate. because I can decorate the appearance…
Ahlan
  • 9
  • 3
0
votes
0 answers

Exporting all the items from FLA file opened in Adobe Animate

Since Flash is gone, I am using Adobe Animate to open old fla files. Is there any easy way to export all the items (including vectors, sounds and images) present in library directly so they can be reused.
0
votes
0 answers

How to make my player die when it touch enemy (die when other object is touching it)?

So i made my first game on Adobe Animate CC (using AS 3.0). The concept of the game is a zombie who haunted & surrounding by living creature (people), so if the people is touch the zombie (my player), the zombie will die. Also, the people/enemy will…
0
votes
1 answer

Animate 2021 Action Script 3 URLRequest causes Error 2035

I'm working on an application and we are using Flash to add an interface. During the initialize the app loads in a config file with references to image paths. When I use the Loader and URLRequest classes to load those images the path is not working…
0
votes
2 answers

AS3 why Sound effect doesn't work on Android?

I've built a fairly simple app using Adobe Animate and AS3, which has a number of buttons that should play a sound when tapping on them. when running a Test of the app the sounds works just fine. but when testing/debugging the app on an Android…
0
votes
0 answers

How to create 2^20 possibilities animation with Adobe Animate

i am new to adobe animate. I want to share with you something that worries me. I need to design an animation with 2 ^ 20 possibilities. but it seems impossible for me to create all the possibilities one by one. I want to pack an animation that I…
0
votes
1 answer

AS3 I can't get removeChild to delete my items when they are listed in Array

using ActionScript 3 on Animate, I'm trying to delete a bunch of items from the stage using Array and for loop. I actually downloaded this code from this site, but it doesn't seem to work for me. It will only delete one item and won't delete the…
0
votes
0 answers

I'm building a number that should be able to include a decimal point for use in a calculation, where am I going wrong?

I have made a function that should build the number for me, which was working and for some reason has stopped. function buildNumber(num){ console.log(num); if (calcState === true && currentNumber.toString().length < 9){ …
0
votes
0 answers

Error #1010: A term is undefined and has no properties

i tried making a button that makes it go to the next frame but when i tried it there was an output that said "TypeError: Error #1010: A term is undefined and has no properties." i tried to find any script errors but cant find any, heres the…
0
votes
0 answers

How to create a library with shared code in ActionScript 3?

Say I want to create a library.swf file that will contain most of the definitions for images, sprites and (most importantly) code for custom components, that will be used by other sub projects by only linking the library.swf asset without actually…
0
votes
1 answer

Best Practice - Javascript Animation using timed background image changes

I'm fairly new to coding / javascript and was wanting to get feedback on a method I'm using. I got frustrated trying to import multiple adobe animate html5/javascript files so I reverted to: exporting the animations frame by frame (.png) using…
sychordCoder
  • 230
  • 3
  • 14
0
votes
0 answers

How can I select by default an item from a list AS3

I have a list of 2 items with their respective values. I would like to click on a button and have it deselect the previously selected item. var lista:List = new List(); lista.setSize(100,45); lista.x = 348; lista.y = 420; lista.addItem({label:…