Get help using Adobe Animate and creating animations.
Recently active
Hi All, I have been looking for the solution to this and have tried multiple things but to no avail. I am super new to Adobe Animate so it might be something I'm completely overlooking. My project is set up like this:Scene 1 (Main Timeline) > MAN1_MC (First Child Movie Clip) > EDITBUTTON_MAN1and2_MC (Second Child Movie Clip)I have buttons that, when clicked, should go to a different frame of the Second Child Movie Clip My code for reference:var root = this; root.stop(); var who_value = 0; window.edit_value = 0; console.log(edit_value); /* BACKGROUND MENU */ root.MENU_BUTTON8.addEventListener("click", fl_ClickToGoToAndStopAtFrame_2.bind(root)); function fl_ClickToGoToAndStopAtFrame_2() { root.gotoAndStop("BG_COLOR_MENU_BUTTON"); } root.MAN_BUTTON.addEventListener("click", fl_ClickToGoToAndStopAtFrame_WHO.bind(root, 1)); root.WOMAN_BUTTON.addEventListener("click", fl_ClickToGoToAndStopAtFrame_WHO.bind(root, 2)); root.MANWOMAN_BUTTON.addEventListener("clic
When I work on an animation project I make sure to save and then Save as and create multiple iterations of my project as I go along. I do this in the case my file corrupts and then I don't lose the entire project, as I have an older save to return to. However, I keep getting a glitch where I will save and then save as and then quit the program. And then when I re-open the newest file all of my work since the last save has been lost. It's almost like it reverts back to a previous save rather than saving my current work. Similar behaviour to if you were to select the do not save button when you quit after doing a bunch of work on the project. To clarify, in the below screenshot, file "Duke_MV_19" will be the exact same as file "Duke_MV_18" despite it being saved one minute after the recovery file. The recovery file has all of my work intact luckily. This glitch has happened multiple times. Is there any fix? Am I doing something wrong?
Hello, is it possible to export only the selected items as an image? The stage size is e.g. 1920 x 1080. I select some elements on the stage that are smaller and only want to export these selected elements as an image. The size of the image should be that of the selected element group, not of the stage. Regards,René
hi, im using adobe animate cc 2018. lately i've been trying to export an animation that i made with a background video, but whenever i want to test the movie or export it, it sends me that message: "this movie use features that are not supported in the flash player 26 player" and it exports the movie with a black or white background. please help
I'm new to adobe, but I've tried in the past; yet I've had the same problem. Everytime I draw, with any tool, the inside is white and the outline is a bright blue. I feel like this should be easy to fix, but I'm so frustrated. Can anyone help?
Hi, Is there anyway to make global changes to all assets on a single layer? For example, I want to change the fill color from black to white for all the different text boxes placed on a given layer all at once. Similarly, if I want to change the position, scale or font type, etc.? Thanks...
Dear friends, I have created a web banner which works perfectly in my Safari browser when I Test through Adobe Animate. But when the client opens the html file, the button on the banner only works in Internet Explorer and not Chrome? Any help would be greatly appreciated. Thanks in advance. Anthony
Hello! I am pretty new to Adobe Animate, and I have a question. This photo that I have sent isn't completed at all. But I was wondering, Is there a way to animate the shapes that I put together to create this little girl character? How can I make her eyes blink, lip synch(when the time Is right for me to create the mouth and lips) etc. Thank you for your time and help!
Всем привет, столкнулся с такой проблемой, белая рабочая область, из которой ничего не видно. а так же на ней нельзя рисовать или использовть любой другой инструмент
I am an avid but amatueur Animate user. I am trying to post my latest app onto Google Play Developer Console. It is not being accepted because: "This release is not compliant with the Google Play 64-bit requirementThe following APKs or App Bundles are available to 64-bit devices, but they only have 32-bit native code: 1000001." I created the .fla on Animate 2019; then saved it to Animate 2020. I downloaded SDK from Harmon this week. Currently imported into my Animate 2020 is SDK both "32.0.0.16...Compiler" and "33.1.1.86...Windows."Does anyone know how I can get my APK to be compliant with Google Play's 64-bit requirement?P.S. There is also a warning that I should you Android App Bundle; but I don't know how to do that either. Optimization is less important to me than just getting it published. Thank you!
I can't delete this post but this is no longer an issue!
How can I dynamically change the spritesheets and other assets(particularly image spritesheet) using javascript in the HTML5 createjs code generated by Adobe Animate CC 20?
Hi ThereI am trying to create an MP4 file using Encoder out of Animate. The encoder seems to start up but nothing happens. I have fond the Log file and it seems to be falling over on validating my email address :"Entitlement record did not pass application entitlement policy, ccAdobeID: "roesward@xtra.co.nz"" At least that's how I'm interpreting it. There may be an out of date driver also but that doesn't seem to be the underlying cause The full error log is below. Any advice would be appreciated : Log file created: 8/04/2020 9:42:23 AM----------------------------------------Ticks = 422 <10728> <DynamicLink> <5> Attempting to launch dynamiclinkmanagerTicks = 422 <10728> <DynamicLink> <5> C:\Program Files\Adobe\Adobe Media Encoder 2020\dynamiclinkmanager.exeTicks = 422 <10728> <DynamicLink> <5> Increase wait time to 2Ticks = 2422 <10728> <DynamicLink> <5> Attempting to launch dynamiclinkman
I use Animate 2019 on windows which has worked for me for a long time and I like how smooth it has been running but I wanted more space on my laptop so I factory reset. After completion I downloaded Adobe Creative Cloud and procceded to try and download Animate (19.2.1). After various attempts of trying to open the program I ran into the issue of "Adobe Animate 2019 has stopped working". The results were consistant after reinstalling multiple trys and I'm stuck on how to open up animate. How can I fix this?
I have a short video published in html. How do I share this with someone? Uploading the file folder of html, images and js to either gdrive or dropbox and then sharing is not working? Help?thanks,beth
Hi,I've been struggling with between sibling iframe / parent DOM / easel.js hierarchy structure for quite a frustrating while now, and i'm finally making some headway.an example of something i just got working with the help of this post: https://community.adobe.com/t5/dreamweaver/i-have-two-iframes-with-html-generated-with-animate-cc-how-can-i-make-them-communicate/td-p/10146684?page=1one example like that in the post above as something i tested:my parent doc has this:` document.getElementById('sliders_panel_iframe').contentDocument.functionToFire(); `which calls this from the iframe window with the Animate HTML canvas :' document.functionToFire = function(){ console.log("functionToFire fired"); }; 'this all works perfectly.what i'm trying to do now is have the parent doc able to listen for changes in attributes of things nested kind of deeply in my HTML5 canvas.is this possible?To monitor the horizontal status of a thumb object on a slider, I'm doing this with no avail...var thumbAllP
Is anyone suceed to make a html5 banner in Adobe Animate which is used in Adwords? i saw a notice in the Google support, that they working on an Animate solution..but i dont know if this old and still a problem
Hello. Is there an ActionScript 3.0 command that forces an object/symbol to the front?
Hi there, is anyone able to provide me with an idiot's guide on how to deal with sound in HTML5 Canvas? I've searched the forums and whist I can see some answers, I either don't fully understand the instructions or the answers don't represent exactly what I'm trying to achieve. I used to work with Flash Professional years ago for web applications with Actionscript - life seemed so much easier then! Basically I have an interactive project that has several movies on the main timeline. Within each movie there is a page that contains several buttons. I would like each button to play a sound. I would also like each button to play/pause said sound. I would also like if when playing another button the previous sound will stop. I'd also like the navigation buttons to stop all sounds so that when the user navigates away from the main page or a different movie the sounds don't continue. There is similar request from another user dated 27th March but
An error occurs when animated file(fla) is called aftereffects. Both programs are 2020 version and tried to reinstall them.Why is the error occurring?😭😭
Currently running the animate CC 2020 Trial through creative cloud on windows 10. The program launches fine, but if I try to enter the tutorial or open a workspace of any kind the program crashes and the crash report comes up.I've tried restarting my computer, resetting preferences, uninstalling and reinstalling, running as admin, changing my user permissions, disabling firewall, and running the creative cloud cleaner program. Still crashing at the same time.
Basically I'm trying to use the brush tool in animated and it was easy before to have my tablet centered on a specific screen (I have 3 monitors) but whenever I tried pushing down to draw, it would go to a different monitor or area that I intended. I have a PTK-440 tablet and the problem is only in animate, and use Windows 10. I reinstalled Animate and the Tablet driver to see if that was the problem, so I don't know what's going on.
I have no clue why to make things worse than it was? Why I can't make layers compact enough on timeline? It makes the Animate usage more challenging, you can see only a very limited number of layers in timeline? If you feel like some people want a taller layer apperance, deliver them, why to deprive others from what they used to use? You're responsible for professional product development but want to turn it into an ordinary mobile app from Google.Play. It has no sense.
I am trying to make a simple animation which consists of a background with a cursor. The cursor is just a png image of a cursor which I've converted into a symbol. The problem is, that the cursor (symbol) disappears when i'm dragging it into certain parts of the frame, and when i'm zooming in and out. I thought that it was just a visual bug, but the cursor doesn't even show up in the animation. Here is a short clip to demonstrate my problem:
Want to buy animate but will not do it unless i can figure out your system to have a mask object CUT OUT a layer. Every single tratorial shows how to use that mask as a window to only show the object it's masking. Not being able to do this seems like insanity...it's such a simple request. To hit a button and have the mask be negated so it truly CLIPS and HOLDS out an image and NOT act as a window.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.