Show files in browser with JSF

Hi,
I'm trying to show several kinds of files in browser, but I still haven't been successful in it, it only show the binarys in browser. This my portion of code where I'm working it. In the example I'm trying too show a pdf's file but it could be, jpg, doc, xls, gif as well
     public void ver(ActionEvent e){
           // Prepare.
        FacesContext facesContext = FacesContext.getCurrentInstance();
        ExternalContext externalContext = facesContext.getExternalContext();
        HttpServletResponse response = (HttpServletResponse) externalContext.getResponse();
        String fileName="D:\\documentacion\\tecnica\\hacia una arquitectura.pdf";
        File file = new File(fileName);
        BufferedInputStream input = null;
        BufferedOutputStream output = null;
        try {
            // Open file.
            input = new BufferedInputStream(new FileInputStream(file),10240);
            // Init servlet response.
            response.reset();
          //  response.setHeader("Content-Type", "application/pdf");
            response.setContentType("application/pdf");
            response.setHeader("Content-Length", String.valueOf(file.length()));           
            response.setHeader("Content-Disposition", "inline; filename=\"" + file.getName()+ "\"");
            output = new BufferedOutputStream(response.getOutputStream(), 10240);
            // Write file contents to response.
            byte[] buffer = new byte[1024];
            int length;
            while ((length = input.read(buffer)) > 0) {
                output.write(buffer, 0, length);
            // Finalize task.
            output.flush();
        }catch(Exception ex){
             ex.printStackTrace();
        } finally {
            // Gently close streams.
            close(output);
            close(input);
        facesContext.responseComplete();
}

Very frustrating, but I found the fix (on another site - can't believe with 360 views, no one here knew). In Firefox, PDFs are automatically set to open with the faulty Adobe plug-in. To change it to open with Adobe Reader, check out the instructions here:
https://support.mozilla.org/en-US/kb/pdf-files-are-blank-and-cant-be-downloaded-mac#os=mac &browser=fx16
Super easy!

Similar Messages

  • Viewing PDF files in-browser with Firefox (17.0 as of this writing) on a Mac

    Hello there,
    since I don't remember when there has been a problem with the Adobe Reader NPAPI plug-in and Firefox. Previously, with earlier versions of Firefox and with Adobe Reader 10.x the problem was that the plug-in wasn't working properly and one got a blank page without any explanation. This led to Firefox black-listing the Adobe Reader NPAPI plug-in and having it disabled by default, if I remember correctly. Now it seems we've got the situation reversed, as if Adobe has black-listed Firefox as a browser, because when I try viewing a PDF file in-browser with the most up-to-date versions (17 and 11 for Firefox and Reader respectively), I'm getting the following error:
    Adobe Reader cannot show documents in this browser.
    We are sorry, but Adobe Reader is unable to show documents in this browser configuration.
    Please use your browser to download this file and open it in Adobe Reader or Adobe Acrobat.
    To avoid this message in the future, many browsers provide a way to turn off certain add-ons, and some are able to show this document natively.
    Please contact your browser vendor for more details.
    All's well that ends well, but unfortunately we haven't seen any solution so far. With Safari 6.x the plug-in is working fine. With Firefox it isn't. Let's see what can be done: in its last sentence the error message recommends that I contact my browser vendor for more details. The wording of the first two sentences however suggests otherwise: "Adobe Reader cannot show documents in this browser. Adobe reader is unable to show documents in this browser configuration." Thus, my question is
    What is it in this browser and/or browser configuration that doesn't suit the Adobe Reader plug-in? Is it only this newest Firefox version (17) that isn't supported or is it the Firefox browser and why? Should I be able to spoof Firefox' identity and make it seem like Safari to the plug-in, what's going to happen?

    Very frustrating, but I found the fix (on another site - can't believe with 360 views, no one here knew). In Firefox, PDFs are automatically set to open with the faulty Adobe plug-in. To change it to open with Adobe Reader, check out the instructions here:
    https://support.mozilla.org/en-US/kb/pdf-files-are-blank-and-cant-be-downloaded-mac#os=mac &browser=fx16
    Super easy!

  • Displaying *.pdf file on browser with servlet

    hi all
    this RAMESH,struggling to display a pdf file on browser from a remote mechine
    earlier i tried with servlet
    response.setContentenType("application/pdf")
    out.println();
    by this i am getting only some data as below
    endobj
    4 0 obj
    <<
    /ProcSet [ /PDF /Text /ImageB ]
    /Font << /Fo0 21 0 R /Fo12 24 0 R /Fo13 27 0 R /Fo16 30 0 R /Fo18 33 0 R /Fo19 36 0 R >>
    >>
    endobj
    For this purpose i have gone thru www.lowagie.com
    and gone thru all examples but i am not getting how to display on browser or at least awt frame
    please requesting all for suggest me some way
    tanks all
    -Ramesh

    are you trying to
    a) create a PDF dynamically
    b) send an existing PDF

  • How to open .ogg files while browsing with a player not firefox

    when selecting an .ogg link firefox opens the file in the current browser window. how can i associate this file type with a player of my choice instead. i have made this association in windows but no luck with firefox.
    txs

    Which application opens the file if you double-click such a file in Windows Explorer?
    If the default program is Word then Firefox should offer that application as the default.
    In the case of an attachment then it may not be likely that the file is send with the correct MIME type for a doc or docx file, but possibly a generic type like "application/octet-stream" that will make Firefox want to save the file.
    *https://support.mozilla.org/kb/change-firefox-behavior-when-open-file

  • Problem trying to send file to browser in JSF

    Hi I've tried two different techniques for sending a file to a browser(making the user download a file). I've tried an example from myfaces wikipage
    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    int read = 0;
    byte[] bytes = new byte[1024];
    String fileName = "test.txt";
    response.setContentType("text/plain");
    response.setHeader("Content-Disposition", "attachment;filename=\"" + fileName + "\"");
    OutputStream os = null;
    StringBuffer stringBuffer1 = new StringBuffer("Java Forums rock");
    ByteArrayInputStream bis1;
    try {
        bis1 = new ByteArrayInputStream(stringBuffer1.toString().getBytes("UTF-8"));
        os = response.getOutputStream();
         while ((read = bis1.read(bytes)) != -1) {
            os.write(bytes, 0, read);
        os.flush();
        os.close();
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }FacesContext.getCurrentInstance().responseComplete();
    I have also tried using a component named fileDownload from PrimeFaces. Both give the same result:
    I get a response from the server, the response contains text that should be in the file. The header is a follows:
    X-Powered-By    Servlet/3.0, JSF/2.0
    Server  GlassFish v3
    Content-Disposition attachment;filename="test.txt"
    Content-Type    text/plain
    Transfer-Encoding   chunked
    Date    Thu, 20 May 2010 06:30:20 GMTTo me this looks correct but for some reason I don't get to download the file, I just get this response in firebug.
    Does anyone have any idea?, could it be a serversetting problem? I using glassfish 3
    Thanks / Stefan

    False alarm, it didn't really work, I think it was just a glitsh in JSF that made it work. I think the problem lies in JSF and facelets. I use a facelet and a template.
    Template
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:ui="http://java.sun.com/jsf/facelets">
    <h:head>
         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
         <title><ui:insert name="windowTitle">Default title</ui:insert></title>
         <link rel="stylesheet" type="text/css"
              href="/admin/resources/css/mainGUI.css" />
              <noscript lang="NO">Beklager, dette nettstedet krever at Javascript er skrudd på / tilgjengelig.</noscript>
              <noscript lang="EN">We're sorry, this site need Javascript to be enabled.</noscript>
    </h:head>
    <h:body>
         <div id="fwCenterMiddle" class="fwCenterMiddle"><ui:insert
              name="content">Default content</ui:insert></div>
    </h:body>
    </html>Facelet
    <f:view xmlns="http://www.w3.org/1999/xhtml"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:ui="http://java.sun.com/jsf/facelets"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:c="http://java.sun.com/jsp/jstl/core" contentType="text/html"
         xmlns:em="http://java.sun.com/jsf/composite/emcomp/"
         xmlns:fn="http://java.sun.com/jsp/jstl/functions">
         <ui:composition template="/templates/masterLayout.xhtml">
              <ui:define name="content">
                   <h1><h:outputText value="Export">
                   </h:outputText></h1>
                   <h:outputText value="#{ChooseExportController.selectEvent}"/>
                                  <h:outputText value="#{ChooseExportController.selectRole}"/>
                   <h:form id="form" >
                        <p:panel header="Velg Election event" style="margin-bottom:10px;" rendered="#{ChooseExportController.selectEvent}">
                             <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                                  onchange="this.form.submit();"
                                  valueChangeListener="#{ChooseExportController.eventListener}">
                                  <f:selectItem itemLabel="" itemValue="0"/>
                                  <f:selectItems
                                       value="#{ChooseExportController.electionEventList}" var="n"
                                       itemLabel="#{n.name}" itemValue="#{n.pk}" />
                             </h:selectOneMenu>
                        </p:panel>
                         <p:messages errorClass="errors" layout="table" showDetail="true"
                             globalOnly="true" />
                        <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                             var="operatorRole" border="1" selectionMode="single"
                             selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                             <p:column sortBy="#{operatorRole.role.name}">
                                  <f:facet name="header">
                                       <h:outputText value="Name" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.role.name}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥desnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥deskontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="ValgnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection}">
                                  <f:facet name="header">
                                       <h:outputText value="Valgkontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection}" />
                             </p:column>
                        </p:dataTable>
                         <br />
                         <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                        <br />
                        <br />
                        <br />
                   </h:form>
              </ui:define>
         </ui:composition>
    </f:view>But if I rewrite the facelet like this, the download works, and it works with the mimetype text/plain
    <html   xmlns="http://www.w3.org/1999/xhtml"
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:f="http://java.sun.com/jsf/core"
         xmlns:p="http://primefaces.prime.com.tr/ui"
         xmlns:ui="http://java.sun.com/jsf/facelets">
    <body>
    <f:view>
                   <h1><h:outputText value="Export">
                   </h:outputText></h1>
                        <h:outputText value="#{ChooseExportController.selectEvent}"/>
                                  <h:outputText value="#{ChooseExportController.selectRole}"/>
                   <h:form id="form" >
                   <h:outputText value="Velg Election event: "/>
                   <br/>
                   <h:selectOneMenu value="#{ChooseExportController.eventPk}"
                        onchange="this.form.submit();"
                        valueChangeListener="#{ChooseExportController.eventListener}">
                        <f:selectItem itemLabel="" itemValue="0"/>
                        <f:selectItems
                             value="#{ChooseExportController.electionEventList}" var="n"
                             itemLabel="#{n.name}" itemValue="#{n.pk}" />
                   </h:selectOneMenu>
                        <p:dataTable id="datatable" value="#{ChooseExportController.operatorRoleList}" rendered="#{ChooseExportController.selectRole}"
                             var="operatorRole" border="1" selectionMode="single"
                             selection="#{ChooseExportController.operatorRole}" paginator="true" rows="10">
                             <p:column sortBy="#{operatorRole.role.name}">
                                  <f:facet name="header">
                                       <h:outputText value="Name" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.role.name}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea.areaLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥desnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea.areaLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvArea}">
                                  <f:facet name="header">
                                       <h:outputText value="OmrÃ¥deskontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvArea}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection.electionLevelString}">
                                  <f:facet name="header">
                                       <h:outputText value="ValgnivÃ¥" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection.electionLevelString}" />
                             </p:column>
                             <p:column sortBy="#{operatorRole.mvElection}">
                                  <f:facet name="header">
                                       <h:outputText value="Valgkontekst" />
                                  </f:facet>
                                  <h:outputText value="#{operatorRole.mvElection}" />
                             </p:column>
                        </p:dataTable>
                         <br />
                         <p:commandButton value="Velg rolle" id="selectRole" action="#{ChooseExportController.download}"/>
                        <br />
                        <br />
                        <br />
                   </h:form>
    </f:view>
    </body>
    </html>

  • When I try to display .pdf file in browser (with proprietry extension .dnax) I get the error message "A plugin is needed to display this content".

    I am trying to display a .pdf file within Firefox on a Vista PC. I have changed the extension from .pdf to .dnax to differentiate this .pdf file from others. I get an error message as above.
    The file is displayed using Firefox on another PC with a Linux OS without problem.
    Any advice out there?

    Firefox typically judges the nature of a document or download based on the content-type header send by the web server. Usually a server has a catalog associating file extensions with content types. When you choose a new file extension, the server may send the generic "it's some kind of binary file" header ("application/octet-stream") which Firefox will not associate with a particular program.
    Now, when you open a file from the local system, there is no web server, so Firefox may look to the file extension to ascertain the content type. Obviously that is not working in your case. What happens when you want to open the file from My Computer or Windows Explorer? Does Windows have an application assigned to it? If you can associate it with Adobe Reader in Windows, Firefox may be able to pick that up from the Windows registry.

  • Refinement Panel show "file name" values with question mark instead of spaces

    Hi,
    I customized Refinement Panel to refine by file name. In some cases the value (file name) is shown with question mark instead of space. It looks like gibberish and the refine by that value doesn't bring the result.
    Any ideas how to solve?
    keren tsur

    Hi Keren,
    Please try to reset index in Central Administration > Application Management > Manage service applications > click the Search service application > Crawling > Index Reset > check the box Deactivate search
    alerts during reset > Reset Now > Ok.
    Then restart a full crawl in the Central Administration > Application Management > Manage service applications > click the Search service application > Crawling > Content Sources.
    In addition, please capture a screenshot of the issue.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Problem in sending file to browser through JSF

    Hi,
    I have developed a web page in JSF through which user can download a file.
    I write file to the OutputStream of response, it works fine.
    But an exception is printed on console:
    java.lang.IllegalStateException: Cannot forward after response has been committed
    Probably, this is because in backing bean class I have acquired output stream of session and I have written file data to it.
    Is there any resolution to the above problem?
    Thanks.

    Add FacesContext#responseComplete() to the end of the code to let JSF lifecycle know that the response is already completed manually, otherwise JSF will render the response again.
    Also see: http://balusc.blogspot.com/2006/05/pdf-handling.html
    I'd rather to use a servlet for streaming files and use a plain GET link for that however.
    Also see: http://balusc.blogspot.com/2007/07/fileservlet.html

  • Want to integrate JavaFX with JSF

    Hi all,
    I am developing a web application in JSF. I want to integrate it with JavaFX. Is it possible to do so? If possible then how can I achieve it?
    Thanks in advance,
    JSF GEEKS

    Actually I found the same code for integrating JavaFX with JSF, which you have linked, but I show it afterwards. Anyways, thanks for your kind support.
    The other interesting thing I found is, interaction between JavaFX and JSF.
    You can interact between JavaFX and JSF like the following way.
    You just give the id in the script in which you have defined the parameters of applet to run in browser with JSF or any language like this;
    <ui:script id="js" type="text/javascript">
        javafx(
                  archive: "Your_JAR_File.jar",
                  draggable: true,
                  width: 550,
                  height: 370,
                  code: "package_name.Main",
                  name: "Name_of_Application/package_name",
    id: "myJavaFX"
        </ui:script>Then uin the header part of your page (acually in <head>), you write another script something like below;
    <script language="javascript" type="text/javascript">
    function changeColor() {
    myJavaFX.script.line1=myJavaFX.Packages.javafx.scene.paint.Color.WHITE;
    myJavaFX.script.line2=myJavaFX.Packages.javafx.scene.paint.Color.LIGHTBLUE;
    </script>Here line1+ & line2 are the variables of JavaFX script/program. So here, by this example I am changing the value of variables of JavaFX script to change the colors. myJavaFX {color:#333333} {color}is the id of the applet which I have given in the first script to generate and run the applet in browser.
    so here I give you what I understood. Hope it helps.
    Thanks,
    JSF GEEKS
    Edited by: jsfgeeks on Sep 17, 2009 10:59 AM
    Edited by: jsfgeeks on Sep 17, 2009 11:02 AM
    Edited by: jsfgeeks on Sep 17, 2009 11:03 AM
    Edited by: jsfgeeks on Sep 17, 2009 11:04 AM

  • Right click to get to Show File in iphoto

    I was at the Apple Store Sat and was shown that if I right click a photo a list will appear including the show file command. With this command I get to the actual photo.
    I have just reinstalled ilife 09 and attempted to get the list when I right clicked. Nothing.
    Is my mouse bad?
    How should I find out how to get the list to appear when I right click?

    It was a good thought, but when I looked at the keyboard and mouse and the other topics, I did not see anything that would have to do with right click. I did learn a lot about the mouse, scrolling and setting the five buttons, but nothing to do with right clicks. Speed of the cursor. scrolling and double click. Where should the right click enabled reside. Thanks and thank you for your patience. I have had a Mac for years but have never needed to use some of these features. Herb

  • I'm trying to share to Media Browser a 20 minute still slide show with music and text. I have tried several times to save at 1080 HD, but just before it's finished, a message box pops up saying "File already open with write permission."  What's this mean?

    I'm trying to finalize/share to Media Browser a 20 minute still slide show with music and text. I'd like to finalize it 1080 hd and have tried several times, but just before it's finished, a message box pops up saying it can't be done because "File already open with with write permission."  What does this mean?  All files are closed; this iMovie project is the only thing open.  Does it mean one of the song files from iTunes? And should I just settle for saving it as a "large" file, which is what I'm trying right now?
    Thanks,
    Jamie

    Hi
    Error -49 opWrErr  File already open with write permission
    Trash the preference files while application is NOT Running.
    from Karsten Schlüter
    Some users notice on exporting larger projects from within iMovie that this operation is aborted with an 'error -49'
    This issue occours only on MacOs machines using 10.7x
    try switching-off the Local Mobile Backup
    in Terminal copy/paste
    sudo tmutil disablelocal
    Re-launch Mac
    See also this post
    https://discussions.apple.com/thread/4434104?tstart=0
    Yours Bengt W

  • Cannot open a JSf file in jdev with WYSWYG

    HI,
    I startup Jdeveloper 11g studio edition version 11.1.2.3.0 with all features option selected. but I cannot open a *.Jspx file in jdev with WYSWYG showing.
    anyone can give help?

    Hi,experts,
    In jdev 11.1.2.3,
    I come up with this problem again:
    In order to improve performance for jdev, i open the Manage Features for Studio Developer(ALL Features) Role, and deselect some features:
    -Database Modeling
    -EJB Modeling
    -Team Productivity Center
    -Version Control
    -Web Services
    -ADF Mobile Browser
    Then after restart jdev,
    Jsf pages cannot see in WYSIWYG mode in Designer viewer.
    only see a component-structured tree but in text style in jdev in designer view
    Even I reinstall jdev, the problem remains.
    Can anyone give any help?
    Thanks.
    Edited by: BAO.SZ on 2013-5-11 上午9:40

  • Problem when showing MS power point files on browser.

    Hi
         I wrote the code in JSP to show MS power point files on browser. And
    I logged session for security as follow.
    <%@ page language = "java" import="javax.servlet.*, java.util.*, java.io.*" %>
    <%
         String filename = request.getParameter("fileName");
         String path = request.getParameter("path");
         session = request.getSession(true);
         if(session.isNew()) {
              response.sendRedirect("login.jsp");
         }else {
              response.setContentType ("application/vnd.ms-powerpoint");
              int iRead;
              FileInputStream stream = null;
              try {
                   File f = new File(path+filename);
                   stream = new FileInputStream(f);
                   while ((iRead = stream.read()) != -1){
                        out.write(iRead);
                   out.flush();
              }finally {
                   if (stream != null) { stream.close(); }     
    %>
         I got problem with showing in Windows XP with MS Office XP only.
    Could anyone please give me suggestion.
    Thank you.
    Atthapon

    Hi!
    I don't have Office XP. But why you don't try to use application/octet-stream instead of vnd.ms-powerpoint? It should work with it.

  • The downloads window doesn't show files that I download them.Please, Note: Iv'e already installed IDM 6.04 Build 2 & IE 8 is still my default browser.

    The downloads window doesn't show files that I download them.Please, Note: I've already installed IDM 6.04 Build 2 & IE 8 is still my default browser.

    neuwerld wrote:
    Ohh thanks guys!
    It worked as a charm, and thanks Brisbin33 for the autostart.sh tip.
    So the thing that caused my whole system not to work as it should was that I forgot to put a "&" after conky?
    haha that´s kinda anoying I have been sitting and looking through like a milllion files looking for the answer
    But again, really thanks!
    /Neuwerld
    that little "&" sends the conky process to the background freeing up the current process (your autostart.sh script) to finish doing what it's doing so you can move on to running openbox itself.  with this in mind, it should be obvious why keeping conky in the foreground would cause problems.
    also, replacing it with (sleep 1 && conky) & means... wait a second, when that's done successfully (&&) run conky, and put all of that () to the background.  that way openbox comes up immediatly and only a second later you've got your panel and monitor.
    all this after .xinitrc and before openbox

  • I downloaded some videos to Premier Elements 13 from external hard drive but now the external hard drive is damaged. I tried to open the videos on the organizer which it shows the video but with a yellow ? and says missing file. Is there anyway I can open

    I downloaded some videos to Premier Elements 13 from an external hard drive but now the external hard drive is damaged. While setting up my new MAC the external hard drive was dropped and I have been told by an outside source they could not retrieve the files.  It had 4 years of photos and videos on it. I remembered that I had downloaded some of the videos from the external hard drive (before it was broke) to Adobe Organizer 13 when I installed the Adobe 13 on my MACOS X 10.9.5.  I tried to open the videos on the organizer which it shows the video but with a yellow ? and says missing file. Is there anyway I can open these videos?
    Any input is greatly appreciated!! I am sick over losing the videos and had a little hope on Adobe Organizer until I was unable to open them.  I am thinking it is due to my external hard drive not being plugged in. I thought when I transferred from the external hard drive to Adobe 13 that it would be there without the external hard drive needing to be attached but maybe I did something wrong.
    Thanks again for any help!!!!

    jnrmendonca
    It had 4 years of photos and videos on it.
    To what did your camera record those photos and videos - camera's internal memory, inserted memory card, other?
    Any remote chance that the latter may still exist for you to use to download the camera files to your new external hard drive?
    ATR

Maybe you are looking for

  • Windows 7 + 10.6.3.25 = No Home Sharing

    Hello, I have a problem at version of iTunes 10.6.3.25 after setting up Home Sharing with my Apple ID, it takes you to a screen stating that the family is sharing for personal use, etc.. On this same screen, when I click finished, menu "Shared"> Home

  • What are these weird blue dashes?

    What are these weird blue dashes that got inserted into my Pages document since I closed it? They appear with each new paragraph start or break and I can't see how to get rid of them! ( I have OS 10.6.8 and Pages 4.1)

  • Configuring Internet Sharing for other devices

    I have set up Internet Sharing on a MacBook Pro. I am sharing the laptop Wifi connection over ethernet. If I connect a Mac to the laptop with ethernet, the sharing works fine--the Mac gets a DHCP address and is on the internet. However, what I am wan

  • How to resrict purchaser accept more than one RFx response ?

    hi all   we use SRM 7.0 with standalone scenario.   when the purchaser carry out Response comparison , system permit purchaser accept more than one bidder for one RFx item . the result is we want material A 10 piece, but supplier X and supplier Y get

  • No "Shrink" option for photos in the N95-8BG !!!

    I was shocked when I wanted to shrink one of my photos to send it via MMS, and found out that it is not in the options!! This option was in N73 & N95, but not in the N95-8GB. I think it is an essential feature when sending photos via MMS. I already e