Get help using Adobe Animate and creating animations.
Recently active
Hi i just bought the Ship Console and plugged it in my Windows USB.In Animate i use the GamingInput API public var gameInput:GameInput = new GameInput(); myDevice = GameInput.getDeviceAt(0); myDevice.enabled = true; The Ship console is detected and i can also check how much controls it has supported so i trace through all controls in an ENTER_FRAME to see if it is workingfor (var i:int = 0; i < myDevice.numControls-1 ; i++) { var cont = myDevice.getControlAt(i) trace(i+":" + cont.value + " Name:" + cont.id ) } And it works, every button, also the Steering Wheel worksBut, and what is frustrating me is:The Ship Consiole has two throttles for steering boats with two engines. When i try the trottles the values on my output are not changing at all. The rest of the Ship console, every single Button is working also the steering is working . Here is a picture of the ship consoleand here is a picture from the trace output. So i am lost as everythin
Wierd subject for 2024 I know, but is there now an established workflow, or tools within AA, to leverage AI in converting AS3 to HTML5+JS?I've a lot of old games I'd love to try converting now we've AI tools available.
When I embedded my flv video into timeline, it seems pretty okay but somehow when I tried to test my video, The video plays but not the sound. The real weird thing is that there is another that work just fine when I tested using the same way.Anybody who knows please help me
I have a button and I want to add transparency layer to it, now as you can may see(I wrapped the area with a red rectangle) that transparency layer is added only to a portion of the button. I want it to span over the whole buttonto summerize:my goal is1- I want both the image and the button to have the same size //Done2- I want when the button is pressed or hovered, to have a (opacity/transparent layer/shade) over it to give it some tint // Done3- I want the shade/tint to cover the whole buttonThis is the code related to this issue, this is how I set the button Width and height inside of the button classpublic function SetWidthAndHeight(newWidth: Number, newHeight: Number): void { width = newWidth; height = newHeight; ImageContainer.height = newHeight; ImageContainer.width = newWidth; }the problem is The size of the button increase but the shape of the square remain untouchedThis is how I add the childs on the main layer,var g_newButton = new MyButton(); g_newButton.ImageLoad
hello! I want to use bitmap image as masked object from shape that is generated by user input:// Load the image var image = new Image(); image.src="image.jpg"; var bitmap = new createjs.Bitmap(image); bitmap.cache(0, 0, image.width, image.height); var drawingShape = new createjs.Shape(); // Handle user input for drawing stage.addEventListener("stagemousedown", startDrawing); stage.addEventListener("stagemousemove", continueDrawing); stage.addEventListener("stagemouseup", stopDrawing); var isDrawing = false; var lastX, lastY; function startDrawing(event) { isDrawing = true; var pt = drawingShape.globalToLocal(event.stageX, event.stageY); lastX = pt.x; lastY = pt.y; updateCanvas(); } function continueDrawing(event) { if (!isDrawing) return; var pt = drawingShape.globalToLocal(event.stageX, event.stageY); // Draw a line segment drawingShape.graphics.setStrokeStyle(40, "round").beginStroke("#000").moveTo(lastX, lastY).lineTo(pt.x, pt.y).endStroke();
Hi, I'm having an issue where when I swap a symbol, nothing shows up even though my frames show that there is something. How can I fix this? Thank you.
Hello, I am having an issue seeing 9-slice working in my .fla.I have a MovieClip with 9 slice enabled (Properties "Enable guides for 9-slice scaling")Inside of the MC there is a simple "scaleable bitmap" with the guides setup so the so the edges/corners shouldn't scale.When I scale the MC in the .fla it is streching and in a manor that isn't 9-slice. I followed instructions from https://helpx.adobe.com/animate/using/scaling-caching-symbols.html and it still isn't working.Is there something that may be missing from my setup?1) Add bitmap (lossless png)2) Convert to symbol checking 9-slice option3) Verify guides are correct on the bitmap (lossless png)4) Scale MovieClip, but 9-slice isn't taking affect
I wanted to ask if people here knew if China still supported Flash.If so, why does Adobe allow China supported variants of Flash but not anywhere else?
Hey guys. I have been working on this character off and on for about 2 years. I keep learning more and more about Animate and the rigging process, since we now have approval for using the edapt tools. So I went back and rebuilt most of this guy so the joints are more round, and now I know how to go in and add cell shading to shapes in Animate. I am struggling with the hands, because I know it's important to design with rigging in mind and I am pretty brand new to edapt tools, so I'm not sure of all it's capabilities with hand movement. The file was created in Illustrator with the intention of importing those files over to Animate. Any design critique and advice about rigging with edapt tools is what I am looking for. Also, I can't wrap my head around creating the shirt collar. Thanks in advance for the feedback. https://drive.google.com/file/d/1DBvNjQR-4gjJquJn5ULtZX9ScG_doLpz/view?usp=drive_link
hello everyone, with the last version, animate close him-self when i trying to import a illustrator file with multiple layers... please does anyone have an explanation ? (sorry for my english, i'm french 😉 )
Hi all! Im new to adobe animate so bare with me please! Im just going over some of the in-program tutorials and I cant seem to export into a gif? Its literally the pig flying or the girl jumping tutorials, super easy small files. It begins to render when I hit 'export gif' but then stops every time at 60%, regardless of the tutorial im on and frezzes until I Ctrl+Alt+Esc my way out of there. Anyone heard of this before? WELP!
I have rewritten these two methods in the jsx file without any effect function mouseDown() { fl.trace("Mouse button has been pressed"); } function mouseDown(pt) { fl.trace("x = "+ pt.x+" :: y = "+pt.y); } This method may also report errors fl.addEventListener("mouseDown", myFunction); Thank you very much if you can!
Bonjour, je suis le tutoriel animate avec la pieuvre et je n'ai pas le même nombre d'options de déformations (propriétés>Objet>options de déformations) qu'affichés sur le tutoriel. Je ne sais pas comment accéder aux options du tutoriel (notamment activer l'option figer la liaison, on peut voir sur la petite fenetre du tutoriel de mon screen qu'il y a plus d'options que sur ma version). Svp aidez moi, c'est ma première utilisation de ce logiciel et l'enfer commence !! Merci bcp
I have the following error, when i convert swf file to gfx using scaleform exporter,Note thatI can call other functions to set the width or the position of the button or the ImageLoader and it works, Only SetImagePath fails, so I can use other function to access the ImageLoader and set it's position!This has nothing to do with the fact that I am trying to pass a DDS file, I have this issue with JPG too, the code worked when I passed a JPG file in adobe animate but i get this error when I try to convert the swf to gfx using scaleform exporterfor now Adobe Animate won't let me load a dds file for some reason unlike AS2[Warning] <Flash> The method LoaderInfo::sharedEventsGet() is not implemented [MyButton.gfx] [Error] <Flash> TypeError: Error #1009: Cannot access a property or method of a null object reference. at fl.display::ProLoader instance constructor() at fl.containers::UILoader/initLoader() at fl.containers::UILoader/load() at MyButton/SetImagePath() at MyButton_fla::Ma
Hello, so I have been working on this adobe animate 2024 project for a good amount of time, but now suddenly the file that I was working on is competely gone. Early in the making of this project Adobe crashed, but I got a recovered file and was working on that instead, but now this specific file is gone, I tried to open it via "Open Recent" but it says that it doesn't exist and it removed it from the list. I always made sure to save my file, and I never deleted it so I am extremely confused on what is happening, please help.
Hello,I've been using Adobe Animate for almost a year, and recently, a problem has started to occur. The properties panel doesn't resize properly; inside, the length of the type and name textboxes exceeds the panel, and my swap and properties buttons disappear, as shown in the picture I attached. Sometimes, it doesn't get fixed even though I restart the program, and at other times, it fixes itself without any action on my part.It has been almost 6 or 7 months, and updates haven't fixed that bug. If you have a solution for it, I would appreciate your help.
please help me i am very new to this.
My published file of my animated project is not showing the images in HTML5 chrome browser. I have to submit my practice homework project in a compressed zip folder, but whenever I click on the HTML5 link FROM the zip folder it only shows me the text I put in the project but not the images.The bottom photo is supposed to look like this with both flowers animated and a surfing couple on one side. The surfing couple is a PNG image and the Hibiscus flowers are also PNG image. What am I doing wrong?
my prediction is that ruffle player would be adopted by major browsers as the next flash player plugin as i would call it "neo-flash player" which i belive in 2025 it could be adopted by all browsers technically as a next thing to flash, similar to html5 but made better to be both html5 and flash-like (altho html5 in my opinion sucks and WAflash is irrelevent to this post) and because it would revive most childhoods (i guess :|) since it is progressing on actionscript 1, 2, & 3.
https://youtu.be/Sg7y2hIkPtQhelp me please
Hi, I need to make animated logo with output format of SVG. I'm thinking to use Adobe Animate for this purpose, but have found information that some of features/functionality might not work properly with this solution. Could you confirm if it's safe tool in this case, or you would suggest another , better way to edit my logo?
Hi guys. I'm completing a bright colourful animation using Animate CC 2024 which I exported it in Quicktime. The audio is terrific but the rich colours are washed out and insipid. The colour palette is so bright and vibrant on the animate stage, but just horrible in the export. It used to be simple to adjust colour on a slider in Quicktime but that seems to have gone. In animate CC 2024 I can't find a way to enrich the colour depth. How can I get my bright vibrant colours back? The whole animation looks dull and white washed in Quicktime. Please can someone help and send me screen shots or suggest a way to brighten the colours? I exported using 1920 x 1080 dimensions and Quicktime - Apple ProRes 422 (HQ) setting. Maybe something else would be better to bring back the colours? Thank you for any help in advance! I really hope you have some suggestions 🤞 Wishes, nikki
My swf file can be opened with Animate and work there. However, I cannot save it as an Animate file, nor convert it to a working HTML5. It is the latter I want to be able to do. I got fine help in the Adobe chat, so that now it can be opened from Animated. Converting it to HTML5 (Control/Test) starts out but never finishes the conversion. The resulting file only contains 4 time frames and is not interactive. I attach my file in case someone is able to resolve the issue. Once you have the file in Animate, you should press 'Luk velkomst' to start it. Then you should drag one part of the figure to the other (the figures are two semiconductors (n-doped and p-doped) to construct a solar cell. After the two pieces are brought together. Sound appears as the electrons fill out holes in the p-doped part. You should then attach the contacts by draging with the mouse. The light is imagined to come from the right ('Affyr foton' will give you the next animation step where photons create e
Hi everyone! The latest update of Adobe Animate 22.0.8 is now available for you to download and install. This update has important bug fixes, stability improvements and is recommended for all users.https://helpx.adobe.com/animate/kb/fixed-issues.html Thanks, Preran
When I tried to create a new project by clicking "File", then "New" all it shows up is a black screen. I'm using MacOS Sonoma. Is there a way to fix this?
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.