New type of NSInvalidArgumentException ?

It seems the NSInvalidArgumentExceptions are breeding.
I have a brand new one to report:
"NSInvalidArgumentException
* -[Audiosource model]: selector not recognized
[self = 0xc5c4390]"
It then gives you the option to quit or go ok, which then just repeats the error. Over and over again.
It is ocurring whenever we try and play ANY type of media out of the browser or search tab ... AIFF files, WAV files, even the .CAF apple loops files .......
Any suggestions ??? I think we can play the file in finder and then copy across to the project folder as a bit of a workaround, but c'mon - you should at the very least be able to "preview" the track you are about to put into the EDL !!!
Has anyone had anything similar ? How about reports of performance after installing the Prokit update ???
Thanks guys.

I had a similar problem today, the program would no longer get past the splashscreen. And even when I could access a menu it gave me a similar error window -> Quit or Okay (looping).
It seems that the problem was a corrupt file in the ~/Library/Application Support/Soundtrack Pro folder. I removed that folder and the problems went away.
I suppose you might look at other files such as ~/Library/Preferences/com.apple.soundtrackpro.plist or the temp files (by default) in ~/Documents/Soundtrack Pro Documents.
I would suspect if everything is working okay and then a problem suddenly appears some of these files that are constantly being written to would be the usual suspects.
It's often helpful to look in folders in list view and sort by Date so you can see which files have most recently been changed.
good luck, and hope this helps,
jim

Similar Messages

  • Training and event management - create new type of attendee

    Hi all,
    For training and event management, I have to create a new type of attendee besides sap existing attendee type such as company, contact person, customer, external person and so on.
    Via IMG -> Training and event management -> basic settings -> object type modeling enhancement -> object type -> define object types, then how can I define OrgObj Type for new object type I want to create?
    Thanks & regards,
    WCC

    S_AHR_61016216 - Cancellations per Attendee , i think there is no standard report for cencelation of business events, type and group.
    for cancellations per attendee reports is available in the system.
    good luck
    Devi

  • Definition of a new type of invoice for Evaluated Receipt Settlemen (ERS)

    Hello,
    I need to define a new type of invoice for Evaluated Receipt Settlemen (ERS). Is it possible? What should i do to configure the system?
    Thanks in advance,
    Luis Álvarez.

    Hi,
    ERS is used for invoice plan & invoicing plan for leasing agreements like, aim to considerably reduce the manual data entry effort in the purchasing and invoice verification (A/P) department.
    The invoicing plan enables you to schedule the desired dates for the creation of invoices relating to the planned procurement of materials or services independently of the actual receipt of the goods or actual performance of the services. It list the dates on which you wish to create and then pay the invoices.
    The steps are,
    1.XK02: In Purchasing Data tick the check box of AutoEvalGRSetmt Del,
    2.ME12: Should not select No ERS check box,
    3.ME21N: Create PO,
    4.MIGO: Receive Goods,
    5.MRRL: Evaluated Receipt Settlement
    Link may be useful.
    http://help.sap.com/saphelp_srm30/helpdata/en/fb/8dec38574c2661e10000000a114084/content.htm

  • Add a new type of object links (transaction CV02N)  - by material group .

    Hi experts .
    How can I create an additional screen for new tab by material group
           in DMS System ?
    I have a requirement :  1. Add a new type of object links in transaction CV02N 
                                          by material group(V023-MATKL) .
                                        Today we use 2 existing options  :  by Equipment and material .
                                      2. Save and display data .
    We did the following  steps :
    1 . In customizing  for Document Management  :
                   a. Maintained a  key fields :
                          table : V023 , tran.code : OMSF , field name : MATKL .
                   b. Maintained screen object link  for V023 .
                         Our problem is screen number  . we used at existing screen  - 500 for user exit.
                         So we get a new tab with material instead of material group .
                         How I can create a new screen with field material group
                             for set this screen number in step b ?       
                         May be I need the access key for FUNCTION GROUP CV130
                         and create this screen by myself ? .
                   c. Defined Object links for special document type  .
    2 .   Created in se19 at implementation of DOCUMENT_OBJ
                          with defined filter : V023 .
                          Regards Helena .

    Hi Nuno,
    how did you solve this problem?
    tks

  • Problem with new type of Document and WebUI

    Hello everyone,
    My problem is quite strange. Here it is :
    I have created a new subclass of Document using the API, named IFSDocument. So, i created a class IFSDocumentDefinition and a class IFSDocument. Here is the code :
    IFSDocumentDefinition :
    package fr.sword.ifs.GestionDocument;
    public class IFSDocumentDefinition extends DocumentDefinition {
    protected LibrarySession ifsSession;
    public IFSDocumentDefinition() throws IfsException {
    setClassname("IFSDOCUMENT");
    public IFSDocumentDefinition(LibrarySession ifsSession) throws IfsException {
    this();
    this.ifsSession = ifsSession;
    IFSDocument :
    package fr.sword.ifs.GestionDocument;
    public class IFSDocument extends TieDocument{
    public IFSDocument(LibrarySession session, Long id, Long classId, S_LibraryObjectData data) throws IfsException {
    super(session, id, classId, data);
    In this class, i've created a new ClassObject to handle my new type. Here is the method :
    public void createIFSDocument(LibrarySession ifsSession) throws IfsException {
    DocumentDefinition myDocDef = new DocumentDefinition(ifsSession);
    Document doc = (Document)ifsSession.createPublicObject(myDocDef);
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("IFSDocument");
    ifsSession.setInstallationMode(true);
    c = (ClassObject)ifsSession.createSchemaObject(cod);
    c.setBeanClasspath("fr.sword.ifs.GestionDocument.IFSDocument");
    c.setSelectorClasspath("fr.sword.ifs.GestionDocument.S_IFSDocumentSelector");
    c.setServerClasspath("fr.sword.ifs.GestionDocument.S_IFSDocument");
    ifsSession.setInstallationMode(false);
    I also created two classes named S_IFSDocument and S_IFSDocumentSelector that do nothing special but calling super(). Here is the code :
    S_IFSDocument :
    package fr.sword.ifs.GestionDocument;
    public class S_IFSDocument extends S_TieDocument {
    public S_IFSDocument(S_LibrarySession session, java.lang.Long classId) throws IfsException {
    super(session, classId);
    public S_IFSDocument (S_LibrarySession session, S_LibraryObjectData data) throws IfsException {
    super (session, data);
    S_IFSDocumentSelector :
    package fr.sword.ifs.GestionDocument;
    public class S_IFSDocumentSelector extends S_DocumentSelector {
    protected S_IFSDocumentSelector(S_LibrarySession session) {
    super(session);
    protected S_IFSDocumentSelector(S_LibrarySession session, Long classId) throws IfsException {
    super(session, classId);
    Everything seems to work since i'm able to create new objects of type IFSDocument. I can add custom attributes, put them into folders etc. BUT when i use the web interface, i have the following error message :
    oracle.ifs.common.IfsException : IFS-21002: Unable to construct S_LibraryObject for class fr.sword.ifs.GestionDocuments.S_IFSDocument (invalid class path specification)
    I don't understand why my classpath is invalid since i simply call super(). So, where is the problem ? Do i have to put the class(es) on the Server ?
    By the way, what's the purpose of the Selector class ? Is it related to search ?
    Thanks in advance.
    Regards,
    Guillaume
    PS : i'm using iFS 1.1.9 on Oracle 8.1.7 and NT4 sp6

    Hi Guillaume,
    don't know exactly but what i have in mind
    is that everything in iFS API that starts
    with a S_ is executed at server side, so the
    classes should exist there.
    You can easily check this if you put your
    classes in directory %IFS_HOME%\custom_classes
    You are right, the Selector class is for SIMPLE searches, for example:
    LibrarySession ifsSession;
    String searchCriteria = PublicObject.NAME_ATTRIBUTE + " = '<someName>'";
    Selector mySelector = new Selector(ifsSession, Document.CLASS_NAME, searchCriteria);
    LibraryObject objs[] = mySelector.getItems();
    Regards,
    Ralf
    null

  • Creation of New Types Alerts

    Hi
    I need to create a new alert,  its possible to create a new type in AMON1 or if its possible to change one standard alert?
    Thank you,
    Lucas

    If anybody has the same doubt this document can solve your questions...
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80b31362-7806-2d10-84a0-d2886880c282?QuickLink=index&…

  • A new type of activeKey USB token problems.

    My activeKey USB token worked until recently. I did this: https://discussions.apple.com/thread/2526943 and I installed the package: http://smartcardservices.macosforge.org.  Once I renewed, the usb key doesn't show up in my keychain.  This isn't a cache thing, as we tested a coworker's activKey which worked, then we updated it and it also doesn't show up in the key chain.
    Linux pcscd daemons don't pick it up either.
    Oooh, quick note: my company apparently had to do something recently because the activKeys weren't working on Windows 7.  Is there a new type of activeKey that's been installed onto the card?  (This stuff is mostly black magic to me.)
    Any help?

    I have exactly the same problem - tried deleting the cache - tried reinstalling the smart card services - no success yet
    This is a real problem as it leaves me dead for native Mac OS/X to access certain corporate web sites - have to use Parallels / Windows instead :-(

  • Add new type phones CUCM 4.2

    Hello, i have work to buy new phones in organization. But 7900 not selling now, how i see. How i can add new types phones to my CUCM.
    Thanks!

    Hi Dmitry,
    The "G" in the suffix of these models (like 7941G) stands for Global. The
    "GE" in the 7941G-GE stands for "Gigabit ethernet" as it is a 10/100/1000
    model.
    Keep in mind that there are 7900 models like the 7945G/65G and
    7942G/62G that are not End of Sale or End of Life and can be added to
    CCM 4.2(3) with the installation of a Device Pack like the one shown below;
    Firmware Versions
    Cisco Unified CallManager Device Package 4.2.3(60.0) includes the following firmware versions:
    Firmware
    4.2(3)Devpack   60
    Analog Access   WS-X6624
    A00204000013   / A0034322
    Digital Access   WS-X6608
    D00404000032   / D0054322
    Conference Bridge WS-X6608
    C00104000003   / C002E031
    Media Termination   Point WS-X6608
    M00104000006   / M002E031
    ATA18X
    ATA030204SCCP090202A
    7915-12 Button   Extension Module
    B015-1-0-3
    7915-24 Button   Extension Module
    B015-1-0-3
    7916-12 Button   Extension Module
    B016-1-0-3
    7916-24 Button   Extension Module
    B016-1-0-3
    IP Phone 7902g
    CP7902080002SCCP060817A
    IP Phone 7905g
    CP7905080003SCCP070409A
    IP Phone 7906G/11
    SCCP11.8-4-4S
    IP Phone 7912g
    CP7912080003SCCP070409A
    IP Phone 7920
    cmterm_7920.4.0-03-02
    IP Phone 7921g
    CP7921G-1.3.2
    P Phone 7925g
    CP7925G-1.3.2
    IP Phone 7935
    P00503021900
    IP Phone 7936
    cmterm_7936.3-3-20-0
    IP Phone 7937
    apps37sccp.1-3-3-0
    IP Phone 7941/7961
    SCCP41.8-4-4S
    IP Phone   7941G/7961G
    SCCP41.8-4-4S
    IP Phone 7942/7962
    SCCP42.8-4-4S
    IP Phone 7945/7965
    SCCP45.8-4-4S
    IP Phone 7970/7971
    SCCP70.8-4-4S
    IP Phone 7975
    SCCP75.8-4-4S
    IP Phone 7985
    cmterm_7985.4-1-7-0
    IP Phone 7960
    P00308010100
    IP Phone 7940
    P00308010100
    7914 14-Button Line   Expansion Module
    S00105000400
    http://www.cisco.com/web/software/282074299/26745/ciscocm.4-2-3-DevPack-60_readme.html
    Available via this path;
    Downloads Home
    Products
    Voice and Unified Communications
    IP Telephony
    Unified Communications Platform
    Cisco Unified Communications Manager (CallManager)
    Cisco Unified CallManager Version 4.2
    Unified Communications Manager/CallManager Device Packages-4.2(3.60)
    Cheers!
    Rob
    "Clocks go slow in a place of work
    Minutes drag and the hours jerk" 
    -The Clash

  • New type of order

    Hi, I want to create new (from copy of existing type) type of order.
    I  will create new order in ME21 with new type which I create.
    There is some stuff in forum - f.e. information that I can do it in SPRO:
    "PM/CS>Maintenance and service processing>Maintenance and service order ...", but I dont have it.
    Thanks for help.

    Hello,
    If you want to create a new PM/CS order:
    PM/CS>Maintenance and service processing>Maintenance and service order --> Define order types.
    But these orders can be executed from transaction IW31.
    Prase

  • New type of questopns

    i need new type of Questions, a matrix with multiple text boxes in row? is it available or how we can build one?

    Hi,
    We don't yet support this.  This idea has been suggested in our ideas section.  I suggest you vote for it there, as we do look at the ideas section when deciding what new features to work on.  Here's links to ideas that have been suggested:
    http://forums.adobe.com/ideas/1046
    http://forums.adobe.com/ideas/1709
    Thanks,
    Todd

  • How can I capture without Firewire 400 on a new type MacPro?

    I mean, Sony HDVs only have FW400, but there are no more FW400 on new type MacPros.
    It means that I have to buy a AJA hardware?

    Do remember that Firewire ports on Mac Pro's are hub'd together. I'm no 100% sure if it the same on the new '09 Mac Pro's but certainly on the older ones. this means that if you have a FW800 drive plugged in and then plug in a FW400 drive the whole speed of both devices will drop to a FW400 speed. Even worse, if you plug a camera in sometimes hese can run at what equates to FW100 / 200 speed. Therefore your FW800 speed drive will become massively unresponsive.
    So if you're planning on digitising, remember to plug the camera into one of the front ports, and the drive into a back port. that should avoid the slow down.

  • TypeSafe Enums + readResolve + New Types

    I have the following code:
    public final class Type implements java.io.Serializable {
        public static final Type TYPEA= new Type ("TYPEA");
        public static final Type TYPEB= new Type ("TYPEB");
        public static final Type TYPEC= new Type ("TYPEC");
        public static final Type TYPED= new Type ("TYPED");
        private String type;
        public Type (String type) {
            this.type = type;
        public String toString() {
            return this.type;
        private static int nextOrdinal = 0;
        private final int ordinal = nextOrdinal++;
        private static final Type [] VALUES = { TYPEA, TYPEB, TYPEC, TYPED};
        Object readResolve() throws ObjectStreamException {
             return VALUES[ordinal];
    }My problem is that I want the user to be able to add a new type for example lets say TYPEF. how would I go about doing this and also make it work with serialiazable?

    you can overcome the and .equals() failing with a very minor amount of code. Basically you need a set of all possible typesafe values.
    Additionally you need to implement readResolve to prevent serialization from cloning.
    Finally - it's just never a good idea to use == for equality comparison. It should only be used for identity comparison (and even then most of the time you should have equals perform the identity comparison).
        private static final Stooge[] ALL = new Stooge{Moe, Larry, Curly};
        //see java.io.Serializable for details
        protected Object readResolve() throws ObjectStreamException {
            return getTypeFor(this.name);
        //you usually need this for retrieval from persistent storage
        public static Stooge getTypeFor(String name){
          Stooge result = null;
          for(int i = 0; i < ALL.length; i++){
            if(ALL.name.equals(name)){
    result = ALL[i];
    break;
    return result;

  • Can I get a Mini DVI (old type) to Mini DVI new type adaptor? Does it exist

    I have a number of the old Ibook mini DVI to VGA/S-Video adaptors. My IBook died and got a macbook that has a mini DVI port - but not the exact same type as the Ibook. (Its NOT the Macbook pro type port). Does anyone know if there is a patch cord that has a male Ibook type mini DVI on one end and a female mini DVI on the other so these various adaptors I have will function.
    Any help will be greatly appreciated.
    Thanks,
    Skip

    Could it possibly be with the new software upgrade? I just updated from 10.6.1 to 10.6.2 and all of a sudden my Mini-Dvi to Video stopped working too. I'm using my Mini-DVI to VGA without problems at work with the same computer and a few minor adjustments to the display prefs.
    Apple says the 10.6.2 update was supposed to correct display issues. Could they have accidentally deleted support for the adaptor while correcting other issues?
    Perhaps the cheapest solution to this would be to downgrade back to 10.6. Any advice on this?
    I'm running a 2.2 Core2 Duo MacBook from mid-`08.

  • Create New Type of Storyboard

    I use a very popular type of storyboard in Germany which is used for TV Dokus.
    It contains the following 6 columns:
    - scene (no)
    - Start (Timecode)
    - Visual (Description)
    - Audio (Description)
    - Duration (in minutes and seconds)
    - Status
    I tried to import a WORD-Document and failed. (DOCX, RTF, PDF)
    So I developed a new storyboard with several columns. But this is nearby of no use, because it makes no sens to work with it.
    Even reenumeration scenes does not work.

    Since its a column script that you are using, instead of importing the script into Story please try the following -
    1) Create a multicolumn script first in Story. (New-> Multicolumn Script)
    2) Copy the table from the word doc (Ctrl+C) into this script. (Ctrl+V)
    You can add/delete columns and rows, edit column headers as per you need.
    Let me know in case you face any issues.
    Thanks
    Rashi

  • Can't See New Type on My Page

    I'm having trouble with DW5.5 on Mac OS 10.6.8. I'm trying to update my resume and when I type in my new info, "Is This How I Look?" I can't see it on my design page, but it shows up on the code page. Here is the code from the top of the page and following is the line of code with the new copy in it. My url is http://www.deborahdavisdesign.com/.
    Thanks for any help.
    <!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"><!-- InstanceBegin template="/Templates/basic_page.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Resume</title>
    <!-- InstanceEndEditable -->
            <p><span class="subhead">2011</span><br />
                    <span class="show_name">Is This How I Look?<span class="resume_text"></span></span><br />
                    </p>

    Hi, Jtanna. I did the best I could per your instructions. Here is the link to the test page.
    http://deborahdavisdesign.com/resume_Test.html
    I noticed that all of the copy in the resume in Bold Ital does not show up on my Design View, but does in Code View and on the site. When I created this site, I used CSS and assigned a style to all text. Now, when I put in an insertion point in my text in Design View I can see the assigned style. But I cannot select just one word or a phrase, the entire line of copy is selected when I click and drag. And when I am forced to select the entire line of copy, no CSS style shows up then.
    Here is a screen shot showing the missing copy in Design View. If you compare that to the website, you will see that all the Bold Ital heads are missing.
    Not sure if this is a CSS issue, or an upgrade issue, or old code from CS2 messing it up. Thanks SO much for helping me out. Looking forward to getting this figured out.

Maybe you are looking for

  • HP LaserJet 1022 Printing Problems - Please Post Here

    Sorry, I hate to create a new thread, but tracking so many different threads on this one issue is becoming problematic for me. So with that being said, if you are still having a problem with printing to a LaserJet 1022 after the full uninstall I deta

  • Hide desktop icons on secondary monitor?

    I have these command scripts in my Dock and click on them when I want to hide or show desktop icons: defaults write com.apple.finder CreateDesktop false killall Finder defaults write com.apple.finder CreateDesktop true killall Finder It works great.

  • I have lost Mail on my IMac following restoration from backup

    I have lost Mail from my Imac and cannot seem to be able to get it back any suggestions.  I am operating on MAC OS X 10.6.8

  • Vendor not intended for purch. org.Purchase Deportment

    Hi Gurus Whenever we are trying to create the SC with source of supply with one user we are receiving the error message as "Vendor XYZ not intended for purch. org. XYZ Purchasing Department ". Please suggest. Thanks in advance. Thanks & Regards Sada

  • Easiest way to Center imge in browser window

    I have an almost full page image that I want to remain centered right and left when the browser window is resized. The BG is black so the black should grow evenly when the resized browser window is changed. I have tried different alignments but nothi