Get help using Adobe Animate and creating animations.
Récent
Ok, So I was trying to use the bucket tool to fill in a specific area (let's call it B) that is in a bigger area (and this one A), the bucket tool didn't fill B only but A too. Can anyone please help? I was using Macromedia Flash 8 (Wait, does Macromedia Flash counts as an Adobe Animate?)
I am learning animate. Using classroom in a book release date 2020. Chpt. 3. The instructions are to animate a position. I created a new layer and moved an image to the stage, positioned it. I selected the image and could not get it to insert a motion tween as I thought the instructions said. I learned that I had to select the key frame on the newly created layer ( not mentioned in the instructions) then the option to select the motion tween became available.
I can set most of the parameters of a comboBox, cb, by setting the attribute directly on the object, such as:cb.rowHeight = 30;cb.alpha = 100;for row height and alpha respectively. But for other attributes such as bordercolor and thickness, it seems to use a setStyle function. So it compiles with:cb.setStyle("borderColor", 0x75aa75);cb.setStyle("borderThickness", 10);but it doesn't seem to cause any change. Does it need some other method?
I am creating an animation in adobe flash cs5 and have the v cam ready to use. However when I put the v cam over something I wont to show a close up of and test movie, i can't see the close up instead I just see the animation with the v cam box infront of it which looks silly. I don't understand why it isn't working. I have a v cam file I have opened in another tab which shows a demonstration of it moving and when I test movie in that it zooms in, shows close ups etc. But when I copy it over to the animation I'm working on it will not work. We have several different v cam's that we have tried and everytime we test movie you can still see it. HELP!!
My animation is set to 24 FPS, but when I play it back, the FPS in the timeline changes from 24 to 12.05 FPS. I'd like to view my animation in real time... Can anyone provide insight on this?
I noticed in later versions of Adobe Animate that you can now assign an instance name to a Graphic Symbol from the properties panel even though Graphic Symbols still do not support being controlled by ActionScript code. (See Screenshots taken from different versions of Adobe Animate) So what other purpose is there in being able to give a Graphic Symbol an instance name?Only Movieclip and Button Symbols can actually make of instance names it seems, at least code-wise, so I can't see why Graphic Symbols would now be given this option.Thanks in advance for any insight you can provide!
Hello, I'm animating an HTML5 banner and am still new to animate. I have tried to problem solve this every way I could, but I cannot find the reason why my rectangle is below where it should be. The shape was made in animate and converted to a symbol to animate the mask. Is there something I'm missing?? I would appreciate anyone's input. Thank you!
I use Adobe Animate for producing our HTML5 banners. Is this the best app to use, or should I look at others? FYI - I come from a print background and have no real code experience. Thank you
This jsfl can add a blank keyframe to the last frame of the current layerBut there will be an error that automatically extends to the end frame of the timelinehow to fixif (aslayer.frameCount < tl.frameCount) { tl.insertBlankKeyframe(tl.frameCount); } else { if (aslayer.frames[aslayer.frameCount].startFrame !== aslayer.frameCount) { tl.insertBlankKeyframe(tl.frameCount); } }
To apply a Adjust Color filter I used to use before:an.getDocumentDOM().addFilter('adjustColorFilter')But now it doesn't work anymore. I found this function that in theory assigns the effect to a layer, but it doesn't work either.var myFilters = an.getDocumentDOM().getTimeline().layers[0].getFiltersAtFrame(0); The blend modes now work with this code:an.getDocumentDOM().getTimeline().layers[0].setBlendModeAtFrame(1,"Alpha"); But I don't know how to apply it to filter effects.Any help?
I have no idea what's happening with Animate. I've exported so many projects over the years. Now that I'm using the 2020 version, I can no longer complete an export. The program goes through the whole song and dance with the progress bar, then opens Media Encoder, but then nothing gets added to the queue. Sometimes, a file will appear in the folder I designated, but it is completely blank. What am I to do? Why is this happening? Why now?
I went on Adobe Animation and I looked at my "open recent" folder and none of my animations came up. I tried opening my animation by going to the animation clip in my saved documents, but Adobe said that an error occurred and couldn't open the folder. This has never happened before. Now I'm on Adobe Animation CC and the timeline and tools aren't showing up at all. I don't know whats happening right now, I don't know if it's a glitch because i reloaded it and it still was happening. Is there someone out there that can tell me what is happening and what to do about it in case this happens again in the future? Just to clarify, I am using the trial version of Adobe Flash CC.
Hello everyone, It's been a little over a week since I've been trying to solve an issue that keeps me awake at night.It's about a project I'm working on that runs very slowly only on Chrome for Android. After much research, I found that the problem occurs when handling several large images (around 3500 pixels each).I've confirm this by compressing big spritesheets images to 100kb each and still laggy if the images are biger in pixel size. The issue is that if I don't use spritesheets, the loading time increases considerably, taking almost a minute to load, compared to 5 seconds of loading time when using two giant spritesheets. However, on Android, the performance drops significantly. On the other hand, if I load the 72 separate images, the loading time increases to a minute, but the performance is excellent.Could you share some experiences and/or suggestions on other methods to approach my problem? Or options to investigate?Thank you for reading this,Great performance
how do i edit the spot of the pivot point without it returning to the original center point? I click on the shape with free transform tool and attempt the edit the pivot point
Hello Friends! Hope all is well.I apologize in advance if my termanology isnt great, as I am still learning the Adobe Ecosystem.I am creating a Top down Walking Animation for a simple Chibi Like Character.When The Character takes a step forward with say his right foot&leg, I'd like to set it so that the "right foot&Leg" Layer is behind the "Left foot&leg" Layer. But then when the character takes a step forward with the left foot&Leg, I'd like to set it so that the "Left foot&Leg" Layer is behind the "Right foot&leg" Layer.Hopefully that makes sense. I really appreciate the help! Hopefully this is a feature.Thanks!
I have a cartoon I made a about a year and a half ago (I think). I've made an adaption to it by adding a music line. Now, I cannot load it into Media Encoder. What gives?
Download the music list (text file) from the remote directoryI want to make a music list.After "A codes" have been fully executed, "B codes and below"Is there any way to run it?thank youvar n: uint; var sm:Array = []; musicList => textField musicList_btn =>musicList button //=== A codes ======================================= var request:URLRequest = new URLRequest("http://......./Text/soundList.txt"); var loader:URLLoader = new URLLoader(); loader.load(request); loader.addEventListener(Event.COMPLETE, completeHandler); function completeHandler(event:Event):void { var str:String = event.target.data; sm = str.split(","); sm.sort(); for (var i: uint = 0; i < sm.length; i++) { musicList.appendText(sm[i]+"\n"); } } //=== B codes ====================================== musicList_btn.addEventListener(MouseEvent.CLICK, musicListSelect); var musicListOK: Boolean = false; function musicListSelect(evt: MouseEvent): void { musicListOK = !musicListOK; if (musicListOK)
Hello, All I am trying To navigate from scene 3 to scene 2 through button but i get 1120: Access of undefined propertyand after i google all possible solutions and not fix the issue.i came here to try to find any help to fix this issue.you will find FLA file attached belowhttps://www.dropbox.com/s/s6bc60trazgqpxg/Untitled-8.fla?dl=0Regards
Hi, I have pupils who have done an animation with buttons, but because they have camera angles and zoom, the buttons are jumping all over the screen. Can any one help with a pupil friendly response to help resolve this.
We have a process in which we bring in Adobe Illustrator files (floorplans, buildings, etc) into Animate and then break the linework in order to optimize. The issue is, especially with building level floorplans, is when there are a large number of lines that breaking process can take upwards of 30 minutes to an hour, in some cases it hangs the program completely. Question is, is there any way to optimize Animate, either a setting to break linework quicker or automatically break on import? Barring that, is there a setting in Illustrator that would pre-break the linework? Thank you for any help you can offer
Hello,Complete Animate virgin here.I have drawn my own character that i wish to do some basic animation with.I am following this tutorialhttps://helpx.adobe.com/au/mobile-apps/how-to/animate-ink-drawing-adobe-capture.html When i import my character (PNG no colour or background just line work of character) and choose break a part it seems to highlight the whole square (picture attached) instead of the individual line work which makes me think thats where my problem is because i follow the tutorial to a tee and its shambles. Im assuming im doing something real ignorant because the only difference i can see from the tutorial is that he is importing a character he has mad through capture.Thanks!
Hi, the ActionScript codes for the video screen recorder for my Talking Ben (Wii) project were made by the ChatGPT and this is only being worked and developed on the ActionScript 2.0 language, because this is supposed to be my unofficial remake of Talking Ben for the Nintendo Wii that is supposed to be loaded in Adobe Flash. The Wii only supports ActionScript 1.0 and 2.0 from Flash Player 1 to 9. And I'm having trouble for this one ActionScript code that is supposed to screen record all of the frame labels that have the Talking Ben video clips. By the way all of these Ben clips such as Ben eating, drinking, burping, and what you do to ben such as touching him are only videos that are in all FLV movie clips and all of the video screen size are in 222 x 480. Here's the full list of frame labels that loads in Ben clips: "Newspaper", "Burp", "Drink", "Eat", "Main", "Opening_Newspaper", "Fliping_Page", "Fliping_Page_2", "Closing_Newspaper", "Moving_While_Reading_Newspaper", "Fliping_P
I would like to see Adobe Animate add this new feature. When animating frame by frame, instead of deleting the previous drawing all the time when jumping to the next frame, I think the previous one should be deleted automatically when jumping to the next frame. I like the automatic keyframe that Adobe added, but still not enough in order to speed up when working frame by frame. It would save time if we had this feature of auto-delete the previous drawing on the new frame.
I recorded a music sequence un Reason+. I had brought the sound down to more quite level then the original recording. When I bring it into Animate the adjustment simply disappears. I have tried a grillain times but each time when I comes into Animate it doesn't keep the new volume. Help! [Mod note: Moved to appropriate forum]
Hi, I'm working on a major animation project in Adobe Animate and I just finished the animatic. I'm starting to animate it, meaning I have to add color, but whenever I use the eyedropper it greys out the symbol I clicked it on and then the drawing I clicked on disappears completely. It doesn't actually pick out the color I want and allow me to continue to use it like intended. Can anyone explain how to fix this so that the eyedropper actually picks the color I want instead of erasing my drawing? Any help would be greatly appreciated.
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.