An html exported keynote shows "Slide couldn't be displayed" when uploaded to my web server

Uploaded an html exported keynote (6.5.2) to web server but got the msg: Slide couldn't be displayed.
But on my mac locally it works fine.
Trying multiple scenarios, even a new blank file but the outcome is always the same.

Hi Lisa,
the Office Web Apps Server discovery URL defined in Lync Topology is https://officewebappint.domain.local/hosting/discovery.
the issue still persist. I hope there is any other solutions.
THank you for your feedback.
Assraf Kamaruddin Suria Business Solutions Sdn. Bhd.

Similar Messages

  • Don´t show label "Update..." when uploading a file

    Hi all,
    I have the next situation. I made a functionality to upload and stores images in the db. I use an inputFile, and a commandButton which calls a bean method like this:
    <af:gridCell marginStart="5px" marginEnd="5px" width="330px" id="gc10" inlineStyle="text-align:right;">
    <af:inputFile label="Search image" id="if1" value="#{ImageBean.file}"
    partialTriggers="cb6"/>
    </af:gridCell>
    <af:gridCell marginStart="5px" marginEnd="5px" width="100px;" id="gc8">
    <af:commandButton text="Add image" id="cb6" action="#{ImageBean.uploadImage}"
    inlineStyle="text-align:left;" disabled="false" />
    </af:gridCell>
    I do all the logic in the uploadImage method, and everything works fine (create the new row, insert the blob in that row, commit, display it on the screen, etc), but the thing is that when it returns, the inputFile shows a button "Update..." and I don´t want to show it because I already made the upload.
    I want to show the inputFile just like it was to allow adding more images.
    I'm using JDev 11.1.2.3.0.
    I appreciate if anyone can suggest something.
    Thanks.

    Hi,
    the easiest way is to set the value of ImageBean > "file" property to null so that the component does not have a value reference to the uploaded file.
    Frank

  • Unread Emails in Outlook 2010 Clients shows both UNREAD AND READ emails when connected to Exchange 2013 Server SP1

    We recently upgraded to Exchange 2013 SP1 with a client user-base of Office 2010 Professional Plus / Outlook 2010 SP3.
    All Unread Email favorites folders show both Unread and Read emails, just like the inbox. Removal of the folder and recreating yields the same results, as does creating a custom folder. However, in Outlook 2013 there is no problem. 
    Is there a patch or hot fix for this issue? Or does anyone know how to fix this issue so that the UNREAD EMAILS SHOW UP IN THE UNREAD FOLDER AND NOT INCLUDE THE READ EMAILS? 
    Thank you!
    Kim Parker-Polito / Newhall Land

    Go down to Search Folders
    - Right click on Search Folders and create New Search Folder leave default "Unread Mail1" and click OK
    - Right click on the new “Unread Mail1” folder and choose “Customize this search folder”
    - Click on Browse
    - Select the checkbox for “Search subfolders”
    - Press OK and OK again.
    - Right click on old "Unread Mail" Folder and delete.

  • Javascript development on Apex - How to show changes on the Javascript on Apex without restarting the web server?

      Hi,
    I am working on a Javascript for Apex. The changes are not reflected and I was told to restart the app server. Is there a better way for Apex to process the changed Javascript? Thanks.

    Hi,
    I assume you store JavaScript to web server folder and browser caches your file.
    Use query string end of file name like
    /my.js?v=0.0.1
    And when you change file, change query string value
    Templates JavaScript help says:
    File reference using a query string in the URL referencing the application version, such that when the application is upgraded
    (and the version is incremented), the browser will be instructed to always load the new file and ignore any previously cached files.
    /myjs/main.js?version=#APP_VERSION#

  • Keynote html export not displaying correctly in Internet Explorer

    I exported a Keynote presentation to html, uploaded it to my server, and only half of the slide shows in Internet Explorer. Every other browser displays the presenation just fine. Any ideas how to correct the Explorer error?

    Hello! I have a real fix to this issue. 
    Open the the player.js file and find the o an u varibles and hard code a resolution, I chose 1280x1024. Choose anything you want it will all work. There's some issue with the varibles that are being passed because as soon as you hard code a resolution it works across the board... All browsers are good. 
    o=document.viewport.getWidth();
    u=document.viewport.getHeight();
    are the varibles that you must change... I changed mine to:
    o=1280;
    u=1024;
    and it worked like a charm. 
    Cheers!
    Scott

  • Now, how do I exlude navigation controls in the HTMl export in Keynote

    In older version of Keynote there was an option when exporting to HTML that was "Include navigation controls". If I unchecked they were gone. Now that option is gone and I can't figure out how to remove the Navigation controls from the bottom of the bottom of the webpage. I tried modifying the "hud" div in the KeynoteDHTMLPlayer.css file as other forum posts suggest, but it seems to do nothing. I really need that thing gone. HELP!

    There are no navigation controls in HTML exportfrom Keynote 6.2.
    If a video is in the presentation, QuickTime controls will show when the cursor is on top of the video.

  • Hyperlinks in keynote HTML export.

    I've created a presentation with Keynote 3 and would like words and objects to link to external web sites.
    The links work when the presentation is viewed using Keynote. But when I export to HTML the links don't work.
    Am I doing something wrong? Or is this feature not available?

    Sigh, well that makes perfect since Apple, have "hyperlinks" built into keynotes that work like a webpage in preview, but when you export to HTML ( a logical choice) have it stop working...
    1 this should be an easy fix for apple, make each slide a seperatr HTML file and link between them. Currently it's already exporting each slide as a JPG.
    Yes I know Keynote is not meant to be a web design program... But if it can export to PDF, Quicktime, and even Powerpoint, HTML export (that works with hyperlinks) should be easily done...

  • How to randomly show slides in Keynote

    In May Cuztheyrefast posted this question (now archived).
    "Is there a way to shuffle the order of the slides? I am using Keynote for flashcards but I'm afraid I'll start to memorize the answers by order rather than actually knowing the answer. "
    This can be done with Applescript. I won't write the full script because so much depends on how you want it to work exactly, but here are the core components.
    Refer to the slideshow:
    first slideshow
    or to always refer to a specific slideshow:
    slideshow “name”
    Find number of slides in a slideshow:
    set noofslides to number of slides of first slideshow
    Build a list of slideshow numbers:
    set noofslides to number of slides of first slideshow
    set nslides to {}
    Repeat with n from 1 to noofslides
    set nslides to nslides & n
    end repeat
    Play a slideshow starting from a random slide:
    start from slide (some item of nslides) of slideshow “name”
    Jump to a random slide without playing it:
    show slide (some item of nslides) of slideshow “name”
    As an example here is a script to jump to a random slide without playing it.
    tell application "Keynote"
    activate
    set noofslides to number of slides of first slideshow
    set nslides to {}
    -- build a list with this number of items
    repeat with n from 1 to noofslides
    set nslides to nslides & n
    end repeat
    -- jump to a slide
    show slide (some item of nslides) of first slideshow
    end tell
    This is pretty fast. However, if you play the slideshow you'd have to stop after each slide, hit the run button on the script and wait for the show to start. You might be able to put in a delay and have the script automatically display a new slide every few seconds. If you have Salling Clicker you might be able to have your cell phone trigger the script to advance. Other than that, I don't know how you would communicate with your script while Keynote was playing a slideshow.
    Unfortunately, the hyperlink function in Keynote doesn't allow linking to an Applescript. That would be really cool and powerful.

    You can't set a default font.
    Instead use a custom slide master with the font you want to use.

  • I have Photoshop elements 10 and have been trying to copy albums onto a flash drive to show slide show on my TV. 10 does not have a flash drive connection, so I am trying to put it on my harddrive. When I hit the export to harddrive or anything else, I ge

    I have Photoshop elements 10 and have been trying to copy albums onto a flash drive to show slide show on my TV. 10 does not have a flash drive connection, so I am trying to put it on my harddrive. When I hit the export to harddrive or anything else, I get a message saying it is trying to locate and reconnect missing photos, goes into a search mode and displays the identifiers of the located images. When I try to follow the directions for reconnecting I get nowhere. Can you help?

    Wrong forum; we don't do Elements here.
    You want:  Photoshop Elements

  • How can I export a graphic slide with a quicktime movie from Keynote?

    I export a title slide with a quicktime movie from Keynote to my desktop and it plays fine with audio. Once I insert or drag the clip into iWeb the resolution is degraded and very choppy. The resolution is 320x200 and I'm exporting from Keynote as a custom size (320x200) Frame rate: 29.97 Key Frames: Automatic Key Reordering is checked Data Rate: Automatic Quality: Multi pass. I need some help.

    how large is the video and if you publish - does it still have the same horrible quality?
    you might considering exporting as flash (loads faster) and integrating that into your iweb site using post-editing: http://karreth.com/index.php/articles/iframes-iweb/
    max

  • Exporting Aperture 3 slide show to work on TV

    Hi I've created a slideshow with music but can't seem to export it to work on a television (in the UK this is)
    I've tried both HD versions and ,just as a chance Apple tv. Any Ideas where I'm going wrong welcome.
    It plays fine on a pc or mac.
    Richard

    When you exported your slide show what option did you select, when you view it on your computer what app are you using to view the slide show.  Try importing it into iTunes if you have not done that then try to watch it via Apple TV, Or you can make a DVD or the show in iDVD. 

  • Why is it when I convert a Keynote show into HTML, PC users cannot see it properly? Using latest OS and Keynote versions.

    Why is it when I convert a keynote show into HTML, PC users cannot see it properly on their computers?

    JohnRobertBrown wrote:
    It looks perfect using Google Chrome on my Mac. But doesn't work well on Explorer on a PC.  It seems to be way off center.
    There is never any guarantee that automatically generated html will look right on every browser, especially Explorer.  For max compatibility with MS stuff it's best to use Office to start with instead of iWorks.
    I don't know whether you could manually edit the Keynote html to make it work better with Explorer.  It would be interesting to know whether it looks right in Windows Safari, Chrome, or FireFox so you could know whether only IE does it wrong.

  • Export keynote slides as high quality jpeg

    The tool for exporting keynote slides as jpegs at the highest quality setting results in very low quality jpegs (less than 100 k).  How can I increase the quality?

    I just figured it out.  Go to the inspector and select the document inspector (first icon on the left).  Look down near the bottom of that little window for "Slide Size"  and select a bigger slide size to meet the requirements of quality desired.  When i increased my slide size to 1680 x 1050, the export tool produced good quality jpegs (600+ K) from each slide, when I selected the highest quality.   A little hint about this in the slide export dialogue box might be helpful in some future version of Keynote. 

  • Export Keynote slides

    Does anyone know how to export a specific slide or all slides as an image (png, jpg)? I would rather not have to write a script that uses the GUI to export the images, I want to do it be able to do it by interfacing with keynote directly and not having any windows in the program pop open. Is there any way to do this with Applescript or any other way to automate this programatically?
    Thanks

    dragging slides from Keynote to iPhoto does not work for me, iPhoto won't accept them and does not recognise the format.
    Mac Book Pro   Mac OS X (10.4.8)   I also have a iMac G5 1.8 Ghz, and a G4 Mac mini

  • Keynote 8 (4.04) HTML export problems.

    The Navigator in my HTML exports works fine in Safari, but all of the hyperlinks are dead...whether to a next slide or a webpage. Also, any "MouseUp" click annoyingly goes to the next slide; can I disable this?
    Grateful for any help.

    Welcome to the forum.
    I first want to commend you on a well-written, and detailed post. Wish that others would take a page from your book.
    Now, the first thing that I notice is the lack of free space on your system (C:\) drive. If your Virtual Memory is dynamically managed (the default), you are likely to be running out of space for it. At least you have 2 physical HDD's, which I feel is the absolute minimum for video editing. I would look into cleaning out some "stuff" on your C:\, to get more working room there. The general feeling is that 30GB of defragmented free space is the min., but I lean towards ~ 50GB, with a statically managed Page File. With 4GB of physical RAM, I would look to a Page File of about 2 - 2.5x the RAM, or 6 - 10 GB. The static management will do two things: take the Page File management overhead off of the OS and also will locate the Page File in the same area of the HDD at boot up. You might want to experiment with placing it on your D:\, as separating it out from the C:\ can result in performance gains on many systems. This needs to be tested, however. I have my Page File on an otherwise pretty empty D:\, but have many more physical HDD's for media, for Projects, for Exported files, etc. My Projects and their Scratch Disks are separately located too, so the entire workload is spread over a half-dozen HDD's.
    Now, I have two articles, that might be useful. The first is to set up a system for video editing, and is HERE. The second is for finding clues, when a program, or system crashes. It is located HERE. There are also several good articles in the FAQ sub-forum, on optimizing both one's system and the PrE program. I highly recommend those.
    Hope that something there is helpful, and good luck,
    Hunt

Maybe you are looking for

  • Problem creating items in a folder owned by another user

    Hi Iam getting an exception when i try to create a folder owned (or shall i say) created by another user.Let me explain what iam doing : 1. I have created a folder "INPRISE" under "/home".I have created an ACL "MyAcl" having group INPRISEGROUP as the

  • How to stretch background image, How to change show detail item header

    Hello all I have a few questions I would like to pose humbly to your collective wisdom, FYI I use Jdeveloper 11.1.3 and ADF Fusion First, how do I stretch the background Image? I have a background image in a show detail item but it is very small. 400

  • Can we pass the session values to with  ExecuteParms

    hi jdev experts, Using jdev 11.1.1.5.0-adfbc normally what we do in execute with params. manullay write query something like ah: select * from employees where empolyeeid= :eid here eid is bindvariable. drag and drop in the type of  execute with param

  • 3gs won't focus in low light conditions

    Unless I am in 100% daylight my camera won't focus where I tap. In fact only macro shots will focus. Sometimes I see the camera focus when switching between video and camera mode but only briefly and then it goes back to macro mode. On occasion resta

  • Have old shuffle..can't find my itunes library!

    Have 2 issues. One, I have an old shuffle that I'd rather not change the content, just recharge it..and so it does..but..my music library never showed up and I am sure that I have downloaded itunes on this computer..and that my library showed up on i