Get help using Adobe Animate and creating animations.
Récent
Hi there,I'm very new to the coding side of animate, and am struggling well out of my comfort zone 😄I've made a digital interactive picturebook dummy, with buttons to go forward and back, as well as an interactive turning wheel to demo what the picturebok interactivity would be. When the user gets to the last page (frame), and clicks on the back to the start button, I'd like the user to be able to run through the book again. Currently on the last page I'm using:var _this = this;/*Clicking on the specified symbol instance executes a function.*/_this.nextbutton.on('click', function(){/*Moves the playhead to the specified frame number in the timeline and stops the movie.Can be used on the main timeline or on movie clip timelines.*/_this.gotoAndStop(0);}); And we do go back to the first page, but none of the buttons work any more so we're just stuck on the front cover again.how do I create a loop please?
Hello,I would like to know if you know a way to make a timelapse of a draing made in Animate.The goal is to make a sketchnote video. And to be able to edit it in Animate (with vectors), so no screen recording.I used to try an software called DrawSWF, which allows to draw, and the export as a swf file the timelapse of the drawing. It still works on my old mac, but it's not perfect.Do you know another tool or an other way to do that ?Thanks
I recently upgraded to Animate, and I can't seem to bind the space key in the keyboard shortcuts. Nothing happens when I try pressing the space key to bind it, and using other combinations such as Ctrl+Space don't work either.[Moved from non-technical Forum Lounge to specific Program forum... Mod][Here is the list of all Adobe forums... https://forums.adobe.com/welcome]
My brush tool has this plus symbol over it when I use it, It wasn't there before, might have to do with me resetting my workspace earlier. It's not a big issue at all but it's pretty dirsracting as it's hard to see the brush size under it, does anyone know how to change it?
Any ideas how to make the text box display a background? The font changes but the background doesn't. if (displayedItem === _this.display.text) { textBox.text = `${displayedItem} ${fuelOrder}`; textBox.font = "23px Arial" // THIS WORKS textBox.background=true; textBox.backgroundColor = "#00ff00";Thanks!
Hi all,We're trying to create a simple counter in HTML5, but all I find online is AS3...We need the numbers to go from 10.000 -> 50.000Is it possible?Thanks for your help!
I want to adjust the height of the swf panel by a button in the swf panel plugin, the following code doesn't seem to workhigh200.addEventListener(MouseEvent.CLICK, onBtnClick); function onBtnClick(e:MouseEvent):void { var jsfl:String = new String(); jsfl += "fl.getDocumentDOM().height = 200;"; MMExecute(jsfl); }
How can I hide these pixel icons? Afraid, if I clicked on something wrong >
بخصوص الكود للعبة
When I tried to install Adobe AIR, it worked correctly, however, when I tried to load the .FLA file I needed Adobe AIR for, it yet again said I needed Adobe AIR and closed the .FLA, any help?
I was making mod for Friday Night Funkin then i notice that when I pressed restored, I can still see part of my wallpaper for some reason and it happens all the time. Adobe, Please tell me how to fix this because I don't want this on here all the time when i open Adobe Animate up.
What is the best way to convert swf movies in Animate so that I can put them together in Premier and add sound etc. I sort of don't believe that this has't been sorted by 2023Animate 2023
I have put warp handles on a layer. After i don't see the warp handles on that layer. How do i do so i see the warp handles now?
I want to include external code without importing a custom class in AS3.Is there a way to insert a .txt file in a remote directory into AS3.0 code?Simple example code please.Thank you
Is there a way to modify the size of a graphic without affecting the positioning of the instances? I need to change the size of the graphic, but it always ends up affecting the positioning of the instances in the movie clip. I can even select all the frames and change the size of the instances at once, but it doesn't affect the size of the graphics. I need the modification to be made to them.
Hello community, I have created a very short animation in Animate. When exporting the animation to MP4 there is a frame at the beginning that I do not know how to get rid of. It is not in the animation timeline. I have attached the file. It would be amazing if someone could give me some guidance on how to remove this. Many thanks!
When I change the double quotes in the following code to single quotes, I get an errorbefore changescript = script.replace(/\"/g, "'");after changescript = script.replace(/'/g, '\'');How do I change to single quotes in the correct style
Hello. I'm new and I started with Adobe Animate. I'm following YouTube tutorial and at one point I had to work with Shape Tween. My object started behaving strange so I wanted to use Shape Hints (following the video). My Shape Hints didn't want to attach to object, but I can see that Hints are working beacuse they are green at the end. My object is made out of pen tool same as in the video, but to guy in video it works. IDK what's the problem, I've been searching google for answers, communities and now I'm here (didn't even find answer here).FOUND SOLUTION: Snap to object was turned off while it had to be turned on!
Okay, so for some reason in Adobe Animate, when I use the brush tool on an area where I've already painted, it doesn't let me. Here's a video of what I mean
Hello everyone,I am facing an issue with asynchronous file loading in a Canvas project running on Android devices using the Chrome browser. I have noticed that while on desktop devices and on iOS with Safari, the loads are way fastest, on Android with Chrome, the loads are performed sequentially and slowly.Capture on sequence loading on Android deb toolsI have already tried the following:1. Modified the code to ensure file loading is asynchronous using the CreateJS library.2. Checked developer tools on various browsers and devices to monitor the loading process and confirm whether it was asynchronous or sequential.3. Tried adjusting the timeout for executing the handleComplete function, but it didn't yield good results.4. Checked the CORS policies of the site hosting the project, and it seems to be set up correctly.5. I've tested using Sprite sheets as the best way to speed up the loading time, but to not drain Android Mobile Resources I still have 15 images to load. 6. Different
I was working on my project, saved it, Windows then decided to crash on me, I tried to reopen the file but it said "An error occurred opening file". I've even checked the RECOVER file and it still doesn't open. I spent hours working on this and I'm really bummed that this happend. I tried looked for answers but they were all very vague. Here's my file: https://mega.nz/file/4MtHlCBT#uRTPCl9_N0N1fa-Q0NYpwvIMUrgXlc-k5t98f5f_nDU If anyone is able to recover it I'd be very thankful
how to solve this problem
I am trying to drop "the ball" into a specific region. When the ball is in the specific region, I want the page immediately go to frame 1 using the command "gotoAndStop(1)". However, it is not working. Can someone please help me troubleshoot this issue? Thank you. this.stop(); var root = this; this.ball.addEventListener("pressmove", moveBall); function moveBall(e) { e.currentTarget.x= e.stageX; e.currentTarget.y= e.stageY; root.ball.alpha=0.5; } this.ball.addEventListener("pressup", dropBall); function dropBall() { root.ball.alpha = 1; if (root.ball.x > 326.5 && root.ball.x < 543.5 && root.ball.y > 211.95 && root.ball.y < 376.7) { root.ball.gotoAndStop(1); root.ball.alpha = 0.2; } else {root.ball.gotoAndStop(0);} } When the ball is in the specific region, "root.ball.alpha = 0.2;" is work, but the page not go to frame 1.
so I'm trying to open Animate, and it's not working. I've opened it perfectly fine from a browser without having to install anything, since this account is paid for by my school but for some reason everything on Adobe is completely different from when I was using it in my Digital Design and Animation class and I can't open anything. I tried to open Animate, and it sent me to some page saying i can't open it on mobile (which I'm on my SCHOOL LAPTOP) and it sent me this email which supposedly had a link to download and open Animate and it just took me right back to that page that sent me the email. this is the link it sent me http://adobe.ly/28ZUiZ9 vs the one that link is sending me to https://creativecloud.adobe.com/apps/download/animate?promoid=DHWC1KPL&mv=other and not only that but I'm ONLY able to go to the link from gmail since if i type it into my browser it gives me the 404 page not found screen. I've tried googling what's going on with this, but it's on
Hi everyone. I'm struggling with motion tween. I created a symbol, then double clicked to go into the nest. Next, adjusted and made it a motion tween. Proble I'm having, is there's no path to click on or edit. Normally, a path shows right away when you motion tween. I cannot figure it out and I've tried scowering the internet and searching forums. Thanks in advance for the help. Tried to attach the animate file but keeps telling me "content type does not match it's file extension and has been removed." So if anyone also has an answer for that, I would appreciate it.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.