Export html problem

hello. I have a keynote file that include 469 pages. when I export html, it is waiting for a long time and it is not save

It will take 5 minutes or so for that size of presentation to export. If it has not saved, close then re-open Keynote and export again.

Similar Messages

  • Problem While exporting HTML table to Excel(.CSV) in SharePoint 2010

    Hi ,
    I was exporting HTML table to .CSV file. 
    Problem is if any field contains '>' or '<' symbol then after exporting to .CSV, it was showing like '&gt' and '&lt' and the code is  as below.
    //Export HTML table to CSV 
    function toCSV() {
          var data = document.getElementById('reportstable');
          var csvData = [];
          var tmpArr = [];
          var tmpStr = '';
          for (var i = 0; i < data.rows[0].cells.length; i++) 
            tmpArr.push((data.rows[0].cells[i].innerText || data.rows[0].cells[i].textContent));
          csvData.push(tmpArr.join('\t'));
          for (var i = 1; i < data.rows.length; i++) 
            tmpArr = [];
            for (var j = 0; j < data.rows[0].cells.length; j++) 
            tmpArr.push(data.rows[i].cells[j].innerHTML);
            csvData.push(tmpArr.join('\t'));
          var output = csvData.join('\n');
          SaveContents(output);
    //For saving the file
    function SaveContents(element) {
            if (document.execCommand) {
                var oWin = window.open("about:blank","_blank");
                oWin.document.write(element);
                oWin.document.close();
                var success = oWin.document.execCommand('SaveAs', false, "FilteredReport.xls")
                oWin.close();
    Thanks in Advance

    Hi,
    According to your post, a problem occurred when you exported the HTML table to Excel(.CSV).
    The following code for your reference:
    function toCSV() {
    var data = document.getElementById('reportstable');
    var csvData = [];
    var tmpArr = [];
    var tmpStr = '';
    for (var i = 0; i < data.rows[0].cells.length; i++)
    tmpArr.push((data.rows[0].cells[i].innerText || data.rows[0].cells[i].textContent));
    csvData.push(tmpArr.join('\t'));
    for (var i = 1; i < data.rows.length; i++)
    tmpArr = [];
    for (var j = 0; j < data.rows[0].cells.length; j++)
    tmpArr.push(data.rows[i].cells[j].innerHTML);
    csvData.push(tmpArr.join('\t'));
    var output = csvData.join('\n');
    SaveContents(output.replace(/&lt;/g, '<').replace(/&gt;/g, '>'));
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Export HTML SVG problem

    Hi Muse,
    A little SVG problem after to export HTML site:
    Online Host: doesn't show all SVG files!
    Offline: show all graphic elements
    From what this may be?
    Thanks for help!

    Was this fixed? I have the exact same problem.
    Like in this example where I'm using the muse demo files http://users.telenet.be/pixelbot

  • Problems Exporting HTML from Fireworks (new to Fireworks)

    Forgive me if this is a rudimentary question, but I've searched the help files as well as online and I'm not finding anything on it.  I have a bunch of PNG image maps I need to update (someone else created the PNGs in Fireworks several years ago).  I open them, make the updates and choose export HTML and Images, and then it allows me to choose some options for the HTML, but not for the images.  For one thing, it keeps putting the image file somewhere other than where I want it (and as a result I have to move the image file and update the HTML manually), and it doesn't let me choose what kind of image I want to export.  I want JPEGs, but it keeps cranking out GIFs.  What am I missing here?
    Thanks!

    Ok, I finally noticed the Put Images in Subfolder check box, which allows me to choose where I want the image to end up (not exactly intuitive, though, as I don't want the image in a subfolder, per se, I want it in the same folder as the HTML!).  And I still don't see where I can choose what type of image to export.  (What's with this "Export" crap anyway?  Why not Save for Web and Devices like every other Adobe product I use?  I know, I know, it's related to Fireworks' Macromedia origins...still, let's get on the same page, here!)

  • Am exporting html table containing images data into pdf and after exporting images are not displaying in pdf document.

    Hi all,
             I trying to export html table which contains images into pdf through java script but after downloading pdf file am unable to see images.Is this problem with plugins are any other.Can any one help me out from this.
    Thanx in advance.

    Another option will be
    window.print(); as pdf. 
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Please help -  How to export HTML file into MS word format

    How to export HTML file into MS word file without any change
    in design format?
    As I have been trying to do that but problem is coming in
    formating. Table's witdth and height get disturbed in MS word when
    I import the html file.
    What I do after creating HTML in dreamweaver I save that file
    into .txt format in dreamweaver. and then import it in MS Word. And
    I tried too much for it but invain.
    Please help me in finding the way of solution.
    Please help me as my job is in trouble. It's very urgent
    pleeease help me. I'll be thankful to you.

    Just open the HTML file in Word.
    Walt
    "apollo321" <[email protected]> wrote in
    message
    news:gavbhd$6j4$[email protected]..
    > How to export HTML file into MS word file without any
    change in design
    > format?
    >
    > As I have been trying to do that but problem is coming
    in formating.
    > Table's
    > witdth and height get disturbed in MS word when I import
    the html file.
    >
    > What I do after creating HTML in dreamweaver I save that
    file into .txt
    > format
    > in dreamweaver. and then import it in MS Word. And I
    tried too much for it
    > but
    > invain.
    >
    > Please help me in finding the way of solution.
    >
    > Please help me as my job is in trouble. It's very urgent
    pleeease help me.
    > I'll be thankful to you.
    >

  • In what character format does CS5 Export HTML?

    In what character format does indesign export html?
    I am having trouble writting a parsing script because text that looks like:
    of mutations to particular “hotspot” regions
    becomes, to my chagrin,
    of mutations to particular “hotspot� regions
    Here is my java code that simulates this problem. Perhaps somebody knows which encoding to choose on Windows 7 pro x64?
        public static int CopyFile()
            try
            StringBuffer sb = null;
            String NullSpace = System.getProperty("line.separator");
            //Writer output = new BufferedWriter(new FileWriter(outputFile));
            BufferedWriter output = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFile),"UTF-8"));
            String line;
            BufferedReader input =  new BufferedReader(new FileReader(myFile));
            while((line = input.readLine())!=null)
                    sb = new StringBuffer();
                    //Parsing happens
                    sb.append(line);
                    output.write(sb.toString()+NullSpace);
                return 0;
            catch (Exception e)
                return 1;

    This particular line is the culprit (a case of What You Ask Is What You Get, really a rarity):
    BufferedWriter output = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFile),"UTF-8"));
    -- and what you see is UTF-8 Encoding in action (rather, what you see with a non-UTF-8 aware text editor).
    Check the Javascript Tools Guide, section "File- and Folder-supported encoding names", for an encoding that better suits your needs. Actually, you might want to check the generated HTML file -- UTF8 is a perfectly acceptable character encoding, but you have to tell your browser it is this one.
    Alternatively, you can always check the string buffer text for any character codes (which are Unicodes) above 126 and replace these with the universal "&#xxx;" notation for out-of-range character codes.

  • Export HTML Documentation / Metadata repository

    Hi,
    I'm trying to download (or export) the generated documentation on the metadata repository to my local workstation, but I'm having a problem. The procedure I use (procedure that I found into these forums) is:
    - On transport connection, I select the InfoCube for which I want the documentation to be downloaded.
    - Right click -> export html documentation
    The problem is that on the generated documentation, generated links are not correct. They all have a prefix "SAPEVENT" that doesn't allow the link to be followed and makes it erroneous.
    Have you faced this problem? How can be extracted a subset of the metadata repository that works locally on a user workstation?
    Thanks in advance,
    David.

    Hi all,
    I recently discovered that on our production system the metadata repository export works perfectly on a local machine (it doesn't generate urls with sapevent string), while in our development system the thing is not working.
    This should probably mean that it is all about customizing and configuration (cause both systems are on the same version and SP).
    Does anybody know how to configure this in order to export the metadata repository properly?
    Thanks,
    David.

  • Takes long time  to open exported HTML

    I've set up my exported HTML captivate project to run after
    10% is loaded, but I'm seeing strange/funny behavior:
    -Preload screen shows for approx 10 secs (this is fine)
    -Then first slides is displayed (good so far)
    -Then everything hangs for 45-60 seconds while the rest is
    loading (I want this to start playing after 10% is downloaded).
    The second slide is an imported AVI file. Does this mean that
    the whole thing needs to download before it is played?
    thanks!

    Hi MikeCrockerMike
    I'm just hazarding a guess here, but I'd guess that the
    reason we see 60% as the default for the preloader is because that
    may be the percentage that seems to work best overall. I'm also
    guessing that it's the video on the second slide that is causing
    the issue. I would think you could fairly easily confirm that by
    simply injecting a few slides immediately before it. Then test and
    see if they play and you end up waiting on the video slide.
    Cheers... Rick

  • Trying to export html to dreamweaver but save images as pngs.

    I'm designing a floating site.  My workflow is PS=====>Fireworks====>Dreamweaver.  I made a navbar in FW with a transparent background and exported html to dreamweaver.  I inserted the fireworks htm, put it online and it looks terrible.  You can see it here:
    http://www.njtraininggrounds.com/thirddaydesign.com/identity.html
    Don't worry about the portfolio button, I know what's going on there.  But I can't figure out why there is "stairstepping" on the logo and on all the navbar buttons.  This is the first time I've ever created a floating site.  I just put a jpeg for repeat using the dreamweaver css, and then inserted the rest in a table. I got some good replies in dreamweaver forums, but they all centered around saving the images when you export as pngs or as transparent gifs with a green matt.  How can I do this with fireworks cs3?
    Could anyone give me an idea of what I'm doing wrong?  Thanks so much.
    Wil

    The GIF format supports only one value of transparency. Your text, when anti-aliased against whatever background in Fireworks (transparent?), probably looks fine. When you export, though, you lose the smooth transition. (If you zoom in, you can see the blending of text to background and that's what you're losing.)
    You have two options.
    You can still use the GIF format. Just pick a green value out of your background image and use that for your canvas. Then, when you export, set that color to transparent. Where the pixels of the text and that color blend for the anti-aliasing, you'll have opaque pixels, but they'll look all right against your background image.
    Use a PNG8, which is an indexed palette like the GIF, but it supports semi-transparent colors. When you go to export, you may want to add more colors using the eye dropper tool, as FW doesn't quite pick out all the values it might for a smooth image. See this article:
    http://blogs.sitepoint.com/2007/09/18/png8-the-clear-winner/
    (I like exporting through File>Image Preview, myself.)

  • Can i  change font  size  in  jasper  exported  Html  report

    how can i change font size in jasper exported Html report.
    i also want table in that html report.

    So when is it going to be possible, I ask, as this is a question I and many others ask after each update!

  • Export Html in Indesign Cs5.5

    Hi All,
    How to export html using javascript in indesign cs 5.5?

    How to trash prefs:
    http://forums.adobe.com/thread/526990

  • C# winform + crystalreportviewer to export HTML format  ?

    Hi,guys.
      I create a winform app with a crystalreportViewer[cr dev for vs 2012], and i found CR can export many formats,like pdf,word,excel.
      But I can't find "HTML" format. Although I know we can export HTML in the editor environment's preview mode, but my winform app can't export.
      What should I do?Many thanks!
    Message was edited by: Ludek Uher

    What you want to do is load a strongly typed report. This method of loading a report uses the ReportDocument component from the Components tab of the ToolBox.  When this component is added to the form, a dialogue box appears and prompts the Developer as to which type of Component to add to the form -> Crystal Report.
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            crReportDocument = New test
            CrystalReportViewer1.ReportSource = crReportDocument
        End Sub
    Remeber that a strongly typed report is compiled into the app exe. E.g.; use with care as the exe size will grow by leaps and bounds...
    - Ludek  
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Migrating from Seagate Info 7.5 to CR Server XI release 2 - HTML problem

    We are currently trying to migrate from using Seagate Info 7.5 to using Crystal Reports Server XI Release 2, for our reports generation / scheduling.
    We currently have a number of reports which are generated as HTML and saved to a network shared folder. These reports are viewed by internal users and are updated every 15 minutes. This works well at the moment as the users have a browser shortcut to the report page and hit refresh every now and then to see updated content.
    However, in CR Server XI R2, there is no option to export HTML. So what would be the recommended workaround in this situation?
    Thanks in advance.

    I wasn't aware that CR Server doesn't include OpenDocument, are you certain?
    I think CR Server should have Crystal Reports URL Reporting though, called viewrpt.cwr. You can achieve pretty much the same with this, documentation is in our developer library:
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm
    Developer Library home > BusinessObjects Enterprise SDK > .NET developer guide and API reference > Viewing Reports and Documents using URLs > URL Reporting for Crystal Reports.

  • Publish SWF Output Options Export HTML

    I have a number of projects that display the Export HTML,
    Output Option of Publish SWF as checked and disabled. When I
    publish the project the htm file is not generated. All of these
    projects have SCORM Reporting selected and should be producing the
    swf file, htm file and scorm_support folder, but all I get is the
    swf file. Any thoughts?
    Thanks,
    Raymond Sugel Sr

    IThis is an aside but would be good for other newbies to
    know:
    what I learned and maybe you already know this is that when I
    published (having htm selected) it generated an output folder on
    its own!!! Lorn behold my htm, swf, and a file named js (?), I
    think was in that folder. I would have never gone looking for
    another folder but happened to see that was where I had placed by
    1st cp project days earlier.

Maybe you are looking for

  • Error while deploying ADSSAP component

    Hi all, Iam getting the following error while deploying ADSSAP component in Java Stack Failed deployment of SDAs: development component 'PDFManipulation'/'com.adobe'/'Adobe Systems'/'710.20060914230653.122540'/'0' : aborted Please help me out in solv

  • Is Bridge part of CS3?

    Probably a dumb question...but where does Bridge come into play with Photoshop and what is it's main function? Is Bridge part of CS3 or not? I have Photoshop Elements and will upgrading to CS3 when the new quarter starts so I've been reading up and a

  • Messages stuck in OAI schema

    Hi, Adapter is up and running but 3k messages are stuck in OAI tables and are not published to the adapter. Records exist in messageobjecttable and aotable. Stopping and starting adapter doesn't reslove this - bouncing db doesn't either. I can publis

  • Oracle Report that should display o/p in two tabs on a same spreadsheet in excel

    Hai,      I have a report that displays Supplier Requirements (Gross) for the specified number of weeks in Reports 10g. This Supplier Requirements Report (SRR) is displayed in excel format when the job is done through concurrent program. I have a req

  • Trying to print "horizontal" in iPhoto

    I am trying to print 'horizontal' but even after changing orientation in 'Page Setup' it still comes out vertical. Help! Thank you!