Setting Quicktime File Types

I keep checking the "default" Quicktime box under Quicktime "Preferences/File Types tab, to set my Quicktime File Types, but Quicktime is refusing to let me do this, insisting on checking all the file types and using itself to open everything. Particularly, I can't seem to get it to uncheck the "Video For Windows (AVI)" and "MPEG Media" choices, even though checking the "default" box unchecks them. However, when I re-open the Preferences window, they are always re-checked again! This is driving me C R A Z Y!!!
I've rebooted the computer, tried resetting my file types with my other programs, and Quicktime still insists on "taking over" and rechecking these boxes each time I reopen the Preferences/File types tab.
Can anyone help me stop Quicktime from doing this. I don't know what else to do to get Windows Media Player and my VLC Media Player back playing my video and Youtube video files! Aarrrrgggghhhh!!
Thanx,
Lida

Hi,
I feel your pain regarding Quicktime 7.4.5 not letting go of file types. I didn't want to mess with the registry or security permissions, so I downgraded to 7.2. I'm contemplating upgrading to 7.3.1, but I'll do more research. The downside to doing this is that I cannot watch iTunes videos and the security risks. Since I use iTunes for music and don't go to fringe Web sites, it doesn't hurt that much. The minimum version of Quicktime that iTunes 7.6 uses is 7.1.6, so I'll stick with 7.2 or 7.3.1 until Apple fixes this.
There are problems with 7.4.5 in Mac OS Tiger, too. I'm using 7.2 there as well.
Cheers!

Similar Messages

  • Dreamweaver setting wrong file type and creator codes

    First of all, I'm running Mac OS X 10.5.2 on an Intel-based
    Mac, with Dreamweaver CS3 9.0 build 3481.
    I have a site defined where I connect to my web server via
    FTP. On my server, I just upgraded my forum software to PHPBB 3.0,
    which created a new /forums/ directory. My plan is to use
    Dreamweaver to download that new /forums/ directory to my local
    site where I can edit the files. Inside the forums folder are
    several types of files, like ".php" files, ".htm" files, ".gif"
    files, etc.
    So, upon downloading the /forums/ folder to my local machine
    by dragging and dropping it (in Dreamweaver) from the remote site
    to the local site, I noticed that Dreamweaver insists on setting
    HFS file type and creator codes for files it recognizes, based on
    the filename extension.
    I've connected to the same server using the Finder and
    Transmit, and copied the remote /forums/ folder over to my local
    machine. Neither of those copies have files with file types and
    creator codes set, meaning they aren't actually set on the remote
    files and that this is indeed something Dreamweaver is doing on the
    fly as it downloads the files.
    I'm wondering if there's any way possible to disable this
    behavior, and just download the files like they are on the server?
    (File extension only). To make matters worse, on my Intel-based
    Mac, it's not even setting the proper codes, as you can see in the
    following image:
    http://homepage.mac.com/mdouma46/images/dreamweaver.png
    Notice for the ".php" document, it's attempting to set a file
    type of 'TEXT' and a creator code of 'DmWr' (DreamWeaver's creator
    code), but because the Dreamweaver developers didn't bother to take
    into account the byte-ordering differences between PowerPC Macs and
    Intel Macs, the codes are written in reverse: 'TEXT' becomes
    'TXET', and 'DmWr' becomes 'rWmD'. (If you're going to use
    low-level routines such as FSSetCatalogInfo() to set the file types
    and creator codes, you need to call CFSwapInt32HostToBig() on the
    OSType values before doing so, to make sure they're in Big-endian
    format).
    Anyone know where the conversion information is stored?
    Thanks in advance.....

    Creator codes are totally deprecated in snow leopard. as for a workaround you can use something like this.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on open these_items
    repeat with this_item in these_items
    tell application "Finder"
    set the_file to POSIX path of (this_item as alias)
    tell application "System Events"
    set default application of file (the_file) to ("Main HD:Applications:Preview.app" as alias)
    end tell
    end tell
    end repeat
    end open</pre>
    save it as an application and drop files onto it to set them to open with Preview.

  • How to set default file type for Open dialog

    Dear my friends,
    I am using "At selection-screen ON VALUE-REQUEST FOR filepath" to display open dialog and i want to set default file type for open dialog = *.txt.
    Thank your times !

    Hello,
    U can make use of this code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR SP_FILE.
      PERFORM SAVE_DIALOG CHANGING SP_FILE G_F_RC.
    FORM SAVE_DIALOG CHANGING PO_FILE PO_RC.
      DATA: L_VA_BOXTITLE     TYPE STRING,
            L_VA_DEFAULTFILE  TYPE STRING,
            L_VA_DEFAULTNAME  TYPE STRING,
            L_VA_DEFAULTPATH  TYPE STRING,
            L_VA_DEFAULTFULL  TYPE STRING,
            L_VA_FILTERTEXT   TYPE STRING,
            L_VA_CODE         TYPE I.
      CLEAR: PO_RC, G_F_CONF.
      L_VA_BOXTITLE   = TEXT-B01.
      L_VA_FILTERTEXT = TEXT-B02.
      IF PO_FILE IS INITIAL.
        CLEAR L_VA_DEFAULTFILE.
      ELSE.
        L_VA_DEFAULTFILE = PO_FILE.
      ENDIF.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
        EXPORTING
          WINDOW_TITLE            = L_VA_BOXTITLE
          DEFAULT_EXTENSION       = 'TXT'
          DEFAULT_FILE_NAME       = L_VA_DEFAULTFILE
          FILE_FILTER             = L_VA_FILTERTEXT
          INITIAL_DIRECTORY       = 'C:SAPWorkdir'
        CHANGING
          FILENAME                = L_VA_DEFAULTNAME
          PATH                    = L_VA_DEFAULTPATH
          FULLPATH                = L_VA_DEFAULTFULL
          USER_ACTION             = L_VA_CODE
        EXCEPTIONS
          CNTL_ERROR              = 1
          ERROR_NO_GUI            = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        PERFORM CHECK_ERRORTYPE(Z48M_MATDATA_UP) CHANGING SY-MSGTY.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR PO_FILE.
        EXIT.
      ENDIF.
      IF L_VA_CODE NE 0.
        MESSAGE S818(3F) WITH TEXT-011.
        CLEAR: PO_FILE, PO_RC.
        EXIT.
      ELSE.
        WRITE L_VA_DEFAULTFULL TO PO_FILE.
        G_F_CONF = G_C_XFELD.
      ENDIF.
    ENDFORM.                    " save_dialog
    If useful reward.
    Vasanth

  • Setting the file type in a file field

    Hi,
    I wonder if any body can help i am new to web application
    development, I am developing an asp application in dreamweaver 8,
    A few of my pages contain a file field which has a file
    browse button at the end of the field which works fine,
    now i want to set the default file type to *.pdf, Currently
    when i run my app in IE 7, when i click on the file browse
    button, the file browse dialog box appears but the default
    file type is *.* (All files), is it possible to set the default
    file type
    to pdf so that when the file browse dialog is displayed the
    default file type is *.pdf in stead of *.*.
    Thanks
    Fifo

    The OS just watch the extension of the file.Not always. If you create a word doc but name it with
    some other extension, the OS still can determine that
    it is a word doc.On which OS?
    if i take foo.exe and i rename foo.doc so my OSwill
    try to open it as a MS Word Document.Again, garbage in, garbage out.What you mean?
    If I create a MS Word Document for a file .doc that is not a real .doc and it is not able to read, i will just lose cpu time and a lot of memory.
    So it is important to understand if I need really to open MS Word watching what is the real file type
    Either way, you're going to be doing way too much
    work (and wheel-reinventing) if you're going to build
    your own detection scheme.In the SDK there is not any file type checker, and if eventually really exists an OS like you say that is able to read inside the file, i prefer to have my own Java class that do that work in a safe and opensource way.
    However in my first post i've given a site with some java code that do what I need, i just was asking if anyone know if there is any ready-to-work java class that is better for doing this work.

  • CS4 Set default file type when placing file

    The File->Place dialog box has a default file type of 'Importable files.'  Is it possible to set the default to All files (or anything else)?  Making the change manually does not seem to stick.  I have the same general question regarding File->Open.  A search of the forums returned one hit (unanswered) in the Dreamweaver forum.
    Thank you.
    Dick Conrad

    Peter:
    Good question.  One of our editors made this request, and I believe that he works with files that lack extensions.  But controlling the default would also let us go in the other direction: quickly see only .rtf or .txt files, for example.
    Any trick would be impractical if it lived in InDesign Defaults.  All ID users get the same copy, and no two editors would want the same filter.
    Thanks for your response.
    Dick Conrad

  • Will EC support setting default file type and Open With from file menu?

    The default file types I can live without, but at least allow for Open With on right click from Windows Explorer.
    I currently have EC set in the Open With programs list, but EC does not comply for any files I opt to open it with (.css, .php, .html etc).
    EC open but not the file I choose.
    Also, even though the above use case is not ideal when if I do attempt an Open With when EC is already open, a new application session starts instead of attempting to open in the currently active app frame. It would be ideal to allow for single app frame, multiple files when Open With is employed.
    Darrell

    Hey Darrell,
    Thanks for the feedback. How Edge Code treats files is definitely something we know isn't ideal and it's something we're looking at fixing soon. There's currently a story on the Brackets backlog that adresses the Open With issue - https://trello.com/c/GhF1Bgf9
    And it based on howit ranks in that priority it looks like we could potentially take that into Edge Code over the next couple of months.
    This is definitely a feature that we think is important before we consider ourselves 1.0 so it's high priority.
    =Ryan
    [email protected]

  • How to set default file type for screen capture?

    I want to change the default from .jpg2 to .jpg when doing a screen selection
    capture (cmd-shft-4). Where is the place to do this?
    Thank you,
    todd

    Todd,
    OnyX has 10 screen shot options available in Parameters>General>Screen Capture format:
    ;~)

  • QuickTime crashes at startup and on File Types tab

    I have a client who has been trying to install iTunes on Windows XP SP3 32-bit.  The iTunes installation would fail every time towards the end and rollback.  I tracked down Quicktime as the culprit.  Quicktime would crash whenever I tried to launch the player.  When I tried to uninstall the Quicktime already on the system, that uninstall would fail as well.  I used the Windows Installer cleanup tool to remove QuickTime and followed instructions here for removing the leftover QT files from the Program Files and Windows System folders.
    I was able to install the latest version of QT, but it then had the same issues, crash when bringing up the player and unable to uninstall again.  I then used Revo Uninstaller which was able to remove QT and all the files and file associations.  After that thorough cleanup, I installed QT again, but with the same results.  I did notice a few things.
    I can bring up the QT control panel and switch to any of the tabs except "File Types".  It crashes when I try to select that tab.  The last time I did the install at the final dialog of the installtion it has a button to allow you to set the file types.  When I pushed that button, the installtion did not crash, but you could hear the computer's HD working very hard and nothing ever happened even after 7-8 minutes.  I was able to click the finish button on the installation and the install finished, but I was left with the same crashing problem and inability to uninstall.
    The computer is clean of any malware and spyware and I've tried disabling the AV temporarily while doing these installs/uninstalls, but that's no help.
    He really wants to get iTunes installed but we can't get past this QT issue.

    many thanks.
    I think we'd better see if some other application (other than QuickTime itself) has dropped old QuickTime componentry in the system files on the PC. (If there's a version mismatch between the old componentry and the "QuickTime proper" componentry, that can create similar-looking symptoms, including uninstall errors.)
    So we'll go looking for the older QuickTime componentry in the most common locations for it to be stashed.
    First we'll need to change some view options on the PC.
    1. Open My Computer from the desktop or Start menu.
    2. In the Tools menu, click Folder Options.
    3. Click the View tab.
    4. In the "Advanced settings" pane under "Hidden files and folders" make sure that the "Show hidden files and folders" option is selected, and the "Hide extensions for known file types" option is unchecked.
    5. Click OK.
    Now in My Computer, open your C drive.
    Open the "Windows" folder.
    Open the "system32" folder.
    What files and/or folders can you see in there with QuickTime in the file/folder name? (In a standard installation of QuickTime, you should see precisely two files ... QuickTime.qts and QuickTimeVR.qtx ... and no QuickTime folders whatsoever.)

  • Windows BUG: Can't change file types through control panel Quicktime settings

    I am running the latest version of Quicktime on Viista Home Premium 64-bit.
    When I into Control Panel -> View 32-bit Control Panel Items -> Quicktime -> Browser, and I click on "File Types" or "MIME Settings", I get a blank page that looks like this: http://oi40.tinypic.com/hvbbia.jpg, and Quicktime momentarily freezes.
    I have no issue adjusting file type settings when bringing up Quicktime outside of control panel, or when using "Default Programs" within control panel, it's only when I do it within "View 32-bit Control Panel Items" that it does this.
    This is a minor bug but still weird. Can anyone else verify the issue? I tried uninstalling and reinstalling but that didn't help.

    This could be caused by damaged QuickTime preference files (or possibly a permissions problem on the preferences files).
    We can try rebuilding one set of your preference files to see if that helps with the greyed-out stuff.
    First, quit QuickTime if you have it open.
    Next, you'll need to make sure you are set up to view hidden files and folders in Vista (or 7).
    1. From the Start menu, click Open.
    2. In the Organize menu, click Folder and Search Options.
    3. Click the View tab.
    4. In the "Advanced settings" pane under "Hidden files and folders" make sure that the "Show hidden files and folders" option is selected.
    5. Click OK.
    Next, you'll remove the QuickTime preference folder (and contained file).
    6. In Computer, open Local Disk: C or whichever drive your documents are stored on.
    7. Open the Users folder.
    8. Open the folder with the name of the Windows 7 user account in which the QuickTime file types are "greyed out".
    9. Open the AppData folder.
    10. Open the Local folder.
    11. Open the Apple Computer folder.
    12. Drag the QuickTime folder out onto the Desktop.
    Now you'll rebuild the preference folder and file.
    13. Launch QuickTime. Check your file types again.
    Are they still greyed out, or can you change them now?

  • Setting file type in preferences

    I seem to be unable to have PSE 9 set the file type. When I change the preference it alwasy goes back to never. What am I doing wrong.
    Bob

    I take it you have a mac and you mean that the file extension preference keeps setting itself to Never?
    This is a known bug, caused by merely opening the Saving Files preferences in PSE 9. There are two workarounds:
    1. Just type in the extension manually, or
    2.Quit the PSE editor, then relaunch it while holding down command+shift+option. Keep holding the keys till you see a window asking if you want to delete the settings file. You do. Then never open the Saving Files preference window again.

  • Setting File type in Upload UI Element

    I want to set the file type as *.doc when the Browse option opens up in the Upload button.
    Is this achievable.

    Hi Soumya,
    Just as the upper 2 experts said,  so far we cann't achieve this in the existing edition of WD..This is not like in traditional ABAP, which we can use such as "Filter" in Dictionary-browser to restrict the file type .
    If we want to use only certain file type in WD, as far as i know, we should only using Coding to handle it..
    Best wishes.

  • Setting file type to open in WebStart Program (Opened file as parameter)

    Hi --
    I've created a Java program & installed in on my PC using Web Start. Now I'd like set all .sit files to automatically open in my program. My program expects a file as input, and I'd like the opened .sit file to be that parameter.
    I've tested this using a batch file to run the program (instead of Web Start), and that worked fine. I'm not able to get this to work with a Web Start program, though.
    I opened My Computer & went to Tools / Folder Options / File Types. I created an SIT extention, and I tried a number of things:
    1. I had Web Start place a shortcut on the desktop, and then I selected that shortcut from the list in the File Types window --> I got a "TooManyArgumentsException" when I double-clicked on the .sit file.
    2. I tried to set the File Types setting to http://myserver/myapp.jnlp. --> Windows recognized that this wasn't an executable & wouldn't let me save it.
    3. I created a shortcut to http://myserver/myapp.jnlp and pointed the File Types setting to that. --> Windows wouldn't let me save that.
    4. I clicked the Advanced button on the File Types tab, and created an open action. I tried the same three things there & got the same results.
    Is it possible to do what I'm trying to do (force .sit files to open in my Java Web Start program and send their filename into the program's main method as a parameter)? Does anyone have any pointers?
    Thanks,
    Bonnie

    This is a new feature in Java Web Start 1.5, and in the 1.5 version of the JNLP specification.
    The <association> tag in the jnlp file can be used to ask Web Start to create the fextension/mime-type asociation for ".sit" extensions so that if you click on a ".sit" file, the system will launch "javaws -open clickedfile.sit yourapp.jnlp" see:
    http://jcp.org/aboutJava/communityprocess/maintenance/jsr056/jnlp_spec.html#4756982
    http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/syntax.html#information
    /Dietz

  • Setting *.* in file type

    How do I set the 'file type' to *.* or all files instead of *.lvm?

    I have a test stand where in order to greatly simply the collection of vibration data, I take six channels all at once and write out the data as ASCII for the six velocity spectra (0 - 300,000 cpm, 8000 lines of resolution), six time waveforms (from the same collection spec which results in approximately 4 seconds of data from all six channels), and six overall vibration level calculations.  Also, based on the users input, the data is saved in one of three folders, 'incoming', 'final' or 'other'.  So, the user has to first open the folder he wants and then, if multiple data files were recorded, they are also in one of those folders as 'finalvibes_1', 'finalvibes_2', etc.
    My vi reads the data back.  So, the three ASCII files are  finalvibes.dat (velocity fft data), time.dat (time waveforms), and overalls.dat (the six overall numbers).  It works great, and maybe I should just forget changing anything.  I just want to take away the added step of the user having to manually click and change the filetype from *.lvm to *.*.
    The more I think about it, the more I ought to be thankful that the whole thing works well and leave it alone!!!!

  • Media file type, how to pick player IN BROWSER LINKS ??

    I hit an mp3 link in Safari, it opens a new tab to play it using what I think is a version of iTunes (it has a 30-sec button on the front?). Same in Firefox, though I get a window with Quicktime instead (big Q before playing).
    *How on earth do I get the mp3 to play in an EXTERNAL player, preferably Realplayer?* So I don't leave the webpage where the mp3 link is.
    ...in Windows, you could select the media player of you choice and setup the file associations to go with each one under a "media types" options panel or suchlike. Though on my Mac I tried this by opening "Get Info" for a different saved mp3 on my machine, selecting "open with" > Realplayer > Change All, and it works for all ones stored ON MAC. However in Safari and Firefox, I hit an mp3 in a webpage and it does NOT open in Realplayer (just plays in the browser, so I can't read the rest of the page the file was on)??
    How do I set the file-type media files play with in browser windows?
    aaagh, it's soooo annoyong?!?!

    I think you miss my issue.
    I already KNOW I can download the mp3 then play it in Realplayer. But how do I get it to just open the mp3 and play straight into RP (or any other EXTERNAL player outside of the browser if RP can't be used for some reason) WITHOUT downloading the file to Downloads??
    I just want to click the link in the middle of the webpage, eg.
    *Blah blah blah blah, and here is my track samples:*
    anysongsample1.mp3
    anysongsample2.mp3
    anysongsample3.mp3
    anysongsample4.mp3
    anysongsample5.mp3
    anysongsample6.mp3
    *Blah blah blah blah*
    *Blah blah blah blah*
    *Blah blah blah blahBlah blah blah blah*
    *Blah blah blah blahBlah blah blah blahBlah blah blah blahvBlah blah blah blahBlah blah blah blahBlah blah blah blah*
    *Blah blah blah blahvBlah blah blah blahv*
    *Blah blah blah blahvv*
    ...if I have hundreds of tracks to go through, I don't want to dl them, just play without dl-ing them. I could do this easily in Windows, so how Mac??

  • Assigning default applications across multiple file types

    I prefer to use VLC to watch video files, but I keep running into different file types that are still set to have Quicktime open them. Is there any way to quickly set whatever file types I want to open by default with VLC? Or any program for that matter?

    Has anyone noticed that recently this doesn't always seem to work?
    I have a webloc file for BBC Radio 4. (*) I have set the "Open with" to open it with Real Player, rather than Safari (which is set as the default browser). When the file is double clicked, it still opens with Safari.
    This behaviour seems to since 10.5.8, since I had a Hot Key set to open the file and it worked fine before.
    Any ideas?
    (*) this url should display on one line:
    http://www.bbc.co.uk/radio/aod/mainframe.shtml?http://www.bbc.co.uk/radio/aod/ra dio4.shtml?listen

Maybe you are looking for