Export html presentation to wordpress

Does anybody have a sugestion on how can I export a Keynote presentation as HTML and embend it on a page on my Wordpress Website ?

Hi,
According to your description, I think your problem is more related with IE develop problem, it would be better to provide your problem at Internet Explorer Dev Center:
http://social.msdn.microsoft.com/Forums/ie/en-US/home?forum=iewebdevelopment
Roger Lu
TechNet Community Support

Similar Messages

  • 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.

  • 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

  • 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

  • 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

  • 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.

  • 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.

  • 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.
    >

  • What line of code do I need to use to run flashplayer offline in a HTML presentation?

    I have a client who has had an HTML presentation built that uses Flashplayer when online, using the following lines of code:
    <!-- flash embed part -->  
                 <div id="flashPreview">
                     <a href="http://www.adobe.com/go/getflashplayer">
                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                     </a>
                 </div>
    He now wants to use it off line. What line of code to I need to add to the header to run Flashplayer on the local machine instead?
    thank you

    HI Mike,
    thank you for your help. The file was built by someone else, so trying to get inside their head!!
    There is coding for the expressInstall.swf:
    // FLASH EMBED PART
                                  var flashvars = {},params = {},attributes = {};
                                  params.quality = "high";
                                  params.scale = "noscale";
                                  params.salign = "tl";
                                  params.wmode = "transparent";
                                  params.bgcolor = "#111111";
                                  params.devicefont = "false";
                                  params.allowfullscreen = "true";
                                  params.allowscriptaccess = "always";
                                  attributes.id = "flashPreview";
                                  swfobject.embedSWF("preview.swf", "flashPreview", "100%", "100%", "9.0.0", "expressInstall.swf", flashvars, params, attributes);
    but nothing for the swfobject_modified.js, where would I put it???
    I really appreciate your help

  • 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!)

  • Since upgrading to Firefox V5 I do not have the option to manage bookmarks e.g. import and export html

    Since upgrading to the latest Firefox when I click on the bookmarks tab the option to manage my bookmarks is not available. Can this be repaired or will I have to do a new install of Firefox. If so will the new install automatically keep my current bookmarks or will I lose them. I cannot back them up because it is not giving me the option to export html.

    I have to agree, fixing something that was working fine and replacing it with the new crap has led me to switch browsers.BIG FAIL MOZILLA
    Why do people do this shit.
    Turn off updating to keep your good working version or you will be forced to use the new version that is missing some well used features.

  • 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.

Maybe you are looking for

  • Music not showing up in my Music Library after moving to another drive

    My C: drive was full, so I moved the file to my F: drive (have done this before, but somehow it only copied it and reverted to the old location on C). I found multiple iTunes folders throughout my many drives and got rid of all but the ones on the F:

  • Hyperlinks in slideshows

    I have a 152 page book I want to insert into my slideshows. Created in InDesign CS6, with hyperlinks to websites and email addresses on each page. Tried to work it in as an interactive  .pdf, but no joy. Used .swf in past, but want it viewable on IOS

  • Can call an applet method directly in javascript?

    I want to call an applet method directly in javascript as the following format: function test() ret_val = document.myapplet.mymethod(); myapplet is the applet name,mymethod is a public method in applet and it returns a string result,can that works? /

  • Mounting a dvd data disc

    it works fine using a live cd, but not in arch im using a custom kernel and i dont think anything was missed in terms of support i can only test this on one box since it has my dvd rom and dvd burner on it the disc is fine and can be read ok by more

  • When does MaxDB use Index strategy?

    Hello, I want to improve the performance of my MaxDB. So I tried to create indexes and now I want to check if these indexes are used or not! 1st: Is there a possibility to force MaxDB to use the index, if the sql statement consists e.g. LIKE '%N600%'