Unwanted file extension inserted into file format list!

I accidentally saved a .wav file with the .ses extension.  Now I've got the .ses extension included with .wav and .bwf extensions under the Save As Type box in my Save and Save As dialog windows.  Any advice on removing it?

I just recreated your issue.  I saved a .wav file with the .ses extension at the end.  It did indeed put the .ses extension in with the .wav and .bwf extensions next to Windows PCM Wave File.
I got rid of this by opening the affected file, doing a Save As, deleting the .ses extension from the file name when naming the file, then saving.  I closed the file, closed Audition, reopened Audition and the .ses extension was gone from the Windows PCM Wave File list.

Similar Messages

  • Illustrator CS3 Import and Export File Format list?

    Hello,
    Has anyone typed up an updated supported import and export file format list for CS3? I used to reference a support knowledgebase document, 1001741, (no longer on Adobe's site) that showed the majority of file formats and versions that Illustrator was able to import. I searched all over and couldn't find one, then called support and they confirmed they no longer had a list like that available--they had split the import options into separate lists--like what versions of Photoshop files, what versions of .eps files, .tiff files etc. Illustrator CS3 could open.
    The reason I was looking because I wanted to see what version Corel file CS3 could open after I was not able to open a customer's v.12 .cdr file.
    Thanks,
    Rick H.

    I am pretty sure that the last supported version of Corel that AI can open is version 10.
    :) Mordy

  • Change "save as" file format list

    How do I change the file format order that is listed in the "save as" file format window? Instead of having "Photoshop" listed as the default file, I'd like to have JPEG at the top, then TIFF, PSD, etc. I have to constantly scroll down the list to find JPEG.

    c.pfaffenbichler wrote:
    I know of no way to change that order.
    Edit: Actually one could probably Script a dialog with a file-format-dropdown-list of one’s own devising, but that hardly seems worth the trouble.
    But with Configurator and some Scripting you can make a save-as-jpg (and save-as-psd and whatever) into a one-click operation.
    See that is exactly what I think is wrong with Configurator it allows you to some cosmetics but no real customizations there are lots of formats I do not need ever. There are things I would rather have a menu item than as a panel selection and there things I would rather have that only do a coupe of options by default but you never get the opportunity of doing these things with this program.

  • Why is H.264 not on the "export" file format list?

    In QuickTime Help it says, "Video Format: Choose the video compressor (codec) you want to use to compress your video. For the highest quality at the lowest data rate (or the smallest file), H.264 is recommended." However, H.264 is not in the pop-up menu of formats, although the help file appears to say that it is. So how does one compress a .mov file to H/264 format?

    Here:
    http://babelfish.altavista.com/babelfish/trurlpagecontent?lp=fren&trurl=http%3a%2f%2fwww.qtbridge.com%2fQTCodecs.html
    It's being translated from French so it may take a few secs to load.

  • Inserting into a linked list

    Hello all,
    I'm currently studying for a midterm on linked lists and I'm having a little trouble inserting in "order". What I'm trying to do is use a compareTo method to compare serial numbers of items. The compareTo methos is as follows:
    public int compareTo(Object obj) {
         StoreItem other = (StoreItem) obj;
         return serialNumber - other.serialNumber;
    And the following is my addItem method....which should simply insert the Node into the list in it's proper place according to it's serial number. Any help would be greatly appreciated:)
    public boolean addItem(StoreItem item){
    if (item == null)
    return false;
    else if (first == null)
    {first = new Node (item, null);
                return true;}
    else {
    Node p = first;
    while (p.next != null && item.compareTo(p.value) > 0){
         p = p.next;
    p.next = new Node (item, p.next);
    return true;
    Thanks again!
    Tyler

    My error lies in the "else {" section of the code....The code up to there works fine as I've tried adding one element to an empty list and print it and it works. What doesn't work is when there's already one item in my list and I want to add another, which is what the following code was meant to do:
    else {
    Node p = first;
    while (p.next != null && item.compareTo(p.value) > 0){
         p = p.next;
    p.next = new Node (item, p.next);
    return true;
    This code compiles and doesn't give me a runtime error, yet when I execute the program, it only seems to add the first element....
    Thanks again for the help:)
    Tyler

  • Unwanted blank lines inserted into the page bean

    For some reason after using the visual editor and then switching to the java view, I notice that there are extra blank lines inserted between lines in the file. The extra lines can accumulate making the file very large and unusable. This has only started happening after installing the latest hot fix. Is there a fix for this?
    Thanks,

    Hi mitsu,
    We did send out some updates via UpdateCenter just two days back. One of the fixes in there would fix the extra empty lines issue.
    Please get this update downloaded and installed on your Creator Installation.
    It should fix your issue.
    Could you please confirm if this fixes your issue?
    Regards,
    Sakthi

  • Error "Can't make every file of ... into type alias list" - please help!

    Hi
    I am trying to adapt a script that uses Max (an audio conversion tool) to convert files in a folder to another format. The original script which I found on a forum asked the user to choose the folder with the files in which need to be converted, but I want to specify the folder in the script so that it can be automated. So I changed the line:
    set sourceFolder to choose folder
    to
    set sourceFolder to "Macintosh HD:Users:nick:Desktop:test:"
    However I then get the error (this is the only line in the script I changed and the original script works fine):
    error "Can’t make every file of "Macintosh HD:Users:nick:Desktop:test:" whose name extension = "m4a" into type alias list." number -1700 from every file of "Macintosh HD:Users:nick:Desktop:test:" whose name extension = "m4a" to «class alst»
    Could someone let me know why I am getting this error and how I can sort it. The full script is below.
    Thanks
    Nick
    tell application "Max" to activate
    tell application "Finder"
    set sourceFolder to "Macintosh HD:Users:nick:Desktop:test:"
    set theFiles to (every file of sourceFolder) as alias list
    repeat with aFile in theFiles
    tell application "Max"
    convert aFile
    end tell
    delay 1
    tell application "System Events"
    tell process "Max"
    click button "Convert" of tool bar of window "File Conversion"
    set encoderOpen to true
    repeat while encoderOpen is true
    try
    window "Encoder"
    on error
    set encoderOpen to false
    end try
    end repeat
    end tell
    end tell
    end repeat
    end tell

    nick_harambee wrote:
    set sourceFolder to "Macintosh HD:Users:nick:Desktop:test:"
    This saves a string (Macin...) under the variable sourceFolder. You then try and use sourceFolder as an alias which doesn't work. To fix the situation try saving sourceFolder as an actual alias in itself. For example...
    set sourceFolder to folder "Macintosh HD:Users:nick:Desktop:test:"
    or perhaps
    set sourceFolder to "Macintosh HD:Users:nick:Desktop:test:" as alias
    Either of those should correct your problem.
    When using "(choose folder)" you get an alias returned which is why the original script worked fine.

  • Reduce the number of File Formats in Save As list

    How do I permanently remove unwanted file formats from the "save as" file format list?
    (Adobe Photoshop CS2)
    Thanks,
    Drew

    This has been asked before and as far as I know it can't be done.

  • HT3775 why can i not open the file format MPEG_4(mp4) on my mac with Quick player?

    i can not open the email with file format MPEG_4(mp4) which is one of the contents on the file format listing , supporting by Quick time player but still can not be opened . !!!!!!!!! by the way my quick time player version:10.2(603.6)

    The file extension, .mp4, .wmv, .mov, etc. really has no bearing on whether it can play or not. It should, but that is not the way it works. The file type is merely a wrapper around the media content. That media content can be encoded with lots of different encoding algorithms. If it is encoded with a scheme that Quicktime doesn't understand, then it won't play in Quicktime Player.
    You might try installing the Perian plugin for Quicktime. It might have the codecs necessary to decode the media content.
    Another option is to use Video LAN's VLC. It plays a lot of things.

  • Announcement: Adobe Revel now supports the raw file format!

    You asked, we listened! Revel 2.2 for iOS and adoberevel.com now support the raw file formats listed below:
    (premium subscribers only)
    arw (SONY)
    cr2 (CANON)
    crw (CANON)
    dng
    erf (EPSON)
    raf (FUJI)
    3fr, fff (HASSELBLAD)
    dcr (KODAK)
    mrw (KONICA)
    mos (LEAF)
    rwl (LEICA)
    nef, nrw (NIKON)
    orf (OLYMPUS)
    rw2 (PANASONIC)
    pef (PENTAX)
    srw (SAMSUNG)

    Camera Raw plug-in | Supported cameras  I do not see that SX60 as supported. Just how new is the SX60 when was it announces. Its support is not even listed in ACR 8.7 RC

  • I am using Photoshop Elements 11.  Do all .jpg formatted file have to be retangular in shape?  I want to create an oval .jpg picture to insert into a book.  Haven't been able to do so.  It would work if I could make the area outside the oval completely tr

    I am using Photoshop Elements 11.  Do all .jpg formatted file have to be retangular in shape?  I want to create an oval .jpg picture to insert into a book.  Haven't been able to do so.  It would work if I could make the area outside the oval completely transparent.  Can anyone help me here?

    JPG does not support transparency, so even if you create an oval with transparent background, the saved JPG will have white background. Instead, save it as a PNG, TIFF, or GIF which preserve the transparency.
    Here is one of many ways to create your oval:
    Create a new file the approximate size of the oval. Add the oval with the Custom Shape Ellipse tool, and simplify the shape layer.
    In the Layers Palette, Ctrl-click the oval to select it and copy the selection to the clipboard (Edit > Copy).
    Then do File > New from Clipboard. This creates the oval with transparent background cropped to the oval size.
    Then save it as one of the file types that support transparency (and also supported by the application where you are sending the picture to).
    Note:  Is is not even necessary to do step 2. That is only if some reason you want the oval to be tightly cropped. It is sufficient to delete the Background layer in step 1 (or turn off its visibility) and save the file. The oval will appear correctly in the book with either version.

  • What File format do I need to insert a Video into a Powerpoint?

    HI...
    Trying to get a video inserted into a power point.  Am having a horrible time....Anyone know how to do this??

    http://www.microsoft.com/mac/support

  • I finished making an animated .gif image in FireWorks. My question is, how do I convert it into video so that when I edit video, that every video editing program recognizes it? Long story short, How do I convert animated .gif files into video formats?

    I worked in Adobe FireWorks to make the animated .gif. What program do I use to convert the file from .gif to any video format: .mp4, .m4v, .avi, .wmv, etc. I want to convert it into video format, so that QuickTime Player plays the video, I can insert it into iMovie '11 and edit, and also insert it into Final Cut Pro X and edit video.

    Thanks for getting back with me so promptly.  It has taken me this time to connect with the proper people to find out the information you requested.
    The camera used to film the class was a Panasonic AG-HMC40P, owned by a local cable TV station; they use Kodak video encoding software, and a SD card was used to store the video.   The file extension is .mts, and the mime file is MPEG 2 transport.  He said I probably need an AVCHD converter, and the Mac app store lists 8 of those options, 4 free and 4 for up to $9.99.  He said I'll also need a converter for later plans of posting on YouTube or on the website, and while some of those in the app store might work for the later needs, he knows one app called "Compressor" that would work for the uploading later.  He also suggested I could try renaming the .mts file to .MP2T, but he wasn't sure that would work.
    They don't work with Macs at the studio, but I had thought I could have some lessons there in editing, and apply what I learned to my iMac and iMovie.
    First, though, I have to be able to see it and review it!
    Thanks again!

  • HT3775 Hi, my mac which is on 10.7.5 osx. but when ever i insert any mpeg/avi video cd it shows the file format not recognized. i am fed up of this. plz somebody help me. what should i do now.

    hi,
              i am using 10.7.5 lion there are a lot of problems in this OS.
    like most of the programs quit's unexpectedly. some programs does not work on it. like adobe cs5 is not working. everytime time when i do click on adobe cs 5 icon it shows a message "To open “Adobe Photoshop CS5,” you need to install a Java SE 6 runtime, but you are not connected to the Internet.To install a Java SE 6 runtime later, open “Adobe Photoshop CS5” again" while i always remain connected on the net.
    2. when ever i insert an avi or mpeg video disk it shows the file format not recognized. to **** with this macbook pro n its 10.7.5 lion. the same disk works/runs on windows on windows systems.
    plz somebody help me what should i do now.
    [email protected]

    it sounds like a fualty installation of Lion, this may happen from time to time.
    The best thing to do in this situation is to reinstall Lion. You will not loose anything doing this, but you should always keep back ups of your information.
    http://www.apple.com/osx/recovery/
    basically hold Cmd+R on boot..
    first go to disk utility, verify and repair your disks and permissions. Exit out of Disk utility and then go directly to "reinstall Lion"
    choose that and let it reinstall.
    Adobe CS6 does need Java to run.
    To play your movies you might need to get an application called VLC. VLC is a free app and will play most videos and music files you throw into it.
    http://www.videolan.org/vlc/download-macosx.html
    you have a 64bit intel mac, so get the one for that.

  • When viewing the applications tab of my firefox preferences, PDF file formats are not in the list of possible formatts, how do I add it so that I can open PDF file in my browser?

    I am running OSX 10.5.8 currently, and have followed all of the tips and advice on the help sites (IE. uninstalling, installing pluggins, programs like adobe, and reinstalling firefox). I tried deleting and resetting the mimetypes.rdf file and the pluginreg.dat files. I have noticed that when you open the FF preferences window, and look at applications, there is no Portable Document Format file type listed. How do I fix this?

    Install '''PDFescape''' extension from the FF add-on gallery. I think it may help to your problem

Maybe you are looking for

  • Failover is work, but Session replication doesn't work!

    Dear all,           My Cluster can failover, but can't session replicate....           I start up the 2 WLS 6.0 and the Web Server, then I visit           http://web_server_ip/myWebApp/SessionServlet serveral times, then the           counter variabl

  • My new MacBook Pro is running very slowly... help!

    I ran "EtreCheck" and this is what it had to say: Problem description: slow EtreCheck version: 2.1.8 (121) Report generated February 28, 2015 at 8:15:08 PM CST Download EtreCheck from http://etresoft.com/etrecheck Click the [Click for support] links

  • How to update my ipad2 to os7

    how to update my ipad2 to os7

  • Multiple LIVE applications

    Wonder if you can help-. Two things really: Has anyone tried running HTMLDB 2.0 (APEX) on Microsoft Virtual server? Does ORACLE support this? I was planning on creating four environments on the same hardware, (Live, Staging, Development, Training). A

  • My pictures are getting deleted and i cant get my recent pictures

    so my pictures on my ipod keep getting delteed everytime i try to put them on the computer, so i lose all my recent pictures! im getting very fustrated and want them back or just want to know what is happening to them at least!!!!!!!!!!!