How to edit and make a high quality swf a low quality one

How to edit and make a high quality swf a low quality one. how do you do this in adobe flash cs5? The file i edited is entirely too large

click file/publish settings/html and use the quality settings dropdown.
if that doesn't lead to satisfactory file size, you may need to check the properties of each bitmap in the library to see if it's set to over-ride the global settings.

Similar Messages

  • How to edit and add a signature on a pdf file

    how to edit and insert signature on a pdf attachment
    Creating, Editing & Exporting PDFs

    First the PDF file has to be editable.
    Then it depends on whether you want to sign it with an annotation (Acrobat stamp), an Electronic Signature (a.k.a EchoSign) or a Digital Signature (Acrobat).
    If it's a Stamp then go to Sign Panel>Get others to Sign and then you can use the Place Signature button.
    If it's an Electronic Signature then after you finished your stamp then just follow the wizard that pops up when you click the Signed. Proceed to Send Powered by EchoSign
    If it's a Digital Signature then go to Sign Panel>Work with Certificates>Sign with Certificate and follow the wizard.

  • Question:  How to edit and/or delete photos uploaded to web gallery?

    My Dad uploaded some photos to my web gallery without renaming the photos. Is there any way I can go in and edit and/or delete these photos? Sorry if it's a dumb question... I'm new to iLife '08 (really new to iLife in general)... and for the life of me can't figure out how to edit and/or delete these photos (without deleting the whole library).
    Thanks for any help!
    Ciao ~ Louie

    Guess I just answered my own question.
    For anybody else that may be wondering...
    From within iPhoto there is a "WEB GALLERY" tab in the left side menu. There you will see the name of your web gallery with a little icon that looks like an antenna. If you click on that icon... it will sync your web gallery photos that have been uploaded by other users into iPhoto. You can then edit and/or delete the photos within iPhoto and the edits will automatically change on the published web gallery (may depend on sync preferences... mine changed automatically).

  • Launchpad has disappeared from the Dock. Launchpad is present in Applications but refuses to activate. How to activate and make available in Dock? iMac 21.5 mid 2010. os X v10.7.2.

    Launchpad had disappeared from Dock. Launchpad is present in Applications but refuses to activate. How to activate and make available in Dock?
    iMac 21.5 mid 2010. os x v10.7.2.

    You should be able to put Launchpad back in the Dock by dragging it from the Applications folder to the left section of the Dock.  As to why it won't launch, run the Console utility, try to run Launchpad, and see if any messages appear in the Console window.

  • How to import and make the content of the original PDF document editable and preserves the pdf appearance and retains existing fields and formatting in LiveCycle

    Can someone tell me how I can see my content (artwork and text) after I import  it into LiveCycle Designer ES4?  I like to import and make the content of the original PDF document editable; preserves the pdf appearance and retains existing fields and formatting, then allow me to do the modifications and save it back into the original PDF document with changes. I have tried everything but still cannot see my content(artwork and Text) of my original PDF after importing it into LiveCycle. All I see are is a blank page with the formatting and layout of where my artwork and text should be. I like to see everything if possible so after I make my change I will know how it will look when I save it back into the PDF and open it in Acrobat Reader.

    Can someone tell me how I can see my content (artwork and text) after I import  it into LiveCycle Designer ES4?  I like to import and make the content of the original PDF document editable; preserves the pdf appearance and retains existing fields and formatting, then allow me to do the modifications and save it back into the original PDF document with changes. I have tried everything but still cannot see my content(artwork and Text) of my original PDF after importing it into LiveCycle. All I see are is a blank page with the formatting and layout of where my artwork and text should be. I like to see everything if possible so after I make my change I will know how it will look when I save it back into the PDF and open it in Acrobat Reader.

  • How to edit and update table control into database?

    I am doing table control. Here are my codes:
    *& Report  ZHERA_TABLE2
    REPORT  ZHERA_TABLE2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ZTABLE_CONTROL'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   ZHERA.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ZTABLE_CONTROL'
    TYPES: BEGIN OF T_ZTABLE_CONTROL,
             NAME LIKE ZHERA-NAME,
             AGE LIKE ZHERA-AGE,
           END OF T_ZTABLE_CONTROL.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ZTABLE_CONTROL'
    DATA:     G_ZTABLE_CONTROL_ITAB   TYPE T_ZTABLE_CONTROL OCCURS 0,
              G_ZTABLE_CONTROL_WA     TYPE T_ZTABLE_CONTROL. "work area
    DATA:     G_ZTABLE_CONTROL_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ZTABLE_CONTROL' ITSELF
    CONTROLS: ZTABLE_CONTROL TYPE TABLEVIEW USING SCREEN 1000.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: COPY DDIC-TABLE TO ITAB
    MODULE ZTABLE_CONTROL_INIT OUTPUT.
      IF G_ZTABLE_CONTROL_COPIED IS INITIAL.
    *&SPWIZARD: COPY DDIC-TABLE 'ZHERA'
    *&SPWIZARD: INTO INTERNAL TABLE 'g_ZTABLE_CONTROL_itab'
        SELECT * FROM ZHERA
           INTO CORRESPONDING FIELDS
           OF TABLE G_ZTABLE_CONTROL_ITAB.
        G_ZTABLE_CONTROL_COPIED = 'X'.
        REFRESH CONTROL 'ZTABLE_CONTROL' FROM SCREEN '1000'.
      ENDIF.
    ENDMODULE.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: MOVE ITAB TO DYNPRO
    MODULE ZTABLE_CONTROL_MOVE OUTPUT.
      MOVE-CORRESPONDING G_ZTABLE_CONTROL_WA TO ZHERA.
    ENDMODULE.
    Screen 1000 codes:
    PROCESS BEFORE OUTPUT.
    *&SPWIZARD: PBO FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      MODULE ZTABLE_CONTROL_INIT.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
      LOOP AT   G_ZTABLE_CONTROL_ITAB
           INTO G_ZTABLE_CONTROL_WA
           WITH CONTROL ZTABLE_CONTROL
           CURSOR ZTABLE_CONTROL-CURRENT_LINE.
    *&SPWIZARD:   MODULE ZTABLE_CONTROL_CHANGE_FIELD_ATTR
        MODULE ZTABLE_CONTROL_MOVE.
      ENDLOOP.
    MODULE STATUS_1000.
    PROCESS AFTER INPUT.
    *&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      LOOP AT G_ZTABLE_CONTROL_ITAB.
        CHAIN.
          FIELD ZHERA-NAME.
          FIELD ZHERA-AGE.
        ENDCHAIN.
      ENDLOOP.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
    MODULE USER_COMMAND_1000.
    Please show me where to put my codes to edit(edit directly on table control fields) and update my table control(using the 'save' button)?

    Hi,
    You have to put the following code in the PBO of screen 1000.This code would make the fields editable to make changes in the table control fields directly.
    Here there are 3 transactions.For create and change transactions, the fields will be in editable mode and for display transaction,they will be non editable mode.
    DESCRIBE TABLE tb_line LINES lin.    " tb_line is the name of the internal table for the table control
      tcl_item-lines = lin.                             '' lin hold the number of lines of the internal table
    CASE sy-tcode.
        WHEN 'ZCREATE09' OR 'ZCHANGE09'.
    ***Checking if the table control is empty or not***
          IF lin NE 0.       
            LOOP AT SCREEN.
    ***To make the screen editable****
              screen-input = 1.
            ENDLOOP.
          ELSE.
            LOOP AT SCREEN.
              IF screen-name CS 'TB_LINE'.
    ****To make the screen non-editable if no values are present in the
    ***table control****
                screen-input = 0.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
    Once the fields are edited and the save button is pressed,the entered values have to be populated into the Z tables.The code has to written in the PAI of the screen 1000.Here the values from the work area of the internal table are moved into the Z Table. The code will be.
    LOOP AT tb_line.
        ztm09_ekpo-ebeln = ztm09_ekko-ebeln.  "ztm09_ekko and ztm09_ekpo are the names of the Z Tables.
        ztm09_ekpo-ebelp = tb_line-ebelp.   
        ztm09_ekpo-matnr = tb_line-matnr.
        ztm09_ekpo-menge = tb_line-menge.
        ztm09_ekpo-meins = tb_line-meins.
        ztm09_ekpo-netpr = tb_line-netpr.
        ztm09_ekpo-waers = tb_line-waers.
    *****Update the entries into item table*****
        MODIFY ztm09_ekpo.
      ENDLOOP.
    Reward if helpfull
    Thanks,
    Kashyap

  • How to edit and or remake mass amounts of PDFs

    I work for a company whose instruction manuals for over 60 different products were originally created in Adobe Indesign CS2 and were then converted to PDFs. There are simple edits and changes that need to be made to these files on a weekly bases. No longer having the original file they were created in, we have had to suffice to converting the .pdf to a word doc and make changes this way, but with all the formating issues we need a better way to do this. What is the best program to have these pdfs converted to to be able to edit them? Are there any programs to do a conversion without having to completely recreate the document? We're also looking for a program that would be best in making simple quick edits when needed.

    This is a monstrous task. I assume you have already tried to move heaven and earth to get back the InDesign documents? Including all options for getting them back from backup?
    This is really a disaster. In losing these documents you have probably lost years of work which will have to be redone. Fixing it up in the PDFs just isn't viable.
    Converting to Word isn't much of a solution: InDesign supports much more complex layouts than Word. You need to decide either to go for a simpler layout that Word can do, or rebuilt them in InDesign. If there isn't an InDesign expert in house, it is likely to be more cost effective to pay a professional to rebuild them. There are of course options for streamlining, it isn't like the original layout, since the text can be copied and pasted. Maybe even graphics too.

  • How to edit and save a document in Pages

    How do I edit and save a document in Pages with MacBook Air

    1) Do you want to edit a .doc(x) and then save it as a .doc(x) again? You'll need to be a bit more specific
    2) Pages is an analogy to MS Word, so editing would be just as simple as typing. Go to 'Help' in the menu bar in Pages and then select 'Pages Help' to enter How-to's and Tutorials from Apple on using Pages.

  • Any Complete Tutorials On How To Edit And Export MIDI Files In GB?

    Hi. A friend sent me about 25 nice standard MIDI files that all open fine in QT Pro. She wants me to drag and drop them into GarageBand 2, attempt to edit them, change sounds and then export them out as the edited versions, key changes, added bars, change instrument sounds, etc,. Although I'm a trained musician who understands form, I really don't have a clue on how to use GB to edit and export standard MIDI files. Can this be done effectively in GB ver 2 or 3?
    Basically what she then wants to do is take the edited MIDI tracks, put them into itunes I guess on her iBook G4 or Ipod and do a solo act playing her keyboard live and usibg the MIDI tracks as background.
    Are there any links to step by step tutorials on how I can lerarn this procedure? Please offer any advice and links if you can and thanks for your help
    steveb

    Not really practical, I'm afraid. Capturing screenshots and cutting them up is possible with Photoshop, but PDF editing is very limited (fix a typo, move a picture).

  • How to edit and rebundle CFBundleExecutable bundle

    I already have one iPad aap and i just want to modify the language and few changes inside. I searched lot for the solution and i found that everything is bundled inside(i found one bundle named "micro SVR").
            <key>CFBundleExecutable</key>
            <string>micro SVR</string>
    Can any one please guide me how can edit this and rebundle it.

    That sounds as if it might be a question better asked in the Developers' Forum.

  • Export pdf    how to edit and save converted files

    I finally was able to convert to docx format, but see no way to use the converted file.  How can I edit and save in jpeg format?

    Hi Chuck,
    Please tell me what the problem is with the converted file. Are you unable to edit it, or did it not convert as you expected?
    Can you tell me how the PDF was created? (Different applications write PDF files differently, and some aren't as good as others--that can affect conversion).
    Best,
    Sara

  • How to edit and splice video clips

    I have 3 video clips that I wish to edit and join together.

    Use Premiere Elements, not Photoshop Elements:
    Adobe Premiere Elements Help | Help and tutorials

  • How to install  and make work efront LMS system on a mac mini server

    I need everyones help.
    I like to install and make to work efront learning management system. Do anyone knowsthe steps i have to do? The only i did and was unsuccesfuly is to download unzip and put the folder in the libraries-webserver-documents and try from the browser putting the address http://mydomain.com/efront/www/install/install.php
    Brings me to the installation page press continue and then says to me to fix some php settings. After that i do not know what to do. If any knows please help..

    If it has more than one OS installed you use either System Preferences>Startup Disk, or hold the Option/alt key at bootup to select which one.

  • High quality media vs low quality media

    Hi,
    I have a probably somewhat naive question about DVD media. I'm sure that there is a whole range of quality amongst the various suppliers. How does "high" quality distinguish itself from "low" quality (other than price, of course)? In other words, does a high quality DVD-R simply produce fewer coasters? Or will it also have a longer "shelve-life"? Are there cases where a low quality DVD will burn fine but will then contain errors, or can I assume that once the burn was successful and verified, I'll have a reliable disk, no matter who the supplier was?
    I'm asking this because I could live fine with a cheaper DVD and higher rate of coasters, as long as the disk is reliable once it is burned.
    Thanks for any insights you may have on this.
    Andrew
    eMac 800MHz, 640 RAM,   Mac OS X (10.3.9)  

    Hi,
    I have a probably somewhat naive question about DVD
    media. I'm sure that there is a whole range of
    quality amongst the various suppliers. How does
    "high" quality distinguish itself from "low" quality
    (other than price, of course)? In other words, does
    a high quality DVD-R simply produce fewer coasters?
    Or will it also have a longer "shelve-life"? Are
    there cases where a low quality DVD will burn fine
    but will then contain errors, or can I assume that
    once the burn was successful and verified, I'll have
    a reliable disk, no matter who the supplier was?
    'm asking this because I could live fine with a
    cheaper DVD and higher rate of coasters, as long as
    the disk is reliable once it is burned.
    Thanks for any insights you may have on this.
    Andrew
    eMac 800MHz,
    640 RAM,   Mac OS X (10.3.9)  
    no opinions?

  • How to edit video & exprt in same original settings & lose no quality

    I have always wondered how to do this.
    How can i say, for example, caoture video in DV PAL, bring it into FCP, cut it up, and export it back to DV PAL in the same exact quality that it began. Is it as simple as choosing the same settings for sequence and render settings?
    Also, if i did a screen capture and used the codec Sorenso Video 3, but then wanted to edit it in fcp, how would i edit it and export it so that no qaulity is lost?
    I just want to know if exporting it in the same original settings effects the video, because i know that if you get a 192 bitrate mp3 track and export it using 192 bitrate setting, it recompresses the mp3 again. Is this the same for video.
    If so, how do i got about changing contents in a video, but then export it at the same settings as the previous without losing quality
    Thank guys

    Doan
    You already told me that dv is fine, does this go with all the other formats.
    Sure!
    Also just something quickly of topic a bit. If i export say a .mov on the mac, and say in particular sorenso video 3, are these compatiable on a windows. Because i remeber one time when i capture my dv pal footage on fcp, i couldn't open it on a pc at all.
    I found the following info in Sorenson Site. Look at the Playback requirements in the end of that page.
    HERE IS THE LINK
    http://www.sorensonmedia.com/pages/?pageID=73
    Hope that helps !
      Alberto
    Message was edited by: Silal

Maybe you are looking for