Get help using Adobe Animate and creating animations.
Recently active
when pressing play on the side i can't hear playback I don't know what is causing this so if someone could help that be great. Also when playing the animation it does not play audio.
I am using createjs.Bitmap to add an SVG to the stage. The project is using a responsive layout.. The problem is the SVG does not scale relative to the stage and other elements around it. var patientImagePath = data['patient_image_path'] patientImage = new createjs.Bitmap(patientImagePath); patientImage.x = 96; patientImage.y = 36.05; patientImage.scaleX = 0.16; patientImage.scaleY = 0.16; root.patientDetailsModal.addChild(patientImage);'Normal' view on large monitor: and after reducing the browser size using dragging (not using zoom...). Any solutions?
hallo, , is there anyone who has trouble with SHAPE HINT? I have been trying for two days but it doesn't work, I followed tutorials and even your suggestions, but nothing ... the suggestions in the second frame remain red and don't work. I followed all the suggestions, I work only with shape tweens, with ungrouped shapes, everything that is said in the guide and in the community, is there any bug in the updated version 2 days ago? thanks
Hello everyone! Not sure if this is the right place to submit a bug report, but I hope you will redirect me to the right place if it's not to be posted here. I'm using a Wacom Intuos 4 graphic tablet and am running Adobe Animate on a Windows PC. I have double click bound to one of the pen keys. When I use this key to rename a layer and accidentally slip to another layer while the button is still pressed, Animate crashes without a warning. Tried to do this again and it crashed on me every time. If anyone needs more information to fix this, I'd be happy to help. Animate crashes on me on a regular basis, so I'm kind of used to press CRTL-S every few minutes by now. Adressing this one particular bug might prevent some frustration and lost work though. For the time being, I rebound my pen button. Wish you all a wonderful weekend.
The menu dialog boxes open too large for my screen and I can't confirm any of my choices. The OK and cancel buttons are below the screen.How do I resize them???I've tried dragging to shrink and resetting some preferences, but nothing has worked. -Annie
Hey, i dont know if anyone has use ToonBoom Harmony but in it you can change all the colour in the project to a different one all at the same time. I was wondering if theres any plugins for animate that can do this or if theres already a way to do this within animate Thanks
When I try to animate this scuba diver by making his limbs motion tweens, his foot moves... only for the first frame without any editing done. The only way to fix this is to delete and re-animate the foot... Any help on how to prevent this because it keeps happening to me? Thank you!
Hello everyone.I just installed Animate and when I insert a frame label, the text is not readable.It's the first time it has ever happened. Does anyone have a solution for this?Thank you
hi , i am using adobe animate cc ..i have problem in using html5canvas while publish in html some times its not working properly and when i use images in file its not working in chrome and internet explorer , i missing something i dont know what am missing ,Html5canvas file is not working in offline its working only when have internet connection ...can u pls anyone help .. Thanks in advance .[Here is the list of all Adobe forums... https://forums.adobe.com/welcome][Moved from Comments forum to specific Program forum... Mod]
I have a combobox which is dynamically populated via JQuery AJAX with JSON. How do I clear the values of that combobox to refesh it for new values?
Hey, so one of the bugs (if it is a bug and i'm not doing something wrong) is that half the time i try to flip and objects(s) they jump half way across the screen. Some of this I can attribute to having some mark or dot I didn't notice that was way off center, but I also notice that some cleaned up symbols are doing the same thing and only on the first flip. Here is a video, can anyone explain this to me? (on a related topic i noticed that when i locked my characters arm layers as to only flip the torso, one of the arms stuck on and refused to let go of the torso. I have both arms parented to the torso and both arms locked so why does only 1 stick? Here's the vid.
When I try to do simple tasks in Animate (draw a text box, draw a shape, etc...) nothing shows up on the screen. The only time I can see things I've added to a layer is if I go to exit the page without saving and they briefly flash on the blank workspace before the whole page closes. What am I doing wrong? Is there a view / setting I need to adjust??
Hi Team,There was an error in my adobe animate CC . I cannot reset any workspace its always show artboard
I have populated a combobox with JSON via Query AJAX. I now want to prepend a selected option, like 'Select an option...'. How should I do this? $.ajax({ url: "scripts/get_patients.php", dataType: 'json' }).then(function (data) { assignDataF(data); }) function assignDataF(data) { for (var i = 0; i < data.length; i++) { $('#patients_cbx').append($("<option/>").attr("value", i).text(data[i].label)); } }
Hello.Looking for advice/tutorial on how to create sparks (from an angle grinder) in Adobe Animate.Any help would be much appreciated.Thank you.
Hi there, I'm trying to publish a panorama VR project. Unfortunately, even after following a tutorial, the outcome is still blank white. I found another forum post here that suggested checking for errors in the browser, and it seems there are three however, I have no idea what they mean or how to fix them. Any help would be greatly appreciated.
How would I load a SVG dynamically onto the stage? E.g. into a movieclip? Then remove it when not required? The path to the SVG is contained as a column in a MySQL database, which is not a problem in itself, and the SVGs are contained in a folder in the published directory.
How to flip the face like this? Is it by using different faces or the same face using a method i just want to know.
Hi,In the quick publish option it says 3gp instead of MP4 and exports this tiny 3gp file. If I choose file>export video even though it says MPEG4 it still gives me a 3gp file. How can I get an MPG4 file? Thanks!
Hello, The 'Split Audio' function seems to have started deleting 5/6 frames before where I intended to split the audio. If I right-click and split the audio on the highlighted frame, this happens:This only seems to have started happening in the last day or so, and I can't think of any changes I've made that would have caused it. Any help is much appreciated!
I have been reading about Adobe's plan to "kill Flash" in 2020, but am slightly confused as to what it means. Every article I've read seems to only talk about the web Flash Player. Is this the only thing which is being discontinued? Or does Adobe plan to completely discontinue the .swf file format?My work requires me to create projects and publish them in .swf, they're then included in presentations using 3rd party software and used for educational purposes. I believe the end result is contained in a .exe file so that the presenters don't require any version of Flash Player. But the presentations are never deployed on the web.Does anyone know the specifics of what will and won't be supported after 2020? Ie, is it just the web player? Or will the desktop version of the player be discontinued as well? Or even worse, will Animate no longer allow publication in the .swf file format?
Recien instale Animate, y no funcionan los ejemplos. En la parte de propiedades, la malla aparece apagada y no se pueden modifacar las mismas. ehhh¿? alguien tiene idea de como activar las propiedades??? gracias
How do I get the selected option label for combobox? function assignDataF(data) { for (var i = 0; i < data.length; i++) { $('#patients_cbx').append($("<option/>").attr("value", data[i]).text(data[i].label)); } } //Select patient from ComboBox list $("#dom_overlay_container").on("change", "#patients_cbx", showPatientDetails.bind(this)); function showPatientDetails(evt) { root.patientDetailsModal.visibility = true; root.patientDetailsModal.patient_name.text = evt.target.innerText; }Tried with evt.target.innerText but it just gives me all the labels in the combobox...
I have applied a drop shadow filter to a movieclip with a white fill. The problem is that the shadow shows through the white background. Not only that, but dynamic text in the movieclip also inherits that drop shadow.
I have a layer above some comboboxes. However, the comboboxes always appear ontop of other layers at run time. Is there a way to restrict the rendering of the comboboxes at their assigned layer?
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.