Get help using Adobe Animate and creating animations.
Recently active
I am a beginner trying to create learning content with Animate. I found curveTo.html in createjs demos and wanted to embed it into Animate to make drawing lessons. The results are in the link. https://kong.or.kr/curveto_in_animate.html However, the mouse cursor and the drawing position are different.Running the original source in createjs demos works fine. Here is the link. https://kong.or.kr/curveto.html I don't know why inserting the curveTo.html source in Animate makes the mouse cursor and drawing position different.I am wondering if there is a way to match the mouse cursor and the drawing position in https://kong.or.kr/curveto_in_animate.html.
I've developed a Projector app which loads a 6 digit number (in a text file) from a remote web server when it opens. The purpose of this is: I've hard coded a version number into the app, and it automatically compares this number against the latest version (stored as a 6 digit number) on the server. If the server number is higher, then it informs the user that a newer version of the app is available for download. I'm using the following code which I think is fairly standard: var url:String = "wwvv. URL GOES HERE/c-024.txt";var loader:URLLoader = new URLLoader(new URLRequest(url));loader.addEventListener(Event.COMPLETE, onFileLoaded);function onFileLoaded(e:Event):void{ var loader:URLLoader = e.target as URLLoader; var loadedVersionText:String = loader.data; dataLoaded_txt.text=loadedVersionText;// This is a dynamic text box on the stage} (NOTE: THE URL ABOVE IS DELIBERATELY NOT VALID, SO THE POST ISN'T FLAGGED AS SPAM) 🙂
i publish my work for test debugging / ad hoc with air for ios.although i downloaded all icons in all sizes in the air for ios and all of them can be seen in the previewthe icon is not seen while testing and only the white icon appears. the app is working ok.
hello everyony! Im planning to buy a HUION drawing tablets but dont know much about them. does HUION 1060PLUS Graphic Tablet or HUION H610PRO V2 compitable with Adobe Animate? if not, what is the best drawing tablet that is compatible with adobe animate ,bellow 100$ ???
Hi there, community,sorry if it has been already discussed, but I haven't found the solution.I'd like to add shine animation at this circle (look at the screenshot). How do I do that?example page: https://www.craftyhangouts.com/best-mug-press/my website: www.craftyhangouts.com Thanks!
Hello, I'm using adobe animate HTML5 canvas to create an application with multiple menus and languages. I thought the best way to implement a language change is to simply swap to another frame (static keyframe) and simply change every text to the right language. However it appears that when I have something(like text) in a movie clip I actually have to duplicate every single element in a clip for each language because if I change the text inside a clip it will change in all other frames 😞I understand that this is just the way that animate works but is there a better way to do this?I'm still very new to animate, thanks for the info.
I've made plenty of animations in the past that all work fine, but recently my 19.2.1 Animate hasn't been able to export the camera layer when the Animation is exported as a video. It has the following error:Line 1, Column 1057: A conflict exists withnherited definition flash.displayDisplayObject.y in namespace public.The camera works fine in preview but only when exported does the issue occur.Any ideas as to why?
Hi community! I'm making another game which has the same type as hangman. Whenever the user clicked the wrong answer, the tires of the car gets damaged. This is the type of code I used and it goes on until btn_z._this.btn_a.on('click', function(){ _this.Message.text = "Try Again!"; createjs.Sound.play("miss_sfx"); _this.gotoAndStop('Percent75'); }); I only did the simplest way which is when user clicked a wrong letter, it goes to this frame and so on.. until 4 attempts then game over: The answer here is "STOP". And I used dynamic text so when the user clicked on either of the correct buttons, it will just display the letter to the corresponding box. I haven't figured out yet how to move to next frame when the answer is complete. Is there anyone here who have made this kind of game before? If so, how did you make it? My codes are very long. I'm looking for more ways to improve this 🙂 Thank you in advance!
https://documentcloud.adobe.com/link/track?uri=urn:aaid:scds:US:27cf3e2f-4e3f-4fff-b2d3-988eb6d4f318 I put the parenting option in my rig in adobe animate 2020 and i notice when i adjust the charactor to create my walking cycle the rig distorts in between the key frames . my quetsion is there a way to fix this. I thought the parenting tool prevented the rig from being distorted is there a trick to fix the broken rig example in image in between the key frames the classic tween, the robot leg breaks in the bottom portion even though my parenting option is on. is there a video that teaches how to rig character correctly so that when you parent it and use classic tween the rig stays intact as it moves. https://documentcloud.adobe.com/link/track?uri=urn:aaid:scds:US:27cf3e2f-4e3f-4fff-b2d3-988eb6d4f318
I'm a studentI need Adobe's original license key. Can you support the ban on this issue to do my projects?
I have an animated map project that I need to consult with someone about and hoped I could find the help I need here or be directed to someone who can help me. I am a beginner. I have been watching tutorial videos in Animate and After Effects, and have become convinced that I need assistance to focus on the animation commands I need rather than wading through a lot of commands I will never use. The map animation is not a game but a simulation of an historical battle. The hoped for result is a video, viewed looking down on the map (file obtained from the Library of Congress), of military units, scaled to the map, moving over the map in real time, to show the entire scope of the battle that took place over the course of 12 hours. The video would hopefully be able to be adjusted to speed up the time, able to focus on particular areas of the site, able to have embedded narration, and able to have embedded written comments, likely in the form of speech bubbles used in cartoon books.&nb
HelloHow can i modify the size and color of the checkbox component, using animate CC for HTML5 canvas.Thanks for your help.
Hi!When I import an illustrator file into animate, the outlines and lines of the elements get much thicker.How is it possible and especially how to fix it?Thank you in advance for your reply.
We want the sound files which are present in Adobe Animate Library since we lost our original Sound files. Can you please suggest solution for how to export sound files from Animate tool
Hello, Please could anyone help me. I have a music file that I have on its own layer and set to "Start" in the sound properties on the first frame of Scene 1. When I test the movie it's right and when I export as SWF it's fine. However, when I export as any other media type e.g H.264 or mpeg4 the music starts playing on frame 1 of scene 2. I cannot work this out. It is 100% set to the right frame on the right scene, so I don't understand why it plays at the start of scene 2. I am baffled. Thanks in advance.
disregard what was here before, I figured it out 🙂
I've put a button right at the bottom. On mouseover on that button an object should appear at the bottom. And on mouseout it should disappear again. Pretty straightforward. I wrote this code for it: var frequency = 20; stage.enableMouseOver(frequency); var target = this.mybtn; canvas.style.cursor = "pointer"; target.addEventListener("mouseover", gotoMouseOver); target.addEventListener("mouseout", gotoMouseOut); function gotoMouseOver(e){ target.gotoAndStop("on"); } function gotoMouseOut(e){ target.gotoAndStop("off") } By itself it works perfectly. When I hover over the green button the purple rectangle appears and on mouseout it disappears again. The problem is when I put this html file inside an iframe. Because the green button is right at the bottom right a mouseout on it isn't always detected. So on mouseover the purple rectangle appears but on mouseout it not always disappears. The file is instended to be use for an online ad so it will have to be us
Hey all,Does Animate have a Warp/Liquify Brush equivalent? The "Asset Warp Tool" in Animate is basically the "Puppet Tool" in Illustrator so I am super confused on naming conventions here!
Hi,I'm new to Animate cc and I have a project (animate cc html canvas) I know haow to do the animation, the client sent me many files inclsding quiz files, they are separated files, he want te replace the English text and sound with another languge, should I combine them together or just replace the text and sound with the other language and then send them that way, cause there is no way to combine the files together. Also I need to know the steps of the eleaning course using animate cc, what are the steps should be done after that to finish the course to be completely ready.
Hi everyone, I'm new here, and I have a question, I'm new to Animate cc and need to know what exactly the maeaning of :Text integration (on-screen text)Audio integration (sync audio)Is it the clarity of the text on the screen and the integration of sound with movement only, or is there another meaning?really appreciate your help.
I noticed that the Facebook group for Adobe Animate was changed to Adobe Video. Are you ending support for this program?
I've got a 360 panorama still frame that I want to use for a Youtube video and I want to animate some elements on it. What would be the best workflow to do that? I've got a tinkered .PSD file with all the needed layers separated and I want to animate some of them. That .PSD is then put into Premiere Pro which seems to be the best tool to convert panoramas for VR.
Hi, I have an Acer Spin 5 Laptop (with the included pen) and the pen pressure option is not appearing when I try to enable it. I've heard about not having a driver for it but I am not sure. Thank you in advance
I have a button with a hover effect in my file, dynamic text, and when you click on the ad it's supposed to go to a specific URL. All these components work when I test them in Animate. However, when I publish, the hover effect doesn't work and I'm not able to click on the ad. Any idea on why this is?When I move the hover layer to the bottom, the ad becomes clickable again. But no matter how I rearrange, the hover will not work when published.
Here's a weird thing: I have two layers, locked and hidden; I have a movieclip symbol that's supposed to bounce through the piece. But, when I use Test Movie to preview my animation, they show up. Worse yet, my movieclip symbol doesn't move when I save as an animated GIF...
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.