Get help using Adobe Animate and creating animations.
Recently active
video,Ogg,MPEG 4,WebMvideo,Ogg,MP3,Wav。Different browsers use different types.Hope to detect the type supported by the current browser,Automatic playback to this type of file.How the code is written in ANcc html5.For example: <audio controls="controls"> <source src="song.ogg" type="audio/ogg"> <source src="song.mp3" type="audio/mpeg"> Your browser does not support the audio tag. </audio>
Hi!I'm wondering how to create static surface reflections in Animate cc? Can't find anything useful online. The closest I've come is a gradient mask tutorial in flash but I can't make it work.
Hello there! I have to ask if someone can help me with a problem. Im trying to create an interactive slide with animations. I've used HTML5 code and coded the buttons to skip to specific frame and play from this frame and stop at that frame. The problem is that when I try it out, the animations has to play to the end until I skip to the next step. If I press the "Next"-button before the animation has played, it just repeats from the beginning. What can I do to remedy this issue?
J'ai développé des applications sous flash CS6. J'ai utilisé le langage ActionScript. Je voudrais, avec Animate, transformer les applications en HTML5. Par contre je ne trouve pas de tutoriels ou de livre montrant comment utiliser le langage HTML. Adobe propose 3 pages seulement pour expliquer comment convertir le code ActionSctipt au format HTML5. C'est beaucoup trop succinct. Où touver (ou acheter) de la documentation ? Merci pour votre réponse.I developed applications under flash CS6. I used the ActionScript language. I would like, with Animate, to transform the applications into HTML5. However, I can't find any tutorials or books showing how to use HTML. Adobe offers only 3 pages to explain how to convert ActionSctipt code to HTML5 format. It's far too succinct. Where can I find (or buy) documentation? Thank you for your reply.
I using Animate cc 2020 to create interactive animations in html5 canvas format. If I create a simple animation by drawing objects on teh screen the movie plays back perfectly. But then I add a movie clip or text or graphic from the library and the movie just shows a blank stage when I try to test it or play it in a browser. If I remove the symbol from teh timeline it plays perfectly. I am desparate for help as I have several projects to do before the end of the year.
Tried uninstalling. Restarting brand new laptop. When I open Animate it won't let me click on anything and Dings every time I click. Can only close window through task bar and sometimes that doesn't do it. Wth do I do???
Hello,I animated 2 characters (in vector) that I bought in an image bank and that I reworked a little (simplified) with AI and I animate a walking session from left to right with the tool "bones". These characters were imported in pieces (head, body, arms, etc.) via copy / paste from AI to ANIMATE. When I view the walking animations internally in the scenario, everything works fine but when I view them in the browser (Chrome), the left (rear) leg of my 2 characters does not move and I notice that it is the same problem for both.Some post-post error messages include "Changing the transformation point in an interpolation may produce unexpected results. (22)".Can you help me ?
I just purchased a Wacom Cintiq 16 tablet for drawing in Adobe Animate. It works great in Adobe photoshop but it doesn't work so well in Adobe Animate.When I want to draw a small dot, for instance the pupil of an eye, a small circle appears on the screen. Within this circle the pen doesn't do anything at all.When I lift the pen a menu appears, like having clicked on the rightmouse button. What could be the cause of this problem?
Hello. In my adobe animate, frames are playing that are not in the project. They were created in another project that I have already deleted. When I play back cuts, I see them at the end. How to solve this problem?
Hi, college student here. Working on a 360 vr video for school, and it's my first time delving into this territory. When working with a VR 360 file, the option to preview a still of your animation is available to you. Unfortunately, when I make changes to my timeline, these changes are not always reflected when I update my VR preview. This makes it so I can't make sure my corrections so that stitching is not apparent are working.Here is an example of this; my canvas is to the left, VR preview to the right. I have clicked "refresh". Notice that the ball is far away from the edge of the canvas where the stitch will be (there is another ball on the far right of the canvas in order to create a loop around the scene)Sometimes, the lineart and the ball completely disappear when I try to update the preview as well, but I'm less concerned about that. I just need the preview to update when i change the position of this ball so I can make sure that it moves smoothly across the screen. Thank you
Hello all, I am fairly new to Animate 2020 and have a little project in HTML5/Canvas with a few buttons on a stage. It's like a computer desktop with some icons to click on. Each button displays a movieclip (the "windows" on the desktop) when it's clicked. Like with a real computer desktop, the window which is opening when the button is clicked should be in the very front.I found this Javascript which worked quite nicely, but only brings then button itself (instance name is "myButton") to the front: this.bringToFront = function(e){ e.currentTarget.parent.addChild(e.currentTarget); }; this.myButton.on("mousedown", this.bringToFront); I tried this, with "myMC" being the Movieclip which I actually want to bring to the front, but that didn't work:this.myButton.on("mousedown", this.myMC.bringToFront); Can anyone help? Thanks a lot!!!
callstack: performproductsinfo exception: retrieving product information faild. reason no suitable products was found in diver.xml: product adobe animate cc and mobile device packaging (win64) minimum os version required 6.01.7601
When I crunch some PNGs, when I place them in the animate file, it exports them to the image folder huge. EG import at 8k, and it exports to the image folder at 59k?
I just updated to 2020 version of adobe animate cc and i try to load flash fiiles ive been working on and it just shows a white screen, I start a new project WHITE screen. Is there a way to go back to earlier versions or somthing because i cant get any work done just white screen every time.
MovieClip extracted with texture atlas is shaking as it appears in the attached gif.
When I open Adobe Animate, animate opens a trial version. Adobe believes that someone else should log in. I can not choose another (me). I have two choices: either shut down, or start trial. How can I tell that I want to start as another subscription (dsa-eltron@odfjelldrilling.com)?
How can I add audio to a VR background created in Animate?
Hi all, I work making HTML banners and since last friday have encountered a major bug that is preventing me from publishing any. When I go to select the destination folder to publish to, it does not publish anything. Nothing to the chosen folder (it used to work just fine, worked even earlier that day) and nothing anywhere else. I tried deleting my preferences folders and nothing has fixed it. I even tried to complete my animation on a friends computer using his version of Animate and still ran into the same issue. It will not let me pick where I am publishing to (or will let me pick, but won't register where I have picked). Is this a software issue? Bugged update? Thank you!
Reporting a graphical glitch in Actions Panel.OSX 10.13.6, Animate CC, latest. It's been happening for a while now.Boxes (or holes showing content underneath) appear while editing ActionScript.
I need to play the video automatically and jump to the specified frame at the end.I need help. this.stop();var op= this;stage.on("drawstart", initVideo, this, true);function initVideo() {alert("yes")$("#video1")[0].addEventListener("ended",nextFrame);$("#video1")[0].play();}function nextFrame(evt) {evt.currentTarget.removeEventListener("ended",nextFrame);op.gotoAndStop("ed");} @JoãoCésar17023019 @kglad @Colin Holgate @
I have created a Fla in Animate. Under my Publish Settings, there is no "Gif" option, and no way to prevent looping (see pic). I don't understand this. When it was still Flash, this was easy to do. How do I stop my animated Gif from looping?
Hey there, I am trying to make objects (shopping bags) on the main stage draggable and have actually managed to do that. But it would be really nice if the user could only drag the bags by "picking them up" at the handles.For the bags itself I used the code shown below, it works well (with the draggable mc's being "bag1", "bag2", etc.). Inside the mcs of "bagx"is another movieclip with the handles called "bag_handle".So, clicking and dragging "bag_handle" should move the whole "bag" MC where it's in.Is that possible? Here is the code I used for the regular dragging:this.stop(); createjs.Touch.enable(stage); var dragItems = [this.bag1, this.bag2]; for(var i = 0; i<dragItems.length; i++){ dragItems[i].on("mousedown", onMouseDown.bind(this)); dragItems[i].on("pressmove", onMouseMove.bind(this)); }; function onMouseDown(evt) { var reg = evt.currentTarget.globalToLocal(evt.stageX, evt.stageY); var p = this.parent.globalToLocal(evt.stageX, evt.stageY); evt.currentTarget.regX
var Bt = new lib.objetos;this.addChild(Bt);Bt.x = 275, 5Bt.y = 200, 5var child = Btthis.setChildIndex(child, this.numChildren - 1);//////////////////////////////////////////z-index continue 1 dont 0!//////////////////////////////////////////
var Bt = new lib.objetos;this.addChild(Bt);Bt.x = 275, 5Bt.y = 200, 5var child = Btthis.setChildIndex(child, this.numChildren - 1);alert(Bt.numChildren)alert(this.bt18.numChildren)see the addchild behind the component how to pass it on?
I had an idea to make a start menu for my animation (similar to DVD start menus). Behind the button, I want a small animation to continually play (loop) until I press "play", where the actual animation will begin and the previous small animation will not be visible. How would I do 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.