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

Similar Messages

  • 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();
    %>

  • I cannot open pdf file while browsing on my galaxy tab 10.1, I must download fisrt, why?

    I am wanting to view pdf files while I am browsing on my galaxy tab 10.1. The browser will not open the pdf. I always get the download screen asking what to name the file and where to put it.

    Adobe does not have a pdf plugin for Android. All pdf files will need to be saved and opened with a pdf reader external to the browser.

  • How to open a file in Bridge with Photoshop CC as default?

    With Bridge open I want to open a file in Photoshop CC but when I click open it opens in Window Live Photo Gallery. When I right click to try "open with" I cant find CC, and it won't give me the option to choose it as the default. What am I doing wrong?

    Found it out myself.

  • How to open log file while program is running?

    Hi,
    I am using log4j to generate a log file. The application connects to a remote server and does some updates on a database. Is it possible to view the log file while the program is running? When I click on the log file to open it, I get a message "the document is in use by another application and cannot be accessed".
    Looking for ideas to get around this problem.
    Thanks and Regards,
    Harsha Hegde

    tail.exe -f
    Tail is a Unix program but if you search google you can find a port for Windows. It will show the contents of the file in a cmd prompt and will update as new lines are being added to the file so you can see the most up-to-date version as log4j is writing to it.

  • How to Open Doc. and Docx. attachments with Word 2013 from Firefox

    I just got a new laptop and installed Office 2013. However, when I try to open an attachment from my email or a document from the web, the box comes up that says "What should Firefox do with this file?" I can save the file fine, but when I click "Browse" next to "Open with", Microsoft Word is nowhere to be found. It would be nice to get the document to automatically open in Word. I am not sure if this is the correct place to ask this question, but any help would be appreciated.

    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

  • How do I stop explorer from opening pop ups while browsing with firefox as default.

    I just bought a new hp laptop with windows 7. The first thing I did was install firefox 3.6.12 set as default, then thunderbird. When I visit a website I get pop ups that open in windows explorer.
    I installed pop-up stopper free edition, but it didn't help.
    I had firefox on my old PC running windows vista and pop-up stopper, and never had this problem.
    I tried disabling IE by setting up a false proxy server, which I think helped, but then I couldn't use windows media center for internet tv, etc.
    This is pretty frustrating, since my old setup really worked great.

    I tried to remedy it by changing the default settings, but there are three settings that are ticked and that you can't disassociate with IE - two MHTML and one .url for internet shortcuts. Presuming the last is the reason the popups open in IE?

  • How to open V1 files in V2 with no project file

    I have an swf output file from a tutorial created in
    Captivate version 1. I have no project file, so when I opened V2,
    and tried to import the swf as an animation, I receive an error
    that it is looking for something called 'root'. I have a link from
    my Robohelp project file to these captivate 1 tutorials and nothing
    happens when you click on the looks, the tutorials are not
    launching. So, I thought I would try to republish these tutorials
    in v2, to see if that was the problem.
    Any ideas?

    Hi Teresa
    First off, a major change occurred between Captivate 1 and
    Captivate 2. I've attempted to describe how to work with these and
    RoboHelp at
    the
    link you see by clicking here.
    Secondly, don't sweat the "root" message. It's a red herring.
    Cheers... Rick

  • How to open a file, process it with different runnables and then save it

    Hi,
    I want to read an image file, then process it using different runnable classes and then save the output in a different image file.
    In which order should I put the threads? Each process has (of course) different execution time, so I need to know where to put the wait() or lock statement.
    Any idea?
    Thanks

    gmf wrote:
    Here is a diagram
    / One image analysis - image is a buffer\
    Main/                                                             \ save to one image
    \ Second image analysis - image is a buffer/Main calls the others, and all the images are buffers so there is no problem about how do they keep from stepping on each other's toes.
    Are those two separate buffers, both copied from the original image?

  • How to open TXT file with excel 2007

    With Excel 2003  if we right click the txt source file name, there will be an option to open the file Excel, but with Excel 2007, then we right  click txt fiel name , there is no option of open the file with excel, is this mean that we have to copy the txt file to excel file to manipulate the source file? Any idea how to do this?

    just find out that we can use the browser to find the excel and open the file, next time the excel option will be there.

  • After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading.

    After upgrading to ios6 my iphone will not open .xls files in emails with the default viewer. Is there a fix for this? The same emailed .xls files still open on my ipad using ios5 while viewing email like they did on my iphone prior to upgrading. I have no special software like numbers or anything else installed on either device. Just using the default viewer provided by apple for viewing email.

    The attachment is an .xls excel 97-2003 spreadsheet. I viewed the file in the email and did not edit it with any software. I can forward the file to anyone that is may want to check it out to see if they can help me. I was wondering if there was some way of forcing another ios6 install on my phone and maybe that would solve it.
    Is there anyone out there that is viewing .xls files in email using ios6 w/o any other software installed like numbers or any other add ons? I am not upgrading my ipad from ios5 to ios6 so I can still continue to view the emails on my ipad. Is there an email viewer .xls plug-in that will be availablle in the next ios6 update?

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

  • How to open a file with the extension x3f (sigma)

    how to open a file with the extension x3f (sigma)?

    RAW data from the following Sigma cameras is currently supported:
    DP1
    DP1s
    DP2
    SD9
    SD10
    SD14
    If your camera is among these, then simply import the photo as usual. https://helpx.adobe.com/lightroom/help/importing-photos-lightroom-basic-workflow.html

  • Iphone contacts - I have a contacts back up file with me in .VCF mode, how could I get those contacts sync with my new iphone (as I lost my iphone a week back), or esle at least how to open .VCF file.

    Hi I lost my iphone 4 a week back, but I have the contacts back up. now I bought new phone.
    so tell me how could I import all my contacts to new phone, or esle at lease how to open .VCF file in excel. or outlook

    You should be syncing your contacts with an app on your computer or cloud service (iCloud, Gmail, Yahoo, etc), and not relying on a backup.  If you haven't been doing this, start now and then restore your old backup.  You will then be able to sync the new contacts back into the phone.  However, you will lose all messages, etc newer thant the backup.

  • How to open a file with the same name?

    Hi, now I practicing making web pages where I put sample codes in one directory and I copy them to edit.
    The probrem is, I couldn't open one file while I'm opening another file with the same name.
    Is it possible to open  a file with the same name in Dreamweaver?

    That could be a very error prone practice.
    May I suggest you take advantage of DW "Snippets" feature instead.
    Simply save any blocks of code you will reuse regularly as snippets,
    and give each one a descriptive name you like.
    Then you can simply place your cursor in code view where you wish the code,
    and click insert on the selected item from the snippet panel.

Maybe you are looking for

  • Customer Master - Sales text copy to Sales Document Header

    Hello, I have properly configured the text types, access sequences, and text procedures to take text from the Customer - Sales & Distribution and copy to the Sales Document Header.  After testing this in my DEV system, everything is working appropria

  • Slideshows in iMovie '08

    I am working on my first slideshow in iMovie '08. I have done numerous shows in '06. I am trying to rearrange some of the photos, but can not figure out how. I have tried to drag and drop...no luck. I have not added transitions yet. I was also lookin

  • Datawarehouse job run forever and powershell doesn't allow to enable

    It seems that my datawarehouse jobs was running forever without any report producing. I check the jobs enabled and it tell "no" every job except MPSyncJob. Every job status is running as "running" or "not started". I tried to enable the datawarehouse

  • My Ipad 2 has suddenly started losing wifi connection.

    My ipad 2 (3 months old) has suddenly developed a problem that  it loses wifi connection in my house. Laptop works fine from same location. Happened since installing latest apple software  upgrade 1.51. Network reset and factory restore not helped. W

  • Investigate rollback issues

    Hi, How do I get more info on "Perform rollback" issues? From SM21, I see an ID had "Perform rollback" issue. Double clicking on this entry will display info such as : "system log message R6 8 : An error has caused an SAP rollback. All database updat