Exporting two many .gifs

I've been using Fireworks for a few weeks, and have not been able to relieve the following issue :
I've created a somewhat complex image in Fireworks and need to cut down on the number of .gifs that are exported. Other than simplifying the image (i.e. removing objects, aligning more objects, deleting some of the content, etc..) is there a way I can cut down on the number of image files that are exported?
I'm currently at 106 files (1 .htm & 105 .gifs), and as a result I'm experiencing slow load time on the SharePoint site that I've inserted the .htm file in as a Web Part. The number or .gifs are a result of the Web Slices which are storing a simple rollover behavior and an link.  What solutions are out there for someone in my posistion to keep the design mostly unchanged, but increase my images load time? 
Any help or direction would be very much appreciated.
Thanks!
- Jeff

Oooohhhh.... Okay. I don't see any way you can do this without a table. However, your table could be more efficient. (Actually, someone who's really good with CSS could probably do it, but...that isn't me! ) Or...just make one image and use an image map? That's what those are for.
However...let's see if this helps you at all...
The first thing to do is print this out (without the Web slices) Use a ruler and pencil and draw the minimal number of vertical and horizontal lines you need to create images. (New guidelines for a re-slicing of this diagram.) Consolidate where possible, even if that means adding white pixels to some images. It might be easiest to mark off where you have horizontal areas that are (mostly) all white.
For instance. Rather than having one line right below your Assessment and Execution shapes and another just above Strategy, Prioritization, etc, place one line. Maybe split the difference, maybe place it at the top of the second row of shapes, doesn't matter. Just have one.
Make the lower guideline for Strategy, Prioritization, etc match the lower guideline for the Toll Gates.
Next, you have a row of all white, except for the dotted vertical lines. You'll only need one slice on one of the vertical lines.
Make a consistent-height row that includes the Project Charters and Manage Changes shapes. All the way across. These odd-height shapes are making your table more complex. (Plus, if you have a regular table where some cells are filled with white images, you can usually remove those contents if the width and height are fixed by images in other cells. It simplifies. If nothing else, you can use a single 1x1-pixel white image and set the width and height to what you need.)
Keep going down the image.
Next, vertical lines...
You have teeny little spaces on either side of your Toll Gate shapes. Don't. Hmm. You'll have to split The Toll Gate regions in two, but have the actual slices for the diamond shapes span two vertical guidelines. If you can put the guidelines on the same side of the dotted line for each Toll Gate, then you will be able to use the same image for the dotted lines in rows that are otherwise white.
Are you doing rollovers? If so, then because of the tightness of the table, I would recommend that you limit your rollover effects to the text only. That way, you can have cells with images that might be the ends of two different colored shapes and you don't have to worry about changing colors.

Similar Messages

  • Export two TXT files with one button

    Hi,
    I'm using Application Express 2.0, i'm developing aplication in which users import few different excel spreadsheets and after that they export date in specified TXT format.
    I'w like to create functionality to export two and more files in CSV (TXT) format with one button and one click only in defined folder. It's necessary to simplify work of my endusers becose they have to generate ten or more files.
    Is it possible create functionality which generate files in defined folder without any addtional user's action?
    Best,
    Kiril

    Create a procedure to output the files, use the oracle directory object to define your output path.
    create or replace directory wayne as '/csv';
    use google or metalink to get examples. This way you can output as many files as you want, my personal opinion would be to create a dynamic report your users could run on demand.

  • Is it possible to export two alv grids to one spreadsheet?

    Hi All!
    I need to export two grids to one spreadsheet. Is it possible using standard functionality?
    It looks like i need to develop my own export function.
    Please advise.
    Many thanks!

    Hi,
    If you bolock list ALV display, then it is possible.
    If not, then you need to add one button on the application toolbar, in user command portion u need to write code for exporting the data to spreadshee either using OLE functionality or using GUI download like below ....
    data : lv_append TYPE char01,       "Append indicator
              lv_tabdl  TYPE char01,       "Tab indicator
        lv_tabdl = cl_abap_char_utilities=>horizontal_tab.
    " d/l the first table
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = lv_fname
            write_field_separator = lv_tabdl
          TABLES
            data_tab              = l_it_hdr
          EXCEPTIONS
            file_write_error      = 1
            no_batch              = 2
            OTHERS                = 3.
        IF sy-subrc <> 0.
    " Error message
        ENDIF.
    " d/l the second table
        lv_append = c_check.
        CALL FUNCTION 'GUI_DOWNLOAD'
          EXPORTING
            filename              = lv_fname
            write_field_separator = lv_tabdl
            append                = lv_append
          TABLES
            data_tab              = g_it_op_a
          EXCEPTIONS
            file_write_error      = 1
            no_batch              = 2
            OTHERS                = 3.
        IF sy-subrc <> 0.
    " Error message
        ENDIF.
    Regards,
    Amitava

  • Exporting an animated GIF

    Does anyone know whether it's possible to export an animated GIF from FCP? The only methods I've seen described involve using three programs I don't have - AE, Graphics Converter or ImageReady.

    I don't know if there is a way to do it with just FCP.
    Have you tried GIFBuilder? I heard it works very well.
    http://www.macupdate.com/info.php/id/235

  • How to export best quality gif animations in flash

    how to export best quality gif animations in flash

    GIF is a color restricted format with on/off support for transparency. There's really no settings you can tweak to output a better GIF. You have a drop-down during GIF sequence export to allow transparency, select the amount of colors (up to 256) and you can choose dither to save a little filespace. The only 2 things in there that really matter are dither and amount of colors used to export.
    If your content is very similar (e.g. not a lot of complex gradients/shadows/etc) and is limited in color use turning down the amount of colors used and dithering is your only option.
    Make sure you're exporting the GIF via "Publish Settings" so you get a single animated GIF and not file->export->movie because this creates a separate sequence of GIF images for each frame.

  • Exporting two remote objects on the same port

    Hi,
    I would like to export two remote objects on the same host, same port and bind them with different service names.
    There is no problem when I do that from the same Java program.
    But when I export and bind an object from a Java program 1, I cannot do the same with the second (and similar) Java program 2. This is the stack trace of my Exception:
    java.rmi.server.ExportException: Port already in use: 50040; nested exception is:
         java.net.BindException: Address already in use: JVM_Bind
         at sun.rmi.transport.tcp.TCPTransport.listen(TCPTransport.java:243)
         at sun.rmi.transport.tcp.TCPTransport.exportObject(TCPTransport.java:178)
         at sun.rmi.transport.tcp.TCPEndpoint.exportObject(TCPEndpoint.java:382)
         at sun.rmi.transport.LiveRef.exportObject(LiveRef.java:116)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:145)
         at sun.rmi.server.UnicastServerRef.exportObject(UnicastServerRef.java:129)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:275)
         at java.rmi.server.UnicastRemoteObject.exportObject(UnicastRemoteObject.java:178)
         at java.rmi.server.UnicastRemoteObject.<init>(UnicastRemoteObject.java:75)Can some one help please

    It should work in any version of Java as long as the server socket factories are null or equal according to Object.equals() or its override in the SSF.equals() method if any. Which needs to be present and needs to take the form:
    public boolean equals(Object object)
      return object != null && object.getClass() == this.getClass();
    }with further tests if the server socket factories have additional state.

  • CS 5 exports two pages at a time instead of one.

    I copied the following script from the Internet into notepad, saved it, and renamed it "spreads.jsx". I put it into my scripts file. It didn't do anything. app.interactivePDFExportPreferences.exportReaderSpreads = !app.interactivePDFExportPreferences.exportReaderSpreads
    I removed the facing pages check. My pages still exported two pages to a page. I then created a new document without the facing pages checked. I copied the 21 of my original file into the new file. It still exported two pages on one.
    >The only way to get non-facing pages to stick together is to disable page shuffling and drag them together in the Pages Panel, and that
    won't happen accidentally.
    I turned off shuffling, and that didn't help either. It was unclear what to drag in the Pages Panel.
    I'm now past my deadline for the newsletter and can use anybody's help so that I get an output in .pdf for single pages, so people can print out the file and have a single page on a single sheet.
    Lou
    First, here is my screen shot of the resulting .pdf file from exporting my 21 page document
    Second, here is the screen shot of my pages panel.
    Next, the export dialogue:
    Here is the scripts dialogue box.

    Someone, maybe you, suggested I start a new thread about the video. I 
    posted it to the forum under:
    "I solved the export single page issue and now my videos won't work." Here 
    is the text:
    I have  windows 7 for 64 bit. 
    I ran  a script on my InDesign CS 5 document to solve the problem with two
    pages  appearing on one .pdf file.  When I  clicked on it, here is what I
    get “Spreads are now ON in Interactive PDF  Preferences.”
    I get  two pages stuck together in my interactive .pdf file. I don’t want
    that because  it prints to pages on a single sheet and I want each page to
    print separately.  However, my three .f4v videos appear the way I want and run
    perfectly, even  though I got the error message, “One or more interactive
    elements are clipped in  ways that PDF files cannot reproduce. Those elements
    will be adjusted in the  exported PDF. “ 
    When I  click on the script again, it says, “Spreads are now OFF in
    Interactive PDF  Preferences.”
    The  pages are the way I want. Now my videos don’t behave. Video 1 vanished
    into a  red border with blank inside. Video 2 has moved half way up the
    page, covering  two photos, but it plays. Video 3 has just white space in its
    position. 
    Next,  I tried another script. When I ran it I got the message, “Shuffling
    pages will  remove some page transitions. To avoid this message in the
    future, uncheck allow  Document Pages to Shuffle in the Pages panel. Select OK to
    continue.” I hit okay  several times and the message kept appearing again
    and again. I finally clicked  “Don’t show again” and it went away. I got the
    same error message as before. The  videos are all screwed up, like before.
    I  toggled that script and exported again, and got the same error message.
    This  time, as before, the videos were messed up, but this time one of the
    videos was  off the page, but played. 
    Is  there any way I can keep one page to one in the .pdf AND have my videos
    work?
    Lou
    In a message dated 6/27/2011 7:39:51 A.M. US Mountain Standard Time, 
    [email protected] writes:
    Lou,
    In order to properly diagnose your problem it is  ESSENTIAL that ID is
    behaving in a known and predictable way. This means  that if you ran the
    first script, the one that Stix recommended, and ran  it only once and then
    deleted it, you MUST reinstall the script, and run  it again to reset the
    export behavior to spreads so we know what's going  on. You should see a
    new
    dialog telling you that exporting spreads is  active when the script runs.
    Until you do that, we really can't  tell where the problems with things
    moving might be coming  from.
    I design for print, and I've been working with InDesign  since it was first
    released, switching my production work from Quark  Xpress to InDesign when
    ID
    2.0 was released about 10 years ago. Before  going freelance as a designer
    I
    worked a few years in print shops learning  from other people's mistakes
    (and
    learning how to fix most of them), and  did some newspaper and magazine
    production. Quite a bit of what I know  about InDesign I've actually
    learned
    here. For the first few years I read  every post, and if I didn't already
    know the answer I tried to figure it  out. Even now, though, I usually
    learn
    something new at least once a  week.
    As I just mentioned, I design for print, so the interactive  stuff is a bit
    murky for me, too, but if we can get you to a known state  and see if
    things
    are where they belong, someone who does interactives all  the time may be
    able to help more. I don't know about the warning you get,  but I suspect
    it
    is  significant.

  • How to export two diferents DB to one unique DB

    Hi people,
    I doubt whether it is possible to export two different databases, each of them a central instance in different machines, one machine where the two instances together and merge these data bases on a single BD.Data from both database consolidated into a single database, apart from the two move from DB to non unicode unicode.
    Thanks!!!!

    No.
    If you want to merge systems you need to buy an SLO service, check http://service.sap.com/slo. That group has the tools to consolidate several systems on one.
    Markus

  • How to Export two web items using one export button in WAD (3.X) ?

    Hello Friends,
    I am trying to export two reports using one export button which are in two columns of the table in a web template created in WAD 3.X. but not able to do it. i also tried to doing the same thing in BI 7 copied that code and pasted in 3.X but that doesn't work.
    can anyone help me on that?
    Thanks,
    Nayan Joshi

    hi,
    SPS 14 for NW 7.0 is installed. I found out, that the filter pane has should have the property "Affected Data Providers (LINKED_DATA_PROVIDER_REF_LIST)" and the navigation pane not. Look at:
    - http://help.sap.com/saphelp_nw70/helpdata/en/16/3ee2416149c717e10000000a155106/content.htm
    - http://help.sap.com/saphelp_nw70/helpdata/en/85/08e241aa8e9d39e10000000a155106/content.htm
    But in my WDA both items don't have this property. The latest SPS for Front-End-Tools is installed.
    Any further ideas?

  • Export as Many Records, as Have Been Imported

    Hi, guys!
    I have to Export as many records from FDM, as have been Imported. Can you advise any script, which can do such actions?
    Best Regards

    You don't need a script to do this, just create pass through maps in each dimension.

  • How to export height quality gif frm Flash CS3?

    Hi,
    When i export a .GIF movie from Flash CS3 , the movie quality is not good, here is some dot dots in the gif movie.
    How to export height quality gif ? . Kindly explain pls as soon possible...
    Thanks & Regards
    Mohan

    GIF is a color restricted format with on/off support for transparency. There's really no settings you can tweak to output a better GIF. You have a drop-down during GIF sequence export to allow transparency, select the amount of colors (up to 256) and you can choose dither to save a little filespace. The only 2 things in there that really matter are dither and amount of colors used to export.
    If your content is very similar (e.g. not a lot of complex gradients/shadows/etc) and is limited in color use turning down the amount of colors used and dithering is your only option.
    Make sure you're exporting the GIF via "Publish Settings" so you get a single animated GIF and not file->export->movie because this creates a separate sequence of GIF images for each frame.

  • Quicktime pro -I have exported two mp4 to web formats with no problems.  all of a sudden it is now stopping and shutting down.  I am on a pc with windows 7  Help!

    Quicktime pro -I have exported two mp4 to web formats with no problems.  all of a sudden it is now stopping and shutting down.  I am on a pc with windows 7  Help!

    Is the problem limited to a specific file that you're exporting?

  • Exporter flash vers gif animé - Quel méthode pour un rendu correct ?

    Bonjour,
    Je cherche à simplifier mes exports d'animation fait sous Flash en gif animé.
    Pour l'instant pour obtenir un rendu correct (et avec la CS6)
    J'exportais en vidéo .avi puis sous Photoshop "importation vidéo dans des calques" ce qui me permettait ensuite d'exporter en gif animé avec une compression et des couleurs parfaites.
    Mais c'est super fastidieux et désormais Flash CC n'autorise pas l'export en .avi, et le .mov exporté ne s'importe pas sous Photoshop...
    Il doit bien y avoir une méthode d'exporter correctement en gif animé. Peut-être que c'est simplement que je n'utilise pas bien la fonction "exporter l'animation" qui me produit des gifs animés aux couleurs catastrophiques et à des tailles énormes.
    Quelle est la bonne technique rapide et performante que vous utilisez ?
    (sous Flash CC)
    Merci bien
    [Edit 16h27 :] Je viens d'essayer en exportant une sequence .png -> puis transfert par photoshop : bon poids (478ko pour une image 275x173px avec 500images à 25i/s) mais le lissage de la transparence foire
    J'en ai aussi profité pour tester le "Adobe Media encoder" avec cette même séquence .png, puisque 'il n'accepte pas les .swf et qu'il ne reconnait pas les .mov créé par Flash (vive la compatibilité), résultat niquel, transparence niquel, poids... euh 6,96Mo. Ah. Passons la qualité de 100 à 25 -> poids 6,96Mo. Pfffff...
    [Edit 23h :] Back to CS6 et à l'ancienne méthode... Tant pis.

    Je vais défaillir. J'en ai tellement besoin de cette option...
    S'il vous plait : I NEED HELP!

  • Two many activation /  also Ebook issue

    Problem in solving two many activation for digital edition? Actually digital edition is a free ware that you can download .. but the problem is when you use your adobe Id when you download digital edition before, that's when two many activation comes out / you need to double check your files that you completely uninstall the software in your computer ..

    You should submit a Web support request by going to http://www.adobe.com/support/digitaleditions and clicking on "Submit a web case."

  • How do I export an animated GIF from Premiere CC?

    How do I export an animated GIF from Premiere CC?
    I dont see an Animated codec option

    Hi Nick
    Believe me I STARTED there.
    I wouldnt post this message if I didnt try there first.
    I do not see Animated GIF as a codec option.
    Please walk me through the step by step process of how you got this.
    Because it is not as obvious as you're making it out to be.
    Further more perhaps a certain format has to be selected for Animated GIF options to appear?
    YES I AM ON CC version too. thanks!

Maybe you are looking for

  • IMPORTANT: No more "backup every time" or endless apple logo crashes!

    So after 11 crashes where the iPhone wouldn't come back after bootup, I had enough. I took it to the Apple Store and they replaced it. Since then, it crashed 2 more times. Yet again, had enough, and decided to try some experimenting. Using this metho

  • Cannot Install Flash Player to Mac OS X 10.9.4

    Hi. I have a mac OS X 10.9.4 and using safari 7.0.5. i have downloaded adobe flash player and before the download ever finishes i am told to close my safari. I have checked a million and one times to see if my safari is open and it is not open. I shu

  • Query Statement Properties Criteria -- Server "Location"

    When I generally create queries to populate collections [Membership Rules] in SCCM 2012, I use:  System Resource.System OU Name is like "[OU location]%" However, I recently received a request to create a query collection based on an attribute locatio

  • Creating documents for multiple devices

    This question was posted in response to the following article: http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60f5f54012e30daf910-8000 .html

  • System Landscape on XI or SRM ?

    Hello to all, Actually I have to configure the system landscape for several systems, but I do not know which are the best practices that I must follow to form it. I have two servers one of the XI and other one of SRM 5.0, additional I have in another