Resize my Flash Animation?

My flash animation is 2.9 mb and I need 1 MB or less...

I am brand new to Flash so I know that my work can be optimized by someone who is play with flash.

Here is the download link... http://www.mediafire.com/?womwliz4zzd

If you can help me I would appreciate it. Thanks in advance...

-Scotty B

It is unlikley that everyone will download your file and work for you.  To reduce the file size usually requires taking the content can you load dynamically, such as images, audio and video files.

Tags: Adobe Animate

Similar Questions

  • Resizing the flash animation

    Hello world

    I made my movie dimensions 1400 x 400, but

    I would like to make size 700 x 200 without

    lose a lot of quality. Also, I want to be able

    for use in a presentation power point, to which

    format I can convert it to add it to the presentation

    Ted.

    Copy and paste the code you used.  Using the same actionscript version uses the swf file that you are trying to load.

  • Next to restless Captivate flash animations

    I use Flash animations in Captivate 3. The animations are published for Flash Player 6 before being incorporated in Captivate. The Captivate project is published for Flash Player 9.
    The animations look good in the Captivate SWF published when I run the SWF file directly into Flash Player. However, if I run the SWF in a browser (I tried both IE & Firefox, have Flash Player 9.0.45.0), the animations look very slow and jerky. What could be the reason?

    Kind regards
    Mohsin

    Kevin & Rick,

    Thanks for your replies. I diagnosed the problem. He had nothing to do with frame rates.
    What was actually happening, it's that my Captivate SWF was originally 1024 x 768, but when you open it in an HTML element, I was it NOT load at 100% of its size. Instead, I was loading to 880 x 660 in the my HTML OBJECT tag, which caused the outcome. Even when I was opening the SWF directly using IE, IE would resize the content to display fully, causing the animations play within the scale. This, somehow, makes look jerky.

    See you soon!
    Mohsin

  • Flash animations do not always load with Firefox 13.0.1

    Flash animations will not play even after the upgrade to Firefox 13.0.1

    Recent crashes of some multimedia content (this includes the Youtube videos, some flash games and other applications), in collaboration with Firefox 13 are probably caused by a recent update of Flash 11.3 and/or Real Player browser plugin to malfunction.

    To resolve this problem, follow the steps in these articles in the Knowledge Base:

    Flash Plugin - maintain and troubleshoot

    Adobe Flash plugin has crashed - avoid that it happen

    11.3 Flash does not load video in Firefox

    We'll find other information on more technical issues under these links:

    http://forums.Adobe.com/thread/1018071?TSTART=0

    http://blogs.Adobe.com/asset/2012/06/inside-Flash-Player-protected-mode-for-Firefox.html

    Please tell us if it helped!

  • Flash animations will not play after the flash update

    Hello

    It's really weird, but flash animations on most sites (sites like Ustream) will not play after that I updated the flash player. The funny thing is that on youtube play very well. I've tried disabling the addon of shockwave, relocation, etc., but nothing works. This problem is with firefox only because as the Chrome and Explorer the flash player works fine.

    Thank you.

    Thank you. In fact, it was not necessary because I have disabled protected mode flash and who did it. However, seems like it is not the best option but average tiem, I guess I have no choice.

    Thank you.

  • Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Dear Sirs. I ask you to give special attention that the frame rate vidio input and output cannot exclude more than 1 frame, otherwise the image will shake and blurry text. It is preferable to use the HD 720 P 25 sincerely Mikhail Osipov

  • How to add an audio file to my Flash Animation, recording Audio in QuickTime Player

    I have a Question.

    So I try to add an audio file to my Flash Animation, but the library is like 'NOPE SCREW YOU', for me and I don't know what to do. The Im trying to download the files were recorded with QuickTime Player.

    Info

    QuickTime Player Audio track made from

    Mac Book Air

    Flash CC 2015

    10.9.5 OSX

    Makes m4a files, QuickTime Player, that you can open in iTunes, click on save as MP3.

    But I do not have it. Working with audio in Flash is much more successful if the WAV sound. Use an audio conversion program to a WAV version, use Flash. It may be MP3 in the final swf or the files of the HTML5, but keep as WAV while working on the FLA.

    The converter that I use is this one:

    Audio-Converter on the Mac App Store

    It can also convert to OGG format, which is useful to support Firefox.

  • Flash animation in muse

    I placed a flash animation in muse, but the image quality is so bad. How can I save the animation look good in muse?

    Post edited by: matilde nemirovsky

    How exactly did you add animation in your site, also when you see outside the Muse that it shows very well?

    Thank you

    Sanjit

  • We use Flash Pro CC creating animations with legends and export to html 5.  We must translate the captions in other languages. How can we download translation of texts in our flash animations so we can use them in html5 using CreateJS?

    We use Flash Pro CC creating animations with legends and export to html 5.  We must translate the captions in other languages. How can we download translation of texts in our flash animations so we can use them in html5 using CreateJS?  I use the Flash on a Mac OSX 10.10.3

    Are you familiar with JavaScript?

    It does not completely answer your question, but the text displayed on the screen from any language (ActionScript/CreateJS / [insert the programming language]) generally all following the same path. Each language has a file stored in some form of key = value style, named through the language and the country of your choice, for example en_US.json

    Any language would allow the user to choose regional settings. The application would then grab the appropriate file and everywhere where the text is needed, the script must be using a (usually global or singleton) variable/service that can get the text of the requested key.

    for example if I wanted a user to have a confirmation of dialogue who said 'are you sure?"with buttons for 'Yes' and 'No', I would have (for me), an Englishman, USA base file en_US.json with these values, for example:

    en_US. JSON example:

    {

    'CONFIRM_YES_NO': ' are you sure?

    'YES': '' Yes. ''

    'NO': 'no '.

    }

    Then you use simply JS/AJAX to read this file. You analyze, or simply JSON decode in an object, or manually, depending on what suits your needs. When you want to display any text, you use the object (variable, maintenance, etc.) you have stored these values.

    for example calling to display function confirm dialogue:

    Nickname... but if you understand...

    and this comes from jQuery UI (see here)

    function confirmDialog() {}

    $(«#dialog-confirmer»).dialog({)

    Title: LocalizationObject ['CONFIRM_YES_NO'],

    buttons:]

    {

    text: LocalizationObject ["YES"],

    Click: function() {/ / do something for 'yes '.

    }

    {

    text: LocalizationObject ["NO"],

    Click: function() {/ / do something to the 'no '.

    }

    ]

    });

    }

    Please consider loosely. 'LocalizationObject' is a variable object or service that returns the appropriate text for the key that you provide. In this case, he provided the key 'CONFIRM_YES_NO', 'YES' and 'NO', which must be on the right answer for this key, localized.

    Again, this is not a manual on how to do it via Flash Pro but it's the general conceptual way you could do it in any language. There are a variety of other ways to do it, but it's a very simple way, as long as you keep your key names at least wake up verbose. A key name such as LocalizationObject ["ABC123"] is not really tell you what the key can be referred. Also nest them contributes greatly, as LocalizationObject ["UI'] ['DIALOGUES'] ['CONFIRM'] ['YES_NO'] = ' are you sure? It just shows I nested the title of the dialog within the user interface, because it is the text that appears in the user interface rather than content. Then inside dialog boxes that may contain a variety of different dialog boxes. Then inside her CONFIRM type of dialogue. Finally, the type is a dialogue YES_NO type (as opposed to OK_CANCEL or JUST_OK, etc.). Whole set makes it easy to understand what the text of reading: UI YES_NO confirm DIALOG boxes.

    I hope that from here you can see that you need to review everywhere you display text on the screen and centralize it in a sort of object (function or variable) of your choice. You must store the external language files to prevent unnecessarily load the other languages as well as an easy to modify Setup.

    The rest is just using basic JavaScript.

    Just be ready for the most difficult challenge. At least for me. The size of the text in several languages is very different, and in some cases requires the loading of special fonts. This can make layout in a very difficult dynamic environment. Always thinking all text how big or small can be in any particular and plan field on this size more and shrink so that to handle this situation correctly.

  • Kindly can anyone provide info on Flash animations? I'm creating a Web site in Dreamweaver and I intend to use Flash to draw animations to put in the site...?

    I do not know who to choose - whether HTML5 canvas or ActionScript 3.0 - in order to have the animations run smoothly on the browsers (while not giving users to pop-up messages to modernize their plugin to see my animations).

    If not, is there a way that I could use Edge animate to do the job? For example, you could import the flash animations in Edge animate and then import the edge Animation in Dreamweaver?  If I do this, the animations will work without problem most of the time, regardless of the type of plugin users can have?

    Thank you, in advance.

    the decision on whether or not to use html5 is based if you want mobile phones without flash (like ios devices) to 'see' your Web site.

    If you want to use html5, you can use flash or an edge.

  • Flash animation playing so quickly in the slides

    Hi all

    I imported a flash AS3 annimation in captivate 8, but the docs plays faster than expected. Is there anyway I could get it to normal speed when I play in a flash palyer?

    Thanks in advance.

    Default speed in Captivate is 30 fps, check the framerate of your SWF animation, it's probably lower (default value is 24 frames per second). You change the framerate of the Flash animation up to 30 or you lower the framerate in Captivate to the same value as the animation in front of the post. You can find the framerate in Preferences, project, publication settings

  • How to make a flash (for other flash animations) Starter

    What is the code that I use when I click on a button (goto1_btn), it loads another (1.swf) flash animation that has a back button (back_btn) to return to the Starter? (Gallery)

    (Note: I will use more than 30 btn on the starter at the end →: over 30 swf in the folder)

    Thank you

    I will not write all the code that you will need to do this because it can become complex enough to what you describe wanting to.  As part of your learning, you must also learn to find solutions of coding.  Google and the Flash help documentation are two of the best tools available for this.  Search Google using "Tutorial AS3 Loader", you might want to even try to search "tutorial Gallery of AS3.

  • Urgent: How to export a Director cast members - in this case it's a flash animation?

    Hello

    I have a problem - of course, that's why I'm here.

    My problem is that, in my film Director (version 11.5), a flash animation is a member of the distribution list (sorry, I don't know the words German and hope totranslate correctly!). There is no source URL in its properties. It must therefore 'in' the film the Director somehow.

    Unfortunately the original file is lost. Now, I need to have this flash animation in a flash animation, not as a member / cast. Is it possible to get the film off als Director a file?

    Thanks a lot for your help!

    Kind regards

    Jana

    Where and how did you run the code you posted?

    I would say open your Message (CTRL + M) window with your manager the file open in the authoring environment and does not. Then run the following in your Message window (type/copy & paste in the upper pane and press ENTER):

    put exportSWF (member ("Player"), _movie.path & "output.swf", TRUE)

    If you still get an error 'undefined Manager', then you have placed the xtra in the wrong directory. It should go in something like (changing based on your system language and the installation folder):

    C:\Program Files\Adobe\Adobe Director 11\Configuration\Xtras\Scripting\

  • 8.1 Windows and IE 11 will not play test the Flash animation

    I am running a fully patched/updated updated copy of 8.1 of Windows and Internet Explorer version 11 (on the desktop)

    If I try to run test movie to http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8.html , I get the following message:

    Flash.jpg

    I've checked and checked that...

    • Flash Player is enabled
    • ActiveX filtering is disabled
    • Internet Explorer runs the latest version of Flash Player

    Can anyone give me any suggestions as to what I could try to fix this?

    Any help would be appreciated.

    IE11.jpg

    Neil_O wrote:

    Thanks Mike,.

    The context in which it was that we have a web site where we have historically used .swf and .flv movies.  A couple of customers have "complained" that they could not see the movies and, when we have tried on Windows 8.1 IE11, nor could I.  This leads me to the Adobe test page, where I only saw the film of test if I have activated the Caompatbility Mode (as you suggest - thank you).

    Our web site will not make .swqf or .flv movies regardless of the mode of Campatibility.  Next, I suppose, is to see if we can at least restore some features - even if it is 'encouraging' users to enable Compatibility Mode.

    SWF and SWQF even become obsolete.  A year ago I stopped using video and Flash animations and moved to HTML5.

    1. they need any plug-ins. Even with IE11.

    2. they are mobile and Internet accessible from more than half of all traffic is now in mobile phones or tablets (which cannot and do not run Flash), it makes no sense to develop content that is invisible for many viewers.

    Compatibility mode is that only a "band-aid" for an important screws upward to MS. HTML5 eliminates the need for Mode of Comaptibility, eliminating the need for plug-in that they SAMU changes inadvertently disable.

  • After the update of the Mavericks, I'm not able to sync audio in a flash animation.

    Hello

    After the update of the Mavericks, I'm not able to sync audio in a flash animation.

    I did:

    1 has created an animation

    2 Adding audio to the timeline

    3. Sync selected in the sound Properties window.

    According to what I've done was to adjust the animation to the sound and you press 'enter' plays the audio, it actually creates a noise.

    Hope you guys have my problum

    Please notify.

    Kind regards

    Rabi Raja

    The new update (version Flash Pro CC - November 2013) which has a fix for this 10.9 OSX sound hum issue is now available for you. This update of Flash CC will update your version of flash to 13.1.0.217.

    You can update the application Adobe Creative Cloud or Flash Pro CC help-> Update menu.

    You can find more information about the update: http://helpx.adobe.com/flash/using/whats-new.html

    Thank you

    -Reynaud

Maybe you are looking for