Flash freezes up everytime it saves the file

When I have a file with more than 30 keyframes it starts freezing every time I save the file or it auto saves. The more I work the longer it takes to save the file. This interrupts my work to an extremely frustrating level.
Is there a reason for this?
I'm not working on a super powered machine but I don't think I should have this problem. I have:
-Surface Pro (First gen)
-Windows 8.1
-i5 1.7GHz
-4 GB RAM
-128 GB HDD (80 available)
-Flash CC 13.1.0.226
Is there a setting in Flash or Windows 8 that I can change to fix this problem?

I am sorry, it is very difficult to understand exactly what you are asking.
When you download files from your camera to Photoshop they are large, several megs.
JPEG's coming directly from a camera for the most part have very little compression applied to them as so are much larger file size then an editing application would save them as.
Now if I am understanding correctly you are attempting to compress the images to 740 k or less per image.
When you choose the save the file, choose file>save as and choose jpg from the drop down and select OK.
You will get a box with jpeg options, it is from that box you can select in the image options section  the amount of compression you want applied to the JPG the more compression the smaller the file size. keep in mind too much compression starts to produce jpeg artifacts and distortions so not too much compression.

Similar Messages

  • Everytime I save a file from chrome it wants to save it with a (1) at the end of the file name. It i

    Everytime I save a file from chrome it wants to save it with a (1) at the end of the file name. It is extremely frustrating since I save hundreds of pdf files every month.
    It is the first time opening the file so it shouldn't be reverting to adding a (1) every time.
    I have chrome Version 28.0.1500.95 m

    Chrome does not use Adobe Reader to view or save PDF files. It does it all itself.
    Similarly FireFox, though it can be told to use Adobe Reader to view PDF files, doesn't do so by default. And Adobe Reader has nothing to do with saving.

  • IMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso

    iMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso. I select the file and the hit return as in step 8 of the Creating an
    iSO image document but the box that should open to select use iso does not open. How should I proceed?

    The Mac SuperDrive built into your Mac is the Optical drive.
    1. Insert your Windows DVD in Optical drive. Disconnect any external storage.
    2. Insert a USB2 Flash drive. This will be used to hold the BC drivers.
    3. Start BCA. Check the options to download software and Install Windows. You do not need to download Windows. The BCA will download the BC drivers to the USB.
    4. Partition your drive.
    5. You can see the Windows installer screens at https://help.apple.com/bootcamp/mac/5.0/help/#/bcmp173b3bf2.

  • Flashing screen when trying to save a file

    When i tried to save a file from Microsoft, when the screen popped up to show the possible folders to save, it started to flash at the folder preview (not the whole preview but half from mid point to bottom of the display). It was very lagging when scrolling down even though I still have almost 1GB of free memories. Most of the time I can't scroll anymore so I have to save the file somewhere without a folder and then drag to the desired folder in Finder. What should I do here?

    Save the file as a new name. Close and Open the new file.
    Most likely when a file transfer happens, Office makes the file 'Read Only'.
    If you have two opened files with the same name, the last opened file will be 'Read Only'.

  • Every time I try to print from word.mac it tells me that it can't save the file because I don't have permission then it closes the file. what do I do?

    Everytime I try to print a doc from word.mac it tells me that it can't save the file because I don't have permission then closes the file. What do I do to change this?

    If you have problems with updating or with the permissions then easiest is to download the full version and trash the currently installed version to do a clean install of the new version.
    Download a new copy of the Firefox program and save the DMG file to the desktop
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install
    * Install the new version that you have downloaded
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Using a dialog window to select a name and directory to save the file

    Hi there
    I have a problem with the FILE_SAVE_DIALOG method or better with the windows that will be shown.
    Before I save a file (e.g. PDF file) on the presentation server (the PC), I want to open a dialog window to have the option to give another directory and file name, under which I will save the file.
    Therefore I use the method CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG. I found many information about this FILE_SAVE_DIALOG in this forum, but these tips didn't satisfy me.
    The main problem is the FILE_FILTER. How to use this filter (is it a STRING?) properly, when I want to have a list in the dialog window? Nothing worked till now.
    I use ERP 2005 with JAVA 1.4.1-07.
    My Code:
    DATA: fileName         TYPE  STRING,
          path             TYPE  STRING,
          workdir          TYPE  STRING,
          user_action      TYPE  I,
          encoding         TYPE  ABAP_ENCODING.
        fileName = I_FILENAME.
        path = I_PATH.
        CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
           EXPORTING
             WINDOW_TITLE         = 'Save Adobe PDF file'
    *         WITH_ENCODING        = 'X'
             INITIAL_DIRECTORY    = workdir
    *         DEFAULT_EXTENSION    = '*.pdf'
             DEFAULT_FILE_NAME    = fileName
             FILE_FILTER          = '*.pdf'
             PROMPT_ON_OVERWRITE  = 'X'
          CHANGING
             FILENAME             = fileName
             PATH                 = path
             FULLPATH             = fullpath
             USER_ACTION          = user_action
             FILE_ENCODING        = encoding
          EXCEPTIONS
             CNTL_ERROR           = 1
             ERROR_NO_GUI         = 2
             NOT_SUPPORTED_BY_GUI = 3
             others               = 4.
        IF SY-SUBRC <> 0.
          EXIT.
        ENDIF.
        IF user_action <> CL_GUI_FRONTEND_SERVICES=>ACTION_OK.
          EXIT.
        ENDIF.
    When I call this method with these parameters, I get the dialog window, but there is no filtering for PDFs.
    I also tried the ideas with:
      FILE_FILTER = 'Adobe files (*.pdf)|(*.pdf)'
    and so on. But nothing made the dialog window work properly, even the selection list didn't show the right content to select.
    Who can help with this method SAVE_FILE_DIALOG?
    Thanks
    Frowin

    HI,
    check this program.
    <b>
    report ZTEST2.
    data:  file type string,
           path type string,
           file_path type string.
    data: itab type standard table of cskt.
    start-of-selection.
      SELECT * FROM cskt INTO TABLE itab.
      call method cl_gui_frontend_services=>file_save_dialog
          exporting
                    FILE_FILTER = '*.PDF'
          changing FILENAME = file
                   path     = path
                   fullpath = file_path.
      check not file_path is initial.
      call method cl_gui_frontend_services=>gui_download
        exporting    filename                = file_Path
                      WRITE_FIELD_SEPARATOR = 'X'
         changing    data_tab                = itab.
    </b>
    REgards,

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    When you save a file that's what options offers application
    05 мая 2014 г., в 13:40, Jacob Bugge <[email protected]> написал(а):
    sage go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click theStop Email Notifications link.

  • I can no longer directly print from the USPS print servelet. I now have to save the file and rename the extension to PDF load in another program to print. It used to be automatic. What happened?

    When trying to print from the USPS website (to print a label) when I click to pay and print instead of my print selection screen coming up I get the "Firefox doesn't know what to do with this" screen. THrough some web searching I found I can save the file, then change the extension to PDF and load it in another program and print but it adds two steps and is a real pain. Why would this have changed????

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See also "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • How do I tell Adobe reader to open a file instead of being prompted to save the file?

    how do I tell Adobe reader to open a file instead of being prompted to save the file?

    Go to Tools - Options - Applications and enter "pdf" into the filter field. Select the action that you want to associate with PDF files.
    In your case select one of the "Use Adobe Acrobat" actions.

  • Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created". What's the problem?

    Set Adobe Acrobat XI Pro. When I want to save the file in WORD, EXCEL or esporta file into ... immediately throws an error "save as failed to process this document no file was created".
    What's the problem?
    Any help in finding a solution is greatly appreciated.
    Thank you,

    Installed AcrobatXI PRO 11.0.09  on seven computers and laptops. Two of them gives an error when you try to save a document in WORD, EXCEL, Power Point, or when exporting to... error: Save failed to process this document. No File was created.
    But all good saves in the format of TXT and jpg.
    I have uninstalled and restored and re-installed and updated and registry cleaned and removed using the special utility Cleaner Tool for Acrobat, but nothing helps.
    On one notebook with Windows 8.1 and Microsoft office 2013, on another laptop with Windows 7 and Microsoft office 2010, the same problem, although there are computers with Windows 7 and Microsoft office 2010 and everything works.
    Tell me where to find the problem and how to solve it.
    Thank you.

  • When I click a link to a pdf file, I'm only presented with a save box,not a choice to just view the file. I have been able to view linked files in the past, but not anymore. I have to save the file to downloads then go to downloads and open it.

    when selecting a link to a pdf file , I'm only given the choice to save it ..not view it ? How do I change that ..?

    That depends on how the server sends the file.
    If this is a MIME (content) type that is supported by other software then you can open the file automatically.
    If the file is send with a generic content type like application/octet-stream or as Content-Disposition:attachment then you can only save the file.
    *https://addons.mozilla.org/firefox/addon/force-content-type/
    *https://addons.mozilla.org/firefox/addon/inlinedisposition-reloaded/

  • When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    What browser?

  • "Can't Save the File. Can't Print the File" error in Illustrato CS3

    I get the error "CAN'T SAVE THE FILE. CAN'T PRINT THE FILE". In Illustrator CS3
    According to adobe this is an issue of having more that 28 spot colors, so I went to the swatch palette and pulled the fly-out menu out and told it to remove any unused swatches which took me down to 6 spot colors, but I still get the error when trying to save it to EPS format, which is the format I have to have for the ripping program for the vinyl printer in my sign shop. Saving it in AI format causes no issues.
    Is there still something I am missing?
    Thanks
    Roger

    I appreciate your comment, I see what your saying.
    However...my issue is...I am making a vehicle wrap on a full size van for a radio station and it consist of pictures of a clouds for the background with two pictures of music artist that are associated with the kind of music this station plays, then there is a big round logo of the radio station that involves three spot colors (Purple, white and one of which is technically the black "K" ribbon) along with the web address of the station but it is of the same colors of the radio station logo...then there is the corporate logo that utilizes another spot color (blue)so as you can see I need the spot colors that I'm using.
    So just to make sure I'm clear...I can only have 28 different individual colors, even though I have photos involved in the rendering? How can I make that work because photos obviously have more than 28 colors in them. It doesn't make sense because you can do a live trace on something in literally hundreds of colors.
    Would it help if I flattened the photo work from photoshop before I move it to Illustrator? The reason I ask is because when I go to save and choose EPS the next save dialogue that comes up...down at the bottom there is two exclamations that one says something about embedding fonts, which I'm not concerned about and the other is something about there is some artwork that needs flattening.
    Please bear with me here cause I am definitely a newbie!! My boss threw to the wolves on this adventure and I am learning by reading and trial and error.
    Thanks
    Roger

Maybe you are looking for

  • PSE 7 stops working when trying to send e-mail

    I am running PSE 7, Vista 64.  When I try to send a pic using e-mail attachment thru Adobe e-mail svc (AOL e-mail account), PSE 7 crashes.  I get a Windows msg saying the PSE 7 stopped working & Windows closes PSE 7.  I can see the e-mail msg, but no

  • Apple ID incorrect password?

    its annoying i cant log in on my apple apps store my ipad and my mac computer,. i haven't changed my password and its saying incorrect password? but its been the same id and password ive been using ever since. ive purchased so many on that id like mo

  • Material Revers with 262

    Dear Guru, i have one scenario we create one Maintenance order with one components material after that issued the material with full quantity against PM order or reservation now when i want to revers some qty with T CODE MB21 and movement type  262 s

  • Maximum size of the SSIS String Variable?

    In SSIS, what is the maximum size of the String variable (one that you would define in the Variables dialog box)?

  • Pictures display too light

    In Photoshop 3 my photos display much lighter that in the windows viewer. They look good on the screen but when I print them they print much darker than they look in Elements, more like they display in windows viewer. My question is how do I adjust t