『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Get help using Adobe Animate and creating animations.
新着順
I'm trying to create a simple quiz, and it kind of works, but it pops up that error seemingly at random and I can't wrap my head around it. The quiz works by having a pool of 10 questions, each on a different frame. It starts by clicking a button, which uses this code: StartQuiz.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame); //A che domanda siamo nel quiz var QNumber:Number = 0; //frame delle domande var Qarray:Array = [2,3,4,5,6,7,8,9,10,11]; function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):void { this.PName = PlayerName.text; //Prendo un numero da 0 alla lunghezza dell'array var i:Number = (Math.floor(Math.random() * Qarray.length)); //Quel numero è la posizione nell'array della prossima domanda var ProxFrame:Number = Qarray[i]; //Che tolgo dall'array per evitare si ripeta Qarray.splice(i,1); //E mi segno a che domanda siamo per scriverla in alto e per fermarmi alla quinta QNumber++; trace("i=" + i); trace("QNumber =" + QNumber); tra
Hello, I just installed Adobe Animate. I have myopia and astigmatism and I can't find the opitions to let the program font bigger. may someone teach me how to configurate it?
Does anyone have an idea why parts of the arm disappear when warping?I made it so it doesn't convert to bitmap when warping and it stays at vector.
Hello, i downloaded adobe animate to make characters animations, and i really want to know what am i doing wrong, some of my characters leafs is not tweening properly and i dont like that sometimes the character just "snaps" from a position to another, how do i fix this?
Hello everyone, I need to use SignTool to sign or certify my .exe generated in Adobe Animate, but I’m getting the following error: SignTool Error: SignedCode::Sign returned error: 0x800700C1 %1 is not a valid Win32 application. Can anyone help me?
See: attatchment, It's really weird? I was fixing some things and it just started happening... help!
It's impossible to work. I have a poppy for m1. All updates are the latest. I don't understand why, but the program crashes every 5-15 minutes. Most often it turns off when working with a gradient.
I have an Ugee 1910B tablet--it's a poor-man's Cintique, but it's been good to me. It is set as my primary monitor. It works beautifully in Photoshop and Illustrator, but for some reason it refuses to work with Animate. The calibration just flies off the screen! I have a 2 screen setup--one is the Ugee and the other is a basic monitor. Before I start Animate, calibration is beautiful. But after I start animate, tt seems to think that my 2nd screen is part of the first, so when my pen is on the left edge of the artboard on screen 1, the cursor is half-way across screen 2. Photoshop and Illustrator don't do this, so I'm thinking it's something in Animate. Does anyone know how to fix this?
Is there anyone using Adobe Animate for Unity?Hello friends. As a very old Flash user, I am familiar with the interface and operation of Adobe Animate and I love it very much. I want to use it for character animations etc. while making a 2D game in Unity.However, in my experiments, I could not properly transfer a simple animation from Adobe Animate to Unity. (I am a beginner in Unity.)When I did research for this,https://community.adobe.com/t5/animate-discussions/exporting-animations-from-flash-to-unity/m-p/10444029There are topics from 6 years ago.https://helpx.adobe.com/animate/using/create-sprite-sheet.htmlThere is such a page, but I am not sure how well it works in Unity.Is there anyone using Adobe Animate for Unity? How do you do it?
I recently changed my Mac for a Mac studio with Sequoias 15.2 and I installed the latest Animate 24.0.7 and it is clearly the most unstable version that I have had to work on, I don't even understand that we offer this version with so many bugs.Hence my question: Which version of Animate is actually stable?And my second question, what is Adobe playing with Animate? why so little evolution and so many bad versions?Thank you for your feedback (and sorry for my Google English )
Hello, I recently upgraded Adobe Animate to 24.0.3, and the color panel's gradient square (use for picking colors) looks drastically different and does not accurately reflect the actual colors being picked at all. (e.g. in the screenshot, the color I selected is bright red, but the spot I'd had to click on to get bright red is showing light orange)All RGB color picking options show wrong colors in the gradient square. Are there settings I should tweak on my end, or is this an issue with Adobe 2024 in general? Thank you.
Hey Folks, I'm wondering if this can be done.... Is it possible to place ActionScript in a Frame that would generate a Frame Counter "App", live, onto the Stage, while I'm working in real time? I know you can add code to a dynamic TextField that would create this "Frame Counter" to a published or exported movieClip, but can something like this be done where it's actually happening in real time, while your creating? Peace,ElementX
This happends when i try to export my project or even play it as a movie, this never happened with my other animations i made. https://imgur.com/YKChzX5
okay, so basically the audio is in a separate layer than the animation and working just fine, but when i pause the audio and play it again, the audio is silent. i put it on loop and everytime the audio starts over it works again. this is very annoying because i need to know the exact location of where the singing of the song begins. is there anyway to fix this? id appreciate any help given, thank you!
That properties tab is wayyy too big. I'm still on 2019 and I've been waiting for something to shrink it since 2020. Any luck so far? I've tried Compact Mode but it changes nothing about the properties. Seriously, it does not need to be this big. This menu clogs up so much space 😞
I want to animate on Adobe animate of course I just wanted to please
Export file HTML5 canva Why does the motion of the movie appear very slow in the browser (Microsoft Edge) (Google Chrome)?and the frame rate is 60?
thanks
Hello,Currently i am doing eye blinks for every character every time i am doing a project. It takes a lot of time.I want to save an eye blink animation so i can put it on any character. Is it possible to create such a reusable animation? I have searched all over the internet and all i see are videos showing how to animate eye blinks for each character. Can anyone help please?
Hi, I'm working on a project in Adobe Animate CC, it's an HTML Canvas project which I'm coding in javascript. I'm not a coder - so I'm moving in small steps - but I'd like to rotate a movieclip by clicking and dragging the mouse over said movieclip. I've found some code which helped me to rotate the clip, however it rotates it once then stops (and I'd like it to gradually rotate, not just jump to a new rotation). The code I'm currently using looks like this (my movieclip is named 'leftyoke'): var angleInRadians = Math.atan2(stage.mouseY - this.leftyoke.y, stage.mouseX - this.leftyoke.x);var angleInDegrees = angleInRadians * (180 / Math.PI);this.leftyoke.addEventListener("pressmove", spin.bind(this));function spin(evt){this.leftyoke.rotation = angleInDegrees;}This works to rotate the movieclip, however as I said it only rotates to one static position and it jumps to that position. Any help on how to edit this so that the movieclip gradually rotates around would be much appreciated. I'd
I would like to make my own JSFL script for converting selected art into a symbol with a custom registration point using inputted X and Y coordinates.Though it seems the JSFL method for converting symbols: document.convertToSymbol() only allows for registration point positions of: "top left", "top center", "top right", "center", etc instead of specific X and Y coordinates. I know of some workarounds like using EDAPT Tools' "Set Reg Point To Transform Point" feature, or creating a symbol from a shape that's positioned where I want the registration point to be, and then copying and pasting main timeline art into that symbol, but that requires some re-alignment work.Is this even possible with JSFL alone? Thank you for any input on this.
My version of Adobe Flash (CS 5.5) has been the one from the web archive. The serial number that was on the installation has expired, so I can't use it anymore. The reason why I chose an outdated version of Flash? I just wanted to see how it worked. I was actually planning on making an animation with it because it's the only animation tool I have, but now I can't. I could've bought it like I was supposed to, but it's been discontinued, so unfortunately, piracy was the only option. I guess Adobe might ban me from the website for pirating one of their apps, breaking a law. I didn't know this would happen. I did not mean any harm to Adobe.
The vector characters and scenes used to make animations are drawn in Illustrator, but the files made with these materials are abnormally stuck when opened again. This is a problem that has troubled me for a long time. Does anyone know the cause of this problem?When making character animations in an, everything is normal, but after the production is completed, opening the file again is very slow, which makes people anxious.Checking the file, it is found that these materials from Illustrator always have many groups of internal nested symbols, many empty symbols, and these files have no filter effects.For example, it often takes more than a minute to open a 17M fla file, which is unacceptable.The system is win11, and it has nothing to do with the software version. I opened it on 21/22 and it was the same。But if I break up and regroup these Illustrator assets, especially removing the nested symbols within the group, the situation will improve somewhat, but it is obviously not suitable for
I just purchased the new cintiq pro 24. Previously I had the 21 UX and the eyedropper worked normally, if not exceptionally, picking any color used on the stage regardless of it being in a symbol, group, png, or otherwise. It was a great time to be alive, knowing that if I used the tool for its intended purpose, it would do its job. I'm using windows 10.Suddenly, with the new 4k monitor, it will turn any color I pick into grey. It will only work if I open the group or symbol and use the eyedropper on a selected, flattened drawing. It is insanely annoying to have to constantly go into a group or symbol to select a color that I was just using.I searched the forums and saw a post saying 4k monitors do this - and I have 2 displays currently so I did what the forum post said and tried using it on my other monitor. Eyedropper works fine. I tried making my cintiq the main display, and that changed nothing.How on earth do I fix this? I am massive
Hello,On my Mac, the system language is set to German. When I install the Animate package (24.0.7), the language is set to English.This problem does not occur with Animate (24.0.6).Does someone also have this problem and can possibly help me? Thank you
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.