Get help using Adobe Animate and creating animations.
Recently active
The video shows this a lot better than I can explain but I'm losing my mind here. It might be my Gaomon but the problem ONLY persists in Adobe Animate. I'm using a PD156 Pro. I'll try asking on a Gaomon forum soon but I'd like to check and see if anyone could help with this since my issue only got worse after trying to fix it. Not to mention the workspace changed appearance for some odd reason and I can't get it back to the default version. (The timeline frames look a lot larger and thicker than I'm used to)Thanks in advance
I have set up a series of html5 ads at various sizes. The canvas size is set to the right specs, and the clicktag html file that they are linked to doesn't specify a specific size. The html file that is created when the ads are published also have the correct dimensions. When the ads are loaded into Ticketmaster, the aspect ratio changes e.g. 300x600 becomes 300x1200 but I can't identify where this change is coming from. Any suggestions?
Good Morning. I want to upload a free app made with animate to google play console. An app with limitations. In that app there will be a link to purchase products where little by little you can remove limitations according to the money you spend, that is, these purchase products will update the app but with more functions.I works with AS3.I have no idea how this is done in animate and, above all, how it coordinates with the google play console.I really appreciate the help.
I'm a high school teacher and my students are currently working in Animate CC 2017 to create a frame by frame animation. One of the students opened his file today to this message, "Cannot load scene into memory your document may be damaged". He lost three days of work and has no images in his library. We are working on Windows 7 computers.Does anyone know the issue here? After talking with him, the only thing I can think of is the new paint brush tool, which he used. The file is showing that it is 389 KB, so I feel like something has to be there but we can't access it! HELP!!!!
So im just wondering if theres a export function then what about import? Im have a lot of spritesheets where im lost fla file, but didnt lost png and xml.
Hello, question. I made 3 keyframes and got a looping nest in each frame. Now I would like to start with frame 1 looping untill you click an object and go to frame 2 which wil start looping and continue till I click another object again to go back to frame 1 (or frame 3). My question is, do I make the clickable object in the scene mode or do I go one stage deeper and use actioncode in there? And what would be the correct code(s)? Hope this is clear enough, otherwise let me know and I trie and specifie. Thanks, greets, Noob Frank
Hi guys I newble using Animate. So I just wanna use Asset Warp tool My İllustrator Art Work.I upload my project Animate. BUT I CANNOT USE ASSET WARP TOOL. Can you guys help me?
I want to make a responsive HTML5 banner. So far so good. Now the entire browser window should be filled with a background image. There should be no white streaks visible at any time. The background image should practically be behind the stage and should always adapt completely to the browser window.Does anyone have an idea?
I have set some shortcut keys according to my own habits, but occasionally the customized shortcut keys are cleared and must be reset. Why is this?
I tried downgrading to an older version (I went from 24 to 23.0.3 I think), and still nothing worked. The people in Hyun's Dojo also tried to help but to no avail. For some reason, this also causes my Mouse cursor to look distorted like someone put it into a shredder and then tried gluing it back together afterward if that makes sense. I also cannot screenshot this because strangely, the glitching stops happening if I move the mouse out of the canvas window. I took a photo using my phone since the glitching stops when I try screenshotting: Quick note: This never used to happen before, I accidentally factory reset my laptop in an attempt to try to get OneDrive to stop automatically deleting my files, and when I reinstalled Animate, that's when the issues started occurring. (This is weird to me since I had been using Animate for almost a year and there were no issues till now, even when my laptop was low on storage or battery.) somebody please help i just wanna animate &#
Can someone help me with a convert a scrollbar in actionscript 3.0 to html5 canvas with javascript. Starting withHow do I code this from actionscript 3.0 to html5 canvas (javascript). this is class file in .as that I want for .js you see this:// CLASS file as actionscript 3.0 package { // import flash.display.*; import flash.events.*; import flash.geom.Rectangle; import fl.transitions.Tween; import fl.transitions.easing.*; //import ph.graphic.RectScuare; //----------------------------------------------- public class Zscrolla extends Sprite { // private var holder :MovieClip; private var clip :MovieClip; //var clipMask :MovieClip; private var dragger :MovieClip; private var slider :MovieClip; private var bgAlpha :Number; private var bgColor :uint; private var hg :uint; private var scrolled :uint; private var friction :uint; private var currentY :int; private var draggerHg :uint; private v
Hello, I'm new to AS3 and I'm trying to do a right click button but I can't do it. I'm trying to create a maze but since we need a drag and drop button and resize button, we decided to make it look like a puzzle and they will drag the puzzle all together. However, I don't know how I will make the resize button because we have 8 objects. Is it possible to put in one button only? or no? Sorry I'm really new here. Here's my attempt ddmaze8.addEventListener(MouseEvent.CLICK, incHeight);function incHeight(event: MouseEvent): void{ ddmaze8.height += 5; ddmaze8.width += 5;} ddmaze8.addEventListener(MouseEvent.RIGHT_CLICK, decHeight);function decHeight(event: MouseEvent): void{ ddmaze8.height -= 5;  
Hi. I am following this tutorialhttps://blog.adobe.com/en/2019/06/27/adding-interactivity-to-vr-360-content-in-animate-2019.html#gs.v0t528 and trying to get the event handler:AnEvent.MOUSE_DOWN to work, but it won't work. I'm trying to get it to trigger an alert to test it.I was able to get AnEvent.MOUSE_OVERto successfully trigger an alert. Here is my code: this.movieClip_2.addEventListener(AnEvent.MOUSE_OVER, mouseover);function mouseover(){alert("Moused over");} this.backg.addEventListener(AnEvent.MOUSE_DOWN, mousedown);function mousedown(){alert("Moused down");} Any help?
I made an exit button in adobe animate as 3 for publish android. The exit button uses codingstop();btnya.addEventListener(MouseEvent.CLICK, closeapp);function closeapp(e:MouseEvent):void{NativeApplication.nativeApplication.exit(0);} but access of undefined property nativeApplication. Do i have to name it anywhere?
I need help downloading text from an external xml file Animate CC canvas HTML5:this.stop();// Load the XML filevar req = new XMLHttpRequest();req.open("GET", "tekst.xml", true);req.addEventListener("load", transferComplete);req.send();function transferComplete(e) {// Check if the response from the server has a status of 200 (OK)if (e.target.status === 200) {console.log("The XML file has been loaded successfully.");/ Parser XMLvar parser = new DOMParser();var xmlDoc = parser.parseFromString(e.target.response, "text/xml");//Return an array of all matching tag valuesvar textEntries = getTagValues(xmlDoc, "TextEntry");// Check if there are enough elements in the arrayif (textEntries.length >= 3) {// Transcribe text into text boxes in Animate CCthis.textFile01.text = textEntries[0];this.textFile02.text = textEntries[1];this.textFile03.text = textEntries[2];} else {console.error("Error: Not enough TextEntry in the XML file.");}} else {console.error("Error: Failed to load XML file. St
I cant seem to edit the frame
Basically the title. I press my pen down to the tablet, begin my stroke, but nothing appears on screen. No brush stroke goes through until a few more tries. As you can tell, that's quite the massive hindrance. I don't know if it's adobe or my Gaomon tablet, because in Ibis Paint X the strokes always go through without fail, and in Adobe Animate my mouse has no issues making brush strokes. So I'm... not sure what the issue is. Any help is appreciated, thank you.
I've made a simple animation of a logo that fades to white and rotates. Everything is fine in the App, but the rendered movie has a weird hickup / jump. Very hard to know how to fix a problem when it looks great in the application - bug? Thanks all
Hey there, tried to google it, but I'm not sure what to choose making Google Display Ads:Adobe Animate or Google Web Designer? I do favor Animate, but I do fear not knowing enough code that I need for i.e. mouse events. Or that it is working in Animate but not for Google Ads. Could I use GWD to get to the javascript codes for events and use it in Animate? Or where do you get the codes from? That's still confusing me. Is there an official list, plug-ins? 😄 Thanks,Julia
package { import flash.display.Sprite; import flash.utils.Timer; import flash.events.TimerEvent; import flash.events.KeyboardEvent; import flash.display.DisplayObject; import flash.events.KeyboardEvent; import flash.ui.Keyboard; // The main class for the Tetris game, extends Sprite. public class Main extends Sprite { // Constant representing the size of a single tile (in pixels). private const TS: uint = 20; private const ROWS: uint = 20; private const COLS: uint = 10; // Array to numerically represent the game field. private var fieldArray: Array; // DisplayObject to graphically render the game field. private var fieldSprite: Sprite; // Arrays to store different types of tetrominoes and their colors. private var tetrominoes: Array = new Array(); private var colors: Array = new Array(); // Sprite to represent the current tetromino. private var tetromino: Sprite; // Variables to store the current and next tetromino types, current rotation,
im using auto lip sync for animate, and its actually 100 percent not accurate (no exageration). i only have the voice for the audio, with no other backround noises and i did it with a paid adobe animate tutor but it still is 100 percent not accurate and we both dont know whats going on. PLEASE HELP THANK YOU.
I cant seemed to find any setting to do that
I am using version 2023 i have created a line using the line tool and have changed the origin point using the transform tool but animate automatically switches the origin point back to where it was. the line is not a symbol.Help is needed.
Hi All,I'm working on setting up my first ad to be run in 6Sense. I'm using a dynamic text field to populate a specific company name using URL mapping. Attached is a screenshot of the ad. The yellow copy (company name) is what will change. So it will be company + Premier. I have the text field set to dynaimc but am totally confused to what to do next. Should there be specific placeholder text since it will change and what would I use as the instance name? I'm totally confused on what all I need to do in animate and if there is any code I need to add in the actions panel. Below is example code I received from 6Sense to ad in the html and js files. Add Company Name and define landing page url based on Company: var companyUrlMapping = { "UW Medical": "https://www.uwmedicine.org/", // Key is used as custom "OHSU": "https://www.ohsu.edu/", "Virginia Mason": "https://www.virginiamason.org/", "Seattle CCA": "https://www.seattlecca.org/", // add your additional // [Compan
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.