No Close button when PDF viewed in browser using Slideshow view

I have a powerpoint presentation that has hyperlinks to pdf documents on the web. When I save this powerpoint presentation to html format on my web server and go to that presentation, there is a View Slideshow button in the bottom right corner. If I click the View Slideshow button, the browser window goes full screen with no toolbars (just as it would if ran in powerpoint). The catch is that if I click on a hyperlink to a pdf document, the adobe reader window also opens fullscreen with no browser window around it. Therefore, you cannot go back to the powerpoint and you cannot close the pdf document.
Does anyone know of a way to prevent the pdf from opening in this slideshow window.

First, Osgood is correct about the flash, go here for a tutorial.
http://www.projectseven.com/support/answers.asp?id=127
Second, try adding cellspacing="0" cellpadding="0" to your tables, that should get you there.
Third, trying to set a height in a table just gets discarded with content, (unless you create a CSS rule otherwise).  Your table height is going to be a slave to the amount of content.
What you might want to try is to move the content about signing up for the Newsletter and move it into a cell next to your main content, that should even things out a bit.
Give those a try and see where you are.
Gary

Similar Messages

  • I have Java set up as a plug in but cann't get into yahoo games. Where is the firefox button when I have the browser open? Only button I see gives me close, resize,

    I have java installed and properly working as a plug in. Why can I not get into Yahoo games and play Card Games? Where is the firefox button when I have the browser open? Only button that looks like anything for firefox allows me to restore, move, size, minimize, maximize, and close. That button is top left hand corner location.

    I recently purchased a second hand new macbook air, although it was second hand to me the previous owner had never actually turned it on.
    Something doesn't make sense here, though I'm not saying the previous owner is lying....
    Time to send your serial # to iTS and let them see what's happening here.
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • I want to be alerted when pdf is currently in use by another user?

    I want to be alerted when pdf is currently in use by another user?

    Currently in acrobat 10 it allows you to open a pdf that is in use. I would like to know how turn the alert on.

  • Minimize, maximize and close button when there is no border

    Hi all. I have created a login page that has no border around it. Is it possible to get the minimize, maximize and close buttons in the top right hand corner but inside the actual form?
    Thanks in advance.

    Hello,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    If you are working with ASP.NET Web Application, I suggest that you can consult your issue on ASP.NET forum:
    http://forums.asp.net/
     for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Opening a Document (.doc, .xls, .pdf) in the browser using an action

    Hello
    I´m using JavaScript to open a document in the browser using the property Onclick from Command Button: onclick="#{backing_archivos.rutaArchivo}"
    and in the backing_archivos.rutaArchivo I have the String window.open("file://c://tmp/document.pdf", "title page", "top=100, left=100")
    but the browser doesn't open anything.
    What can I do?
    Thank.

    You can do an external file by using a stream and and the response object. I have this in a backing bean, and it gets called with a command button.
    public String runQCReport_action()
    BindingContainer bindings = getBindings();
    OperationBinding operationBinding = bindings.getOperationBinding("PromotionRequestQCReport");
    Object result = operationBinding.execute();
    FileInputStream bis = null;
    ServletOutputStream bos = null;
    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    response.setContentType("application/pdf");
    response.setHeader("Content-disposition","inline=filename=file.pdf");
    try {
    File fileName = new File("applications/reports/output/PromotionRequestQCReport.pdf");
    bis = new FileInputStream(fileName.getAbsolutePath());
    bos = response.getOutputStream();
    byte[] buff = new byte[2048];
    int bytesRead;
    while (-1 !=(bytesRead = bis.read(buff,0,buff.length)))
    bos.write(buff,0,bytesRead);
    //response.getOutputStream().write(yourdata[]);
    response.getOutputStream().flush();
    response.getOutputStream().close();
    context.responseComplete();
    catch (IOException e) {
    e.printStackTrace();
    return null;
    }

  • Finder - Browse in List View, Finder - Browse in List View

    In Lion there are now a couple of options are available when you right-click on a Finder window and click on Show View Options:
    Always open in list view
    Browse in list view
    Whereas in Snow Leopard there is only one option:
    Always open in list view
    So my question is, what's the difference between these two new options in Lion? What exactly does "Browse in list view" mean?

    The help file is a bit confusing since it says :
    To set the current window to always open in list view, select “Always open in list view.” If the window has subfolders, you can also set them to open in list view.
    That part where it says that if the window has subfolders, you can also set them to open in List view.  That is what Browse means. So, if you have that checked, when you double-click on a folder in that window, it will open the subfolder in the same view unless that folder has an "always open in ____ View" setting.

  • Unable to open PDF file in browser using Reader 9 with IE8

    I just updated to IE8 and when trying to open a PDF file on the browser, I received a message stating to use Adobe Reader 8 or 9.  I downloaded AR9 and still receive the same message and cannot open PDF files in browser window.  It defaults to my Adobe Acrobat 6.0 which will not open the file.  I have Windows XP.  I do not have a problem opening a PDF file in Yahoo mail with AR9.  I have tried many different ideas on the web to no avail.  Appreciate any help to be able to default to open PDF files in the browser using AR9 which is apparently required by IE8.

    Fixed problem by taking to a computer store to find that my hard drive storage was maxed out.  I had the hard drive repaced with a larger amount of storage.   Problem resulted from inadequate amount of storage space which prevented me from downloading and installing Adobe Reader 9.
    Thanks to al that responded.  

  • Disable "Close" button of command prompt through LabVIEW using Win32 APIs

    Hello all,
    I am trying to disable the close button of a third party console application that I am invoking through LabVIEW. I tried using GetSystemMenu() and DeleteSystemMenu() from user32.dll, but somewhere I am doing it wrong.
    Can anyone can suggest a solution to this?
    Thanks!
    FraggerFox
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"
    Solved!
    Go to Solution.

    Do you have the handle to Window?  Off hand, I don't know how to delete it, but here is some C# code that I used to grey out the close window button in another project:
            [DllImport("user32.dll")]
            private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
            [DllImport("user32.dll")]
            private static extern bool EnableMenuItem(IntPtr hMenu, uint uIDEnableItem,
               uint uEnable);
            private const Int32 SC_CLOSE = 0xF060;
            private const UInt32 MF_BYCOMMAND    =0x00000000;
            private const UInt32 MF_ENABLED = 0x00000000;
            private const UInt32 MF_GRAYED = 0x00000001;
            private const UInt32 MF_DISABLED = 0x00000002;
            private void EnableClose(bool enable)
                IntPtr pSysMenu = GetSystemMenu(Handle, false);
                if (pSysMenu != null)
                    EnableMenuItem(pSysMenu, SC_CLOSE, MF_BYCOMMAND | (enable ? MF_ENABLED : MF_DISABLED));
    This was fairly easy to convert over once I had the handle (this is from a library I picked up somewhere).
    Hope this helps.
    A
    Attachments:
    WINUTIL.LLB ‏609 KB
    DisableCloseButton.vi ‏44 KB

  • How to display Map for viewing in browser using Java

    I am fidning a solution for displaying political maps in browser using Java technology.
    Is ther anybody with a solution.
    Waiting for your respone.
    Regards
    Mithun

    palanithendral wrote:
    Hi,
    Our application using in English, German, Franch and chinese.You have several different idioms in your application and have not accurately identified where the actual problem is. You have all of the following
    -database
    -http
    -excel
    -excel in http
    -display on the target computer
    The first step with these sorts of problem is to identify where the problem actually occurs.
    String chineseCharacter=""; // chineseCharacter like 長长牀床東东彿佛. This chinese data coming from oracle database..A good theory. Now explain how you proved that that is what is coming from the database.
    After export the data to excel show the result for 長长牀床東东彿佛.As another example. Presumably you are referring to what the browser on the target computer displays. Your theory is that that computer and that browser (together) will display the correct information if they had the correct data. How did you prove that?

  • How to view Word DOC using Word Viewer

    I am a new administrator for a SharePoint 2010 farm with 10s of GB of Microsoft Word documents, most of which are in Word 97-2003 DOC format.  I have recently configured the Word Viewing service and can of course view Word 2010 documents saved
    to the farm, but how to get the legacy archive of DOCs viewable using Word Viewing as well?
    From all that I have read, OWA only works for Office 2010 documents.  Is there any tweak available to get it to be able to view older formatted Word documents also in the browser?
    Baring this, are there batch conversion utilities available?  I have searched and found some
    here and here, but am seeking more robust solutions.
    I would be interested in learning about what other administrators have done to resolve similar problems.
    Sincerely,
    Steve

    Hi Steve,
    I understand that the error occurred when you open the word files.
    I recommend to delete the cache files for the corresponding web aaplication using PowerShell.
    Go to Central Administration > Application Management > View all site collections > select the web application and then check for site collection with URL /sites/Office_Viewing_Service_Cache and make sure it is there. Then open http://{webapp url}/sites/Office_Viewing_Service_Cache
    and you will see the cached
    files of this web application.
    You can also add the entry below in web.config to see if the issue still occurs:
    <compilation optimizeCompilations="true">
    More information:
    http://kancharla-sharepoint.blogspot.in/2013/08/sharepoint-word-web-app-cannot-open.html
    I also recommend to check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer” in the Search box.
    For SharePoint 2010, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Locking/Hiding  Navigation Panel Buttons When pdf Is Viewed

    Setting Document>Properties>Initial View to "Full Screen" (and password protecting) triggers a warning (& a choice) for person viewing my pdf containing layers and attachments.
    Is there a way with JavaScript to keep the Navigation Panel (& associated buttons) from being exposed when my pdf is viewed (when opened as an attachment or from a web browser)?.
    The "hideMenuItem" method only takes effect at the app open (not doc open) level, so I'd prefer not to employ in script.
    I have Pro 9 (but need pdf to run in Reader 7 +).
    Many thanks for any suggestions!
    John

    > Is there a way with JavaScript to keep the Navigation Panel
    Nope. Even if you could hide it programatically, the user would simply have to hit F4 to show the nav panel again, and there is no way to disable that functionality.

  • Pdf buttons not working when pdf loads in browser

    hi
    I have a pdf with buttons which work fine. Once pdf is put on our website and you click on it, it opens in firefox ok but none of the buttons work.
    Safari, chrome - work

    The road to hell is paved with good intentions... FF wanted to provide their users an easy-to-use, built-in PDF viewer, which is good. Problem is that developing a fully compatible PDF viewer is a very complex task that requires a lot of time and effort, so they decided (it seems) to settle for something that's "good enough". So now users are stuck with something that usually does an OK job when it comes to just displaying a simple PDF file, but as soon as you have a more complex file (for example, one with form fields) it breaks down entirely and either fails to load the file at all, or does so incorrectly, and the developers are left sorting out the mess...

  • Firefox closes when i close the first tab of the browser using latest version 10.0 release.

    I open many tabs on firefox, many times when I close the first tab, the entire window closes, and I have to reopen the browser. When I try that many times I get a message saying something like "Firefox is running Cannot open another window". When I checked the Task Manager I see firefox.exe and plugin-container.exe running. but the firefox is nowhere to be seen. Once I "End Task" these two, I can start firefox. This thing happens many times

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes

  • Acrobat X closes immediately when PDF is double clicked

    I run CS6 (English) on Windows 8 (German). If I double click a PDF Acrobat opens and immediately closes again. I can drag the PDF document on window head and the document opens fine. I can also click to a PDF that is pinned to the task bar and it opens. But if I double click a PDF document it closes immediately. I'm aware of the EULA bug and also applied the AcrobatFix. Since I'm able to open the documents and no EULA shows up when I open Acrobat it seems to be somethibgn different. It is really annoying.
    Marcus

    Partly solution:
    I saw that the PDF files where associated with Acrobat Reader which has been updated to version 11. I changed the association to Acrobat X and now I can open the files with a double click again.
    Marcus

  • How to open pdf files in browser using flex

    hi,
    my project is having a Document explorer wchich contains pdf
    files,iwant to open it in the browser.can any one tell me how to
    open pdf documents using flex programming(i tried with different
    thing like swf's but my client wants only pdf formatt).

    Another option is by calling a JSP page. This example will
    open a pdf file into a new browser without displaying the download
    "save" prompt.
    Function to call the JSP:
    private function downloadFlyer(event:Event):void {
    var jspLink:URLRequest = new
    URLRequest("jsp/downloadpdf.jsp?fileName=Fundraiser_flyer_2008.pdf");
    navigateToURL( jspLink, "_blank" );
    JSP code:
    <%@ page errorPage="error.jsp" %>
    <%@ page import="java.io.*" %>
    <%
    //Get the parameters
    String downloadFileName=request.getParameter("fileName");
    String fileName = application.getRealPath("/downloads/" +
    downloadFileName);
    File file = new File(fileName);
    if (!file.exists()) {
    throw new IOException("File does not exist.");
    // Get the size of the file
    long length = file.length();
    // You cannot create an array using a long type.
    // It needs to be an int type.
    // Before converting to an int type, check
    // to ensure that file is not larger than Integer.MAX_VALUE.
    if (length > Integer.MAX_VALUE) {
    throw new IOException("File too big.");
    response.reset();
    response.resetBuffer();
    response.setContentType( "application/pdf" );
    response.setHeader ("Content-Disposition", "filename=" +
    downloadFileName);
    //Prevent the Java error: "getOutputStream() has already
    been called for this response"
    out.clear();
    out = pageContext.pushBody();
    InputStream in = new FileInputStream(file);
    OutputStream output = response.getOutputStream();
    try {
    int curByte=-1;
    while( (curByte=in.read()) !=-1){
    output.write(curByte);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    } finally{
    output.flush();
    in.close();
    response.flushBuffer();
    %>

Maybe you are looking for

  • Thunderbolt Display Didn't Show Anything!

    I recently got Boxee. I connected to Thunderbolt Display 2nd port, but it's not working! I connected like this: Mac Mini (2011) --> Thunderbolt Display built-in port Boxee --> (HDMI to mini DisplayPort cable) --> Thunderbolt Display 2nd port The Thun

  • About 'Sort Artist' name

    Hi i am trying to find out, as some of my songs' "sort artist" is grey in color (instead of black), and if the "sort artist" content word is grey in color, it will automatically sort songs with same ARTIST name to have the same "sort artist" name. EG

  • Tax Calculation procedure

    Dear Experts, In the testing client the default tax calcualtion procedure is not available in our system for india. This may be deleted by oversight. Can you please suggest how to retireve this data Venkatesan

  • How to get XML data of IDOC

    Hello ABAP gurus I am an SAP PI consultant working on some IDOCs. I am able to see the payload (in XML format)  sent via IDOC adapter. This is being sent to our backend system (ECC 6.0). I would like to know if there is any way that I can see this ID

  • Disaster recovery in SQL 2005 - which one is better ?

    Hi All, i am in a slight confusion of implementing a DR solution for one of my banking client. They have a citrix application which depends on a sql server. they cannot have a down time more than 15 mins for that application...They want the DR databa