Get help using Adobe Animate and creating animations.
Recently active
Bonjour, Je rencontre un problème.Quand je teste mon animation via Animate via navigateur, celle-ci se stoppe bien à la première image avec le this.stop(); et tout le reste marche très bien !Mais quand je mets mon animation sur mon site, celle-ci tourne en boucle sans cesse, comme si le this.stop() n'était plus pris en compte !C'est une animation très simple avec juste de l'intéraction au niveau des boutons en mouseover et mouseout. Je ne veux pas que l'animation se mette en lecture, je veux juste que les gens déclenchent des gotoAndStop() avec le passage de la souris sur les boutons. Voici le code html5 très simple (Animate cc 2020, Flashplayer dernière version, Navigateur Firefox et Safari dernières versions) : this.stop; {this.arobas.addEventListener("mouseover", fl_MouseOverHandler.bind(this));function fl_MouseOverHandler(){this.gotoAndStop(1);}this.arobas.addEventListener("mouseout", fl_MouseOutHandler.bind(this));function fl_MouseOutHandler(){this.gotoAndStop(
Hello! I am fairly new to Adobe Animate and I'm having some trouble. I'm trying to animate my drawing for a school project, and I've watched multiple videos on how to do so. It said to right click on the layer you want to animate and select classic tween, but it's not showing up. And when I reopened my drawing, I couldn't interact with any of my symbols. Nothing would highlight, and I couldn't select anything. Please help!
thanks
Is there a way to make button labels align to the left in button component? I've tried everything but the label always centers. I've removed the skin and created buttons in actionscript. The labels appear fine.
Hey everyone! Not finding much online, but my Animate program does not seem to have the Gradient Transform tool. It's not nestled in the Free Transform drop bar (there isn't a drop bar in my program) and it's not in my Tools either. It doesn't even come up in the "Help" search engine on the interface either. Wacky issue, any ideas? It's CC up to date as well! Thanks!
I am a newbie with Animate CC, and I somehow made the "properties" section of my options disapear. I am wondering how to get it back, or completely reset all of the settings back to the default.
hi, as far as I can remember, in previous versions of Animate (or back in Flash) one could keep Object Drawing on even when using the Brush's very useful "paint behind" mode.Now I see it will only work with "paint normal" mode. I find it was much better when you could paint behind without welding shapes, as happens now when Object Drawing is not on or (as I suspect) not working. Does anyone know whether this is a bug or if it's just a new (and in my humble opinion, worst) way this feature works?thanks!
Hi dear animate communityI need your help please I'm trying to create a small animation with canvas project but a cant made it, my idea is, turned on a bulb with two buttons , the project is explained on attached file myproject fla file /RECOVER_Simple.fla
Dear all, I keep getting this error. Not sure, what needs to be done. Initially it seemed fine..thanks.Aris TypeError: Error #1010: A term is undefined and has no properties. at Main/selectQuestions()[/Users/aristotlemn/Downloads/codecanyon-klxjGZe0-quiz-marathon-trivia-with-cms-android/iqm_app/without ads/Main.as:683] at Main/xmlLoaded()[/Users/aristotlemn/Downloads/codecanyon-klxjGZe0-quiz-marathon-trivia-with-cms-android/iqm_app/without ads/Main.as:656] at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/dispatchEvent() at flash.net::URLLoader/onComplete() TypeError: Error #1009: Cannot access a property or method of a null object reference. at Main/goBack()[/Users/aristotlemn/Downloads/codecanyon-klxjGZe0-quiz-marathon-trivia-with-cms-android/iqm_app/without ads/Main.as:1001] at Main/clickPlayAgain()[/Users/aristotlemn/Downloads/codecanyon-klxjGZe0-quiz-marathon-trivia-with-cms-android/iqm_app/without ads/Main.as:344]
Hi, I know the bone tool in Animate is very rudimentary and hasn't undergone any substancial improvement since (I think) Flash CS4. Still, I was hoping to maybe use it for some really basic tasks, like moving the tail of a character. But I find the IK structure squeezes the shape at the bone junctures, making even such a simple animation impossible - and as far as I've searched there doesn't seem to be any strenght control or other features to avoid this. Hoping for some ideas here 🙂
Sequence of workflow:.fla document converted to "Canvas" ..."Publish" sends only _preloader.gif to the "images/" folder - no *atlas_.png ...Have tried "Texture", "Spritesheet", & "Image Assets" ..."Image Assets" creates an .html file with a disjointed timeline-esque jumble ...Please see attached "Publish Settings" screen shots ...Has worked previously (www.flydutch.net top of page) - where's my operator error screw-up? Thanks ...
Hello,I'm working in Adobe Animate CC and I'm trying to use javascript to create an interaction where the user drags an object along the Y axis, but the object remains within a certain area, or 'bounding box'. I was able to get the object (in this case, a movie clip with the instance name "handle") to be moved up and down with the mouse using this code:this.handle.addEventListener("pressmove", fl_MouseClickHandler_2.bind(this));function fl_MouseClickHandler_2(evt){evt.currentTarget.y = evt.stageY;}I only want the object to move along the Y axis, so this worked really well. However, in my attempt to restrict how far the 'handle' will slide, I haven't been successful (I don't really know how to write code). I found a good resource here: Text Drag (StackOverflow) - JSFiddle and have tried to adapt this code to meet my needs - this is how my code turned out - var sliderBoundary = new createjs.Shape();sliderBoundary.graphics.beginStroke("#999").setStrokeStyle(2).drawRect(623, 212, 143, 282.
Hi, dear community.Today I first faced such a problem. When I create classic tween, the symbols begin shaking. I tried copying the first frame and pasting it at the end of the scene, but that doesn't help. How can I fix it?
I am new to Animate CC. I have several layers of an animation that I would like to merge down. I group the layers together, right click and the Merge Layers sign does not show up. How do I get around this problem?
I have Animate CC2020 whenever I open it it doesnt launch but in the taskbar it shows under background processes.
I have Animate CC 2020.Whenever I open Animate it doesnt lauch but when I check in Task Manager it shows as background processes.Please Help!!!!
Good afternoon, please help. I do cyclic animation with Adobe animate cc + GSAP. The first time you run the animation, it fully plays when you repeat the GSAP loop, the animation does not play. This applies to all animations made with js. Can you tell me how to loop the animation fully with GSAP? I attach the project file.https://www.dropbox.com/s/c1zhbq7k7gnjdb1/animation_test.fla?dl=0
I'm trying to access function located in DCLS class from my Pieces class.Pieces: public class Piece extends Sprite { private var image:Bitmap; private var obj:Object; private var gap:Number = 30; public function Piece() { super(); } public function init($obj:Object) : void { this.obj = $obj; //taking valuse from my DCLS class works fine totalPieces = this.obj.horizontalPieces * this.obj.verticalPieces; //here I'm getting error #1006 this.obj.myDCLS(); myDCLS function located in DCLS class: public function myDCLS(){ //var mycount:int = count; //foundPiecesDCLS++; trace("test"); }
I have an extension SWF panel and a list of movie clips of the currently open document on it. I want to clear my list when the user closes the current document.Also, I want to add some alert "You have to select the previous document you were work on" - when the user selects other open .fla document and tries to press some button on the SWF panel to edit some MC from the list. So I want to know if has Adobe Animate the ability to listen to closing and changing of documents?thank you for advance for any hints
Hello, Does the Air for Android SDK Version 33.1.1.98 support only 64-bit apps or also 32-bit apps for the Google Play Store?I am using Animate CC 2020.I want to make also Apps for older 32-bit devices.Thanks in advance.
I really miss the forum and its people. May be one day.
Hello. I'm using adobe animate to make an animation. I want to import layers from Photoshop into Animate, but I can't reach the import button at the bottom of the window. I tried dragging the window upwards, but it won't let me see the rest of it. I also tried to shrink it manually, but it won't let me. Is there a way to shrink the window?
I have created a button and a dynamic text object associated with the buton. The button appears in my library but the dynamic text object does not. Is this normal? jjfjr
So i've just dowload my Adobe Animate CC but when i try to draw in it, i couldn't draw a fully curve line with my pen and tablet!It's still normal when i draw in photoshop (in the video) but when i turn to Animate CC it just doesn't work!- I've tried reinstall it, update the lastest verson of Animate CC but is it still doesn't work!Here's the video : https://www.youtube.com/watch?v=-twlKh6iMQk&feature=youtu.be
How do I get an online image to do this action? http://jsfiddle.net/opherv/ddGHz/ Thank You for your time 🙂
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.