『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Get help using Adobe Animate and creating animations.
新着順
Hi there,I’m (very) new to Adobe Animate and have just worked through my first tutorial course.My problem is, I can’t for the life of me to get the animation to test in a browser! It quickly runs through something (too fast for me to see) and then….. nothing!I have never got it to work, not once. Tried with different files and even project files supplied from the course.I’ve been previewing my work by double-clicking the html file.My usual browser is FireFox, but I downloaded Chrome and set to default after reading some post recommendations but still nothing.I feel something is blocking the browser from launching??Any ideas? Going crazy (prob already there).Further Info: Working from a Mac (2021), macOS: Sonoma 14.4.1 and have the latest version of Adobe Animate.
Hi, the function makeResponsive have a problem, when i load two or more animations with different sizes in one page! an.makeResponsive = function( isResp, respDim, isScale, scaleType, domContainers ) { var lastW, lastH, lastS = 1; window.addEventListener("resize", resizeCanvas); resizeCanvas(); function resizeCanvas() { var w = lib.properties.width, h = lib.properties.height; [...] var w = lib.properties.width,h = lib.properties.height; height and width will be overwritten from the last loaded animation-script!the var "lib" must be passed here as a parameter in makeResponsitive. an.makeResponsive = function( *** lib, *** isResp, respDim, isScale, scaleType, domContainers ) { And fix://Code to support hidpi screens and responsive scaling. AdobeAn.makeResponsive(lib, true,'both',fal
I've been working on a project for 3 hours and the project closed itself. I didnt even leave the app and when I re-opened the project, all the progress I had made was gone. I checked for recovery files and once oppened, it was still the old, unworked version of my project. Is there any way for me to find my project, that should've been auto-saved, since I did have the feature enabled? Is there a version of it somewhere? Because I'm lost dont know what to do... Thank you for your help.
I made an animation that I am really proud of, but when I try to export it, I get these errors:Most of the layers listed here don't even have objects on frame 1.I tried looking up solutions online, but they all mention code and scripts. This animation features no codes or scripts. I checked multiple times.I have no idea what could possibly be causing this and I REALLY want to be able to show this animation to other people and - y'know - use it.Please help.
I've updated to Animate 2024 recently, but I can't get code completion to work in my AS3 projects. Keyboard shortcut (Ctrl+Space) is set, and "Code hints" checkbox is enabled in preferences. Hinting works fine in 23.0.2
I've created a interactive animation in Adobe Animate. I have placed it into a fixed div in the upper left hand corner of my html page. Over this object there is a scrollable column of divs. I need to trigger the animation when a specific div exits or enters the browser window. Is that possible?
I try to export my Adobe animate animation to adobe media but it just opens the encoder and dosent actually put anything innthe queue. If I try to press export media/video with encoder open, the button does nothing. I really need some help with this problem.
Everytime I restart adobe animate all of the settings restore to default and the perenfrences are compact. Does anyone have any solutions?
var page_body = document.getElementsByTagName("body")[0];Hello.Please tell me. )I placed a square object on the canvas, and converted it into a symbol.Gave him a name - chiefNow I'm writing code - page_body.style.overflow = "hidden";page_body.style.position = "fixed";var page_canvas = document.getElementsByTagName("canvas")[0];var _this = this;console.log("_this.chief.y - "+_this.chief.y);console.log("_this.chief.x - "+_this.chief.x);console.log("_this.chief.width - "+_this.chief.width); console output - _this.chief.y - 351.05_this.chief.x - 372.05_this.chief.width - undefined please help me, how can I find out the width of an object?
MP3's exported from Logic Pro X within the last two weeks suddenly won't import to Animate, had no issue importing into Animate before. Has there been a recent update that has different requirements than there used to be for MP3's? Older MP3's that were exported using the same process from Logic Pro X have no issue importing into Animate today, just the recent exports. Export settings are 16 bit, 44.1 KHzAnimate CC and Logic Pro X have latest software and updates.Tried importing on Mac & PC, neither worked to import mp3's
Hi, I would like to draw a sine wave, bordered at the top and bottom by parallel lines, and then animate the whole thing by having the parallel lines come together and move apart (move up and down) squashing and unsquashing the sine wave. Does anyone have any idea how I can do that?Many thanks
So i have been working on a little movie with sprites and several years ago i stopped. Ive picked it back up and somehow I made the entire stage and sprites zoom in. The frame before as well as the frame it happens both says the zoom is at 100%. Does anyone know what I did and how to get out of it? As you can see frame 10766 is normal and at 100%. In 10767 its still at 100%. So I have clearly did something that made everything zoom in. Can anyone help?
So I'm making a flash animation with 2d sprites and backgrounds for them to walk through. There is going to be 5 different fights going on and I wanted to view each fight seperately. I wanted to zoom in somehow .If one wanted to make the entire frame zoom in to view some characters up close how would one do this? I can resize layer 1 which is the background but then I have to also resize the characters themselves. Is this the only way to do it?
hi! im using adobe animate for 3-4 years but i see this problem for the first time,i just reseted my pc and installed adobe animate again,but this is new, i never seen this before,when i just duplitace my layers in the folder, and this becoming,also ,when i create merged layers like symbol,and make another layer,then pasting the that i duplitaced symbol,this becoming,and my pictures are transparent png,i just working on this adobe animate glitch in 4-5 weeks but i cant solved this big problem,and btw,when i break apart my bitmaps(layers),some of layers are gone,i mean some of layers are disaappear in my scene,im 15 years old little animator but i cant solved this problem,please,help me, i have no other alternatives to animating my character,im feeling really bad,please help 😞 (and sorry if i have bad English)
I'm starting a new post about this to minimize hijacking the original post where I posed the subject question. (https://community.adobe.com/t5/animate-discussions/identify-an-instance-by-the-name/m-p/9319295) My question/problem:I have a series of "named" movieclips that each contain the same "unnamed" movieclip (on the second frame of the parent MC). I want to play the inner movieclip when a button (targeting the parent MC) is clicked. @JoãoCésar17023019 posted this reply:You could do something like this: function playInnerMC(e) { e.currentTarget.gotoAndStop(1); e.currentTarget.children[0].gotoAndPlay(1); } this.parentMC.on("click", playInnerMC); I think this is pointing me in the right direction, however I am getting an error in the console... Uncaught TypeError: root[root.pageInstance][root.narrationMovieInstance].children[0].gotoAndPlay is not a function root is a reference to "this" on my main timeline (var root = this;) Could the
is there a way of changing the background of the library?
Hi.In an HTML5 canvas document, I'm trying to identify an element using the name when I click it. In AS3 the name property (evt.target.name) is the same instance name. With EaselJS seems to be different. I can use the name property for assign a name but I can't recover the name with evt.target.name. How can I do it?this.circle.name = "orange";this.circle.addEventListener("click", test.bind(this));function test(evt) { console.log(evt.target.name); //This doesn't works. Return null.}Thanks.
Keep getting "Items not found" And before you point me to previous "solutions"- No, my colors are all 100% alpha. For every new crap feature Adobe pushes each release, just for the sake of saying something is "new", they break ten things. This has to stop. Do you have a QA department? What the hell is going on over there? Short on money, can't hire good people? No, you're laughing all the way to the bank. Get your act together. Your products have more bugs than restaurants on Kitchen Nightmares. You were pathetic 10 years ago. Now you're just maliciously lazy. You're lucky you have a monopoly stranglehold on the graphic design market, or your company would've collapsed YEARS ago. EDIT: So I figured out that it doesn't work because the color I'm trying to change is a TAGGED swatch. The only way to change the color is to edit and change that tagged swatch. But that i
I'm trying to learn how to create animations using Macromedia Flash 8 and I ran into a problem using Vcam. It turns out that when my animation is executed, the camera covers an even larger area than it should.I already set the camera's resolution to the same as the scene's, so I adjusted the size with the Shift key, but it seems like it wasn't enough. can anybody help me? Thanks!Note that in theory, that space highlighted with a red brush should not appear. And I've already tried using another Vcam, but I didn't see any progress.
Bonjour;Mon logiciel animate est en anglais comment puis je le mettre en français ? s'il vous plais .je vous remrcie pour toute reponse merci d'avance
Hi everyone. I'm trying to get a project together for my students quickly. They are blazing through my first project. I used firefly to generate a car graphic quickly. Took it into photoshop to remove background and scale it down, then exported as png's. resolotion was 300 in photoshop. Now I import into animate cc and the imgae is blurry as heck. Here's link to the file. Can anyone tell me why? ps, the cars are small.
Why does the Korean version have a larger attribute panel than the English version? Does Adobe not think this is strange? The English version is 23 versions and the Korean version is 24 versions capture, but it doesn't differ depending on the version. It's the same big as the previous version or the latest version. Only the Korean version. I tried to use the Korean version, but I couldn't understand this part, so I was using only the English version, but it's the same even if the version is upgraded. Does anyone know how to reduce the horizontal size of the Korean version of the property panel or any other solution? You can drag it down to reduce it, but if you reduce it, the display will be cut off. This part is also ridiculous..
I'm using Animate AS3 3.0Use this program to compile it into an "exe file"Distributed to usersWhen the developer uploads a new update file to the serverIs there a way for users to update automatically?I can't think of any ideas that would approachIf possible, please provide example code.thank you
"No es posible cargar la escena en memoria. Es posible que el documento esté dañado." I simply opened the file after a break and got that message with no layers, no frames and no sound, absolutely nothing. What does this message mean and why did I lose a whole day of work on this file? Is there any way to anticipate this happening in the future (other than making regular backups since I was working on this file throughout the morning and didn't have time to make any backups)?
I'm new to Adobe animate and I'm trying to animate a .ai file by moving the anker points in a shape tween. If I cover another part of the same path, they will merge and I don't know why. Can I turn this option off somewhere? I don't want to merge them.
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.