EXS24 Unusable in X - Can't find samples

EXS24 keeps coming up with this error message when I try to load an instrument:
Audio File 'xxx' not found, Search again, Ignore..
There is no option to find it manually so it's impossible to proceed..
I have both my Sample Instruments and Samples folder in 'Audio Music Apps'
I've re-indexed spotlight by putting the Audio Music Apps folder into the Privacy tab in Spotlight preferences then removing it.
Can anyone suggest a solution to this please..

This would seem to be a problem with the sample names. The problem doesn't occur with all my sampler instruments but with the ones that it does, when I go into EXS24's edit menu and d-click on one of the audio file's names (that haven't loaded) I get an error message saying 'Bad File name or Volume Name.'  These all work fine in Logic 7, 10.4.11 btw. -  the problem is occurring in Logic Pro X 10.8..

Similar Messages

  • Can't find sample WLST Scripts for OSB10gR3

    Hello,
    I have installed OSB 10gR3. I do not find sample WLST Scripts to create a OSB Domain etc. Sample scripts are available in ALSB 2.5 under C:\bea\alsb25\weblogic92\samples\server\examples\src\examples\wlst\online.
    Can you please post WLST Scripts for creating a ALSB Domain, cluster configuration etc for 10gR3.
    Thanks in advance.

    Hi,
    Pls choose custom install and choose Samples for Weblogic Server, Once installed check
    c:\beahome\wlserver_10.3\samples
    You will have samples for WLST
    http://edocs.bea.com/wls/docs100/config_scripting/intro.html#wp1034451

  • EXS 24 can't find samples

    One day randomly EXS 24 wouldn't load certain sample instruments like "String Ensemble" for example.
    When I click on the sample it freezes for a moment and then gives a message that says " EXS 24 cannot find " *random numbers* .wav" files and then gives me the option to "search again" or "continue". I can't seem to find a straight answer from other forums and I've already tried re-installing the jampacks. I'd appreciate any advice I can get for this issue.

    Have that "random numbers .wav" a specific name...
    I think there no samples calle as random numbers .wav
    anyway search with Spotlight the exact name of missing samples...
    if the file is really missing you can try to use "pacifist app"
    Pacifist is able to search inside Jampacks DVDs...

  • Can't find sample schemas

    I have installed 10g xe. I am self training using the oracle press book "Oracle Database 10g A Beginner's Guide." However, the book indicates that the customer table, mentioned in chapter 2 is provided as part of the sample schema in 10g. But the only schema I have is HR. Is there a place where I can download and import the schemas mentioned in the book? Or must I install enterprise edition in order to work with them? Thanks to any that can assist.

    The Order Entry (OE) schema builds on the purely relational Human Relations (HR) schema with some object-relational and object-oriented features. The OE schema contains seven tables: Customers, Product_Descriptions, Product_Information, Order_Items, Orders, Inventories, and Warehouses. The OE schema has links into the HR schema and PM schema. This schema also has synonyms defined on HR objects to make access transparent to users.
    rem
    rem Header: oe_cre.sql 09-jan-01
    rem
    rem Copyright (c) 2001, 2002, Oracle Corporation.  All rights reserved. 
    rem
    rem Owner  : ahunold
    rem
    rem NAME
    rem   oe_cre.sql - create OE Common Schema
    rem
    rem DESCRIPTON
    rem   Creates database objects. The script assumes that the HR schema
    rem   is present.
    rem
    rem NOTES
    rem   The OIDs assigned for the object types are used to
    rem   simplify the setup of Replication demos and are not needed
    rem   in most unreplicated environments.
    rem
    rem MODIFIED   (MM/DD/YY)
    rem   hyeh      08/29/02 - hyeh_mv_comschema_to_rdbms
    rem   ahunold   09/17/01 - FK in PRODUCT_DESCRIPTIONS
    rem   ahunold   04/25/01 - OID
    rem   ahunold   03/02/01 - eliminating DROP SEQUENCE
    rem   ahunold   01/30/01 - OE script headers
    rem   ahunold   01/24/01 - Eliminate extra lines from last merge
    rem   ahunold   01/05/01 - promo_id
    rem   ahunold   01/05/01 - NN constraints in product_descriptions
    rem   ahunold   01/09/01 - checkin ADE
    PROMPT
    PROMPT specify Sample Schema version as parameter 1:
    DEFINE vrs     = &1
    PROMPT
    -- ======================================================================
    -- Type definitions
    -- ======================================================================
    CREATE TYPE cust_address_typ
      OID '82A4AF6A4CD1656DE034080020E0EE3D'
      AS OBJECT
        ( street_address     VARCHAR2(40)
        , postal_code        VARCHAR2(10)
        , city               VARCHAR2(30)
        , state_province     VARCHAR2(10)
        , country_id         CHAR(2)
    REM ===========================================================================
    REM Create phone_list_typ varray to be varray column in customers table.
    REM ===========================================================================
    CREATE TYPE phone_list_typ
      OID '82A4AF6A4CD2656DE034080020E0EE3D'
      AS VARRAY(5) OF VARCHAR2(25);
    REM ===========================================================================
    REM Create customers table.
    REM The cust_geo_location column will become MDSYS.SDO_GEOMETRY (spatial)
    REM datatype when appropriate scripts and data are available.
    REM ===========================================================================
    DEFINE vscript = ?/demo/schema/order_entry/ccus_&vrs
    @&vscript
    CREATE UNIQUE INDEX customers_pk
       ON customers (customer_id) ;
    REM Both table and indexes are analyzed using the oe_analz.sql script.
    ALTER TABLE customers
    ADD ( CONSTRAINT customers_pk
          PRIMARY KEY (customer_id)
    REM ===========================================================================
    REM Create warehouses table;
    REM  includes spatial data column wh_geo_location and
    REM  XML type warehouse_spec (was bug b41)
    REM ===========================================================================
    DEFINE vscript = ?/demo/schema/order_entry/cwhs_&vrs
    @&vscript
    CREATE UNIQUE INDEX warehouses_pk
    ON warehouses (warehouse_id) ;
    ALTER TABLE warehouses
    ADD (CONSTRAINT warehouses_pk PRIMARY KEY (warehouse_id)
    REM ===========================================================================
    REM Create table order_items.
    REM ===========================================================================
    CREATE TABLE order_items
        ( order_id           NUMBER(12)
        , line_item_id       NUMBER(3)  NOT NULL
        , product_id         NUMBER(6)  NOT NULL
        , unit_price         NUMBER(8,2)
        , quantity           NUMBER(8)
    CREATE UNIQUE INDEX order_items_pk
    ON order_items (order_id, line_item_id) ;
    CREATE UNIQUE INDEX order_items_uk
    ON order_items (order_id, product_id) ;
    ALTER TABLE order_items
    ADD ( CONSTRAINT order_items_pk PRIMARY KEY (order_id, line_item_id)
    CREATE OR REPLACE TRIGGER insert_ord_line
      BEFORE INSERT ON order_items
      FOR EACH ROW
      DECLARE
        new_line number;
      BEGIN
        SELECT (NVL(MAX(line_item_id),0)+1) INTO new_line
          FROM order_items
          WHERE order_id = :new.order_id;
        :new.line_item_id := new_line;
      END;
    REM ===========================================================================
    REM Create table orders, which includes a TIMESTAMP column and a check
    REM constraint.
    REM ===========================================================================
    DEFINE vscript = ?/demo/schema/order_entry/cord_&vrs
    @&vscript
    CREATE UNIQUE INDEX order_pk
    ON orders (order_id) ;
    ALTER TABLE orders
    ADD ( CONSTRAINT order_pk
          PRIMARY KEY (order_id)
    REM ===========================================================================
    REM Create inventories table, which contains a concatenated primary key.
    REM ===========================================================================
    CREATE TABLE inventories
      ( product_id         NUMBER(6)
      , warehouse_id       NUMBER(3) CONSTRAINT inventory_warehouse_id_nn NOT NULL
      , quantity_on_hand   NUMBER(8)
    CONSTRAINT inventory_qoh_nn NOT NULL
      , CONSTRAINT inventory_pk PRIMARY KEY (product_id, warehouse_id)
    REM ===========================================================================
    REM Create table product_information, which contains an INTERVAL datatype and
    REM a CHECK ... IN constraint.
    REM ===========================================================================
    CREATE TABLE product_information
        ( product_id          NUMBER(6)
        , product_name        VARCHAR2(50)
        , product_description VARCHAR2(2000)
        , category_id         NUMBER(2)
        , weight_class        NUMBER(1)
        , warranty_period     INTERVAL YEAR TO MONTH
        , supplier_id         NUMBER(6)
        , product_status      VARCHAR2(20)
        , list_price          NUMBER(8,2)
        , min_price           NUMBER(8,2)
        , catalog_url         VARCHAR2(50)
        , CONSTRAINT          product_status_lov
                              CHECK (product_status in ('orderable'
                                                      ,'planned'
                                                      ,'under development'
                                                      ,'obsolete')
    ALTER TABLE product_information
    ADD ( CONSTRAINT product_information_pk PRIMARY KEY (product_id)
    REM ===========================================================================
    REM Create table product_descriptions, which contains NVARCHAR2 columns for
    REM NLS-language information.
    REM ===========================================================================
    CREATE TABLE product_descriptions
        ( product_id             NUMBER(6)
        , language_id            VARCHAR2(3)
        , translated_name        NVARCHAR2(50)
    CONSTRAINT translated_name_nn NOT NULL
        , translated_description NVARCHAR2(2000)
    CONSTRAINT translated_desc_nn NOT NULL
    CREATE UNIQUE INDEX prd_desc_pk
    ON product_descriptions(product_id,language_id) ;
    ALTER TABLE product_descriptions
    ADD ( CONSTRAINT product_descriptions_pk
         PRIMARY KEY (product_id, language_id));
    ALTER TABLE orders
    ADD ( CONSTRAINT orders_sales_rep_fk
          FOREIGN KEY (sales_rep_id)
          REFERENCES hr.employees(employee_id)
          ON DELETE SET NULL
    ALTER TABLE orders
    ADD ( CONSTRAINT orders_customer_id_fk
          FOREIGN KEY (customer_id)
          REFERENCES customers(customer_id)
          ON DELETE SET NULL
    ALTER TABLE warehouses
    ADD ( CONSTRAINT warehouses_location_fk
          FOREIGN KEY (location_id)
          REFERENCES hr.locations(location_id)
          ON DELETE SET NULL
    ALTER TABLE customers
    ADD ( CONSTRAINT customers_account_manager_fk
          FOREIGN KEY (account_mgr_id)
          REFERENCES hr.employees(employee_id)
          ON DELETE SET NULL
    ALTER TABLE inventories
    ADD ( CONSTRAINT inventories_warehouses_fk
          FOREIGN KEY (warehouse_id)
          REFERENCES warehouses (warehouse_id)
          ENABLE NOVALIDATE
    ALTER TABLE inventories
    ADD ( CONSTRAINT inventories_product_id_fk
          FOREIGN KEY (product_id)
          REFERENCES product_information (product_id)
    ALTER TABLE order_items
    ADD ( CONSTRAINT order_items_order_id_fk
          FOREIGN KEY (order_id)
          REFERENCES orders(order_id)
          ON DELETE CASCADE
    enable novalidate
    ALTER TABLE order_items
    ADD ( CONSTRAINT order_items_product_id_fk
          FOREIGN KEY (product_id)
          REFERENCES product_information(product_id)
    ALTER TABLE product_descriptions
    ADD ( CONSTRAINT pd_product_id_fk
          FOREIGN KEY (product_id)
          REFERENCES product_information(product_id)
    REM ===========================================================================
    REM Create cross-schema synonyms
    REM ===========================================================================
    CREATE SYNONYM countries FOR hr.countries;
    CREATE SYNONYM locations FOR hr.locations;
    CREATE SYNONYM departments FOR hr.departments;
    CREATE SYNONYM jobs FOR hr.jobs;
    CREATE SYNONYM employees FOR hr.employees;
    CREATE SYNONYM job_history FOR hr.job_history;
    REM ===========================================================================
    REM Create sequences
    REM ===========================================================================
    CREATE SEQUENCE orders_seq
    START WITH     1000
    INCREMENT BY   1
    NOCACHE
    NOCYCLE;
    REM ===========================================================================
    REM Need commit for PO
    REM ===========================================================================
    COMMIT;And yes, you must install at least Oracle SE to get completely this sample schemas on your file system :(

  • How do I draw cartoon "action backgrounds"? Where can I find samples?

    In a lot of cartoon, when something exciting is happening, the background would change to a bunch of streaming colors of sort. An example of a show that did this was Pokemon. Like whenever Ash ordered his pokemon to do something.
    Anyhow, does anyone know what I'm talking about? I don't even know what to google to find out more about it... Thanks!

    They are simply drawn triangles.

  • 9.1 update - and EXS24 can't find my samples anymore

    Everything was great under 9.0.2. I have a "Samples" folder on a drive, with an alias to it in Application Support/Logic/Sampler Instruments. Worked great.
    Installed 9.1.
    Now, when trying to load an EXS sample from that library, I get:
    "EXS24 Instrument "[whatever]":
    Audio file "[whatever]" not found.
    Continue/Search Again
    Stranger still, when I look in Application Support/Logic, I find Logic has for some inexplicable reason copied the very files it can't find from my samples drive to the Application Support/Logic folder so now that folder is filling up with all kinds of audio file garbage from the samples it supposedly couldn't find.
    W-T-F??
    Does anyone have any idea what's going on here?
    Thanks in advance!

    That problem happened to me in logic 8 as well and has occurred at least once in logic 9. My uneducated guess it that for some reason the path is lost in the EXS24 when pointing to samples. try opening and closing the project a few times. More than likely you will have to locate the samples again in order for them to play. From now on I always save my samples as assets to my song's project file. That way you always have your samples if you move to another computer or the EXS has trouble locating them.

  • I just upgraded to Lion and can't find my EXS24 sampler instruments

    The instruments that came with Logic are still in their place, but can't find user sampler instruments.  It used to be (user / library / application support / logic / sampler instruments, but there is no "library" folder in the user folder anymore.  Any suggestions?

    Jericho...
    The User/Library folder is now hidden in Lion. To get to the "user" Library folder you now have to access it from Finder>Go>Go To Folder.
    Once there, type this: /users/(your administrator name here)/Library/
    Hope this helps...
    I've been working in Lion just fine until tonight! I lost my EXS24II sampler Instruments too... but probably for another reason?  -- Andy

  • ICal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    iCal reports that it can't find server, and lots of data from several years ago is trying to get attention.  Cannot bring up calendar in any view to use. also keeps loading unused calendar websites from long ago.  I can' remove them. what to do?

    UPDATE: I had 36 Safari windows open and minimized on the dock from my last session; 20 of those windows failed to open b/c Safari "couldn't find the server"; I just went to the URL bar of all 20 pages and clicked return, and all 20 pages loaded perfectly, without dropping any images or losing formatting. This is a puzzle!!!

  • I am a high school teacher.  My district purchased the entire CC Suite.  Where can I find a tutorial in book form to learn how to use your products?  Do you all provide free book samples to teachers?

    I am a high school teacher.  My district purchased the entire CC Suite.  Where can I find a tutorial in book form to learn how to use your products?  Do you all provide free book samples to teachers?

    Good day!
    This is a user to user Forum, so you are not really addressing Adobe here, even though some Adobe employees thankfully have been dropping by. (edit: Actually they are more likely to frequent the regular Photoshop Forum.)
    Regards,
    Pfaffenbichler

  • Where can I find a sample ERD for a University

    Hello.
    I have to develop a program in C# that manages details about the students, taxes, courses, etc and prints some reports.
    It's for my license degree.
    The programming part is not that hard but the task that is killing me is designing the database because I have poor experience with data modeling.
    I don't have access to my university's database so I need to make one myself..and the teachers won't help..
    I tried to make a diagram but I realised that I cannot do it, I got stuck.
    An university database can get extremely complex and it's hard to make .. so I wonder if any of you know where can I find a sample ERD for a University. I need one as complete as possible.
    Any help is appreciated..

    jorjiana wrote:
    I don't have access to my university's database so I need to make one myself..and the teachers won't help..
    Unfortunately due to the quality of most of the homework questions on these forums I believe you when you say the teachers are no help. You should still discuss it with them and make clear you are not learning what they are supposed to be teaching.
    http://www.google.com/search?q=university+database+erd
    The top hit looks like a good start.

  • Where can I find a sample of dbca.rsp file?

    Dear all,
    I've just successfully installed for the first time Oracle 11g in silent mode on Redhat Enterprise 5.3
    (I installed in silent mode because there is no X system installled on this Linux server).
    The installation was completely successful. I used the response file provided in the response
    directory (ee.rsp) and I defined the parameters value properly according to what I needed..
    Now I want to install a general purpose database. According to what I read in Oracle 11g installation guide,
    it is also possible to use DBCA in silent mode again by using a response file.
    Now the problem is that I searched for all response files in the oracle package that I downloaded, there
    is only three response files (for different type of installations Enterprise, Standard, etc.) but no dbca.rsp.
    Well, when I run
    $ su oracle
    passwd
    $ dbca -hI can see the possible options, but in a response file the information is more detailed (specially for
    someone like me who is going to use this command for the first time).
    Where can I find this file? if it is not provided with Oracle package, in the case where you have a sample
    could you kindly copy/paste a version of the file (after removing of course all confidential set of information)?
    Thanks in advance,
    Dariyoosh
    :)

    Satishbabu Gunukula wrote:
    Hi,
    Normally response files located under “Disk1/response“. But for 11g these files are missing from OTN zip files. All the files are there in the correct location on Media download.
    They are trying to fix this.
    Try to download latest version and check if it available. If available copy the file and run the DBCA.
    Otherwise use vncserver for GUI, it comes with RHEL.
    Run below command and choose password.
    $vncserver –geometry 1290x980
    It will provide a hostname for desktop version to open from VCN viewer.
    Download VNC viewer from web and run the VNC viewer from your desktop and provide the hostname provided by "vncserver" command.
    Hope this helps
    Regards,
    Satishbabu Gunukula
    http://oracleracexpert.blogspot.com
    [Click here to learn Voting Disk backup and recovery|http://oracleracexpert.blogspot.com/2009/08/voting-disk-backup-and-recovery.html]
    Hello there,
    Thank you very much for your attention to my problem. I will try this tomorrow.
    Kind Regards,
    Dariyoosh
    :)

  • Logic Pro X can't find Custom EXS Samples

    Hi, I upgraded my computer to Yosemite due to a crash, and ever since I can't find my custom EXS files.
    They are in the HD/Libraries/Application Support/Logic folder, exs files are in the Sampler instruments folder,
    the sounds are in the EXS Factory Samples folder. Strangly enough, EXS 24 does see a few of them, but not
    all of them, I can go through the horrible process of manually directing each sample, but I'll be dead by the time that's all done.
    Doesn't EXS 24 have an Auto find function? Right now it just says it can't locate the file, without even looking. And when I do find it,
    it still doesn't direct the entire sound folder, it's just that one sample for that one note...
    AAAAAHHHHH!!!
    anyone, please help moi before I burn this computer down?
    F

    +1
    As per the bundle's spec page...
    Mac compatibility
    VST (32-bit only1), Audio Unit (32-bit only1), and RTAS (Pro Tools 7.0 or later) plug-in hosts
    Mac OS X-compatible audio interface
    1. The VST and Audio Unit plug-ins are available in 32-bit only. The native 64-bit VST and Audio Unit plug-ins won't be available until the next major version. 32-bit plug-ins are sometimes available in 64-bit host sequencers via a bridge – like the Audio Unit Bridge in Logic Pro for instance.
    Some of the plugins have been udated to 64bit versions but some have not (yet) which is why you cannot use them with LPX
    Check for updated versions on Acoustic's website...

  • How can I find out the audio sampling rate of BetacamSP tape?

    Hi guys
    I'm trying to digitize BetacamSP tape. But I'm afraid if I might choose wrong setting...
    This tape is from very long time ago so we don't know which audio sampling rate we recorded with..
    How can I find out the audio sampling rate of this BetacamSP tape?
    Thanks:)

    The sampling rate is set by the Sony DVMCDA2 you are using, when the conversion is made from the analog input to the digital (DV) output. You should be outputting standard DV which is 16bit 48khz audio.
    Assuming you are in the US, your Easy Setup for FCP should be DV-NTSC, and then open the Log and Capture Pane and set the Capture Settings Device Control to Non-Controlable Device and you should be good to go.
    You will have to roll the deck manually and start and end your capture manually.
    You can download a user manual for the DVMCDA2 by clicking here.
    MtD

  • Where can I find the script for the sample table?

    Hi,
    Where can I find the script for the sample tables, like emp, dept, ... ?
    Regards,
    Rosaline

    http://otn.oracle.com/docs/products/oracle8i/doc_library/817_doc/appdev.817/a77069/preface.htm#420431
    Hi,
    Where can I find the script for the sample tables, like emp, dept, ... ?
    Regards,
    Rosaline

  • Logic can't find Ultrabeat samples after swapping hard-drive-HELP!

    Hi!
    I have just replaced my 'audio' drive with a larger one. From 280Gb to 1Tb. Woohoo
    I named the new drive exactly the same thing as my old drive, Same format (Extended Journaled) Copied the entire folder structure across intact - and as far as I can see - all the paths to all my audio are exactly the same as they were on my old drive... Even the cute icons on the shortcuts in my sidebar are now automatically linking to the correct places in my new drive.
    BUT...
    Logic now can't find anything. Well lets be more specific, When I try to load a song there seem to be two types of files it can't locate:
    1/ Ultrabeat samples. Ie: the .aif and .wav samples that I have loaded into my own custom Ultrabeat instruments. When loading a song a dialog box appears asking me to find these audio files for it...
    Not such a 'show stopper' you may think, but I have anywhere up to 10 Ultrabeat instruments in a song - and, of course, each one has up to 20 samples... Multiply by 50 songs - yeah - you get the point - this is nightmarish
    2/ Audio files referenced in the song itself with long file names. Logic seems to be finding audio files in the song with short file names, but then comes up with dialog boxes during song load asking me to find filenames that are TRUNCATED! argh! So instead of the file 'Kik-Reggaeton warm 01' I am asked to locate 'Kik-reggaeton wa#16E59'. Now I have a lot of reggaeton kicks!! Which one does it want? And note also - that in the audio files associated with the song - none of the file names have been truncated! So which one is it looking for????? Corrupted look-up table? Wha?????
    Just to clarify too:
    -Logic 7.2.3 (961.9)
    -PPC G5, 2.5Mb Ram
    -Osx 10.4.11
    And the system drive has remain unchanged! I have just swapped out my drive with all my Audio on it. So my /user path and so on remains unchangted.
    This is driving me NUTS! I have a beautiful big new drive to play with, am bursting the seams of my current one and have an album to finish... I've looked on every Logic forum and group I can find and there is very little reference to this kind of problem, but I'm sure some-one else must have come across this before... There are some very cool tools in Project manager for resolving this kind of problem - but they only apply to EXS instruments and songs - not Ultrabeat instruments!
    PLEASE HELP!
    Thanks,
    Dan

    Well, I just tired the cloning approach, using 'Carbon Copy Clone', and unfortunately...
    The problem remains.
    Can anyone help here? Does anyone have a contact within the Logic development team?
    Below is the problem again in as concise format as I can make it, can any-one forward this on?
    Thanks for any help...
    THE MAIN QUESTION
    Does the Ultrabeat Instrument in Logic 7 store some form of unique Drive Identifier in it's path information for each sample it loads (in relation to user loaded samples - not preset samples.)
    THE PROBLEM
    I have an internal 'Audio' Drive (300Gb) in my G5, which I would like to replace with a new drive (1000Gb). But when I copy all my data across (including all my sample libraries) and then run Logic - Ultrabeat no longer can find the samples on the new drive. Of course - since I have hundreds of Ultrabeat instruments each with up to 24 samples referenced, having to find and point to each sample would take a looooong time.
    Furthermore, internally Ultrabeat seems to be truncating long file names, so asking me to find "KIK-File name tester f#F15C.wav" and of course I have many such files with the differentiating number at the END of the filename - so I cannot tell which file it wants.
    MORE DETAILS
    -Logic 7.2.3 (961.9)
    -PPC Dual 2Ghz G5, 2.5Mb Ram
    -Osx 10.4.11
    I have tried Carbon Clone Copying the data from old drive to new drive. The Drive Names are the same, so as far as I can tell the entire path for the samples should identical... Other applications correctly find files on the new drive. Mac OS resolves paths correctly to the extent that custom Folder Icons display correctly on the new drive.
    Ultrabeat asks me to find both samples with short filenames, and long filenames. The long filenames it asks for are truncated in the 'Ultrabeat:Please Locate:filename' window.
    Furthermore, some SONG data is not found - any file referenced in a song with a long file name is asked to be found by the truncated name.
    'Audio file "bustarhymes-touch_it#F14C.aif" not found!
    Audio with short filenames ARE succesfully found by the song.
    This is not so bad because with Project Manager I have some tools to locate samples, but these tools do not apply to the Ultrabeat instrument - which is my main problem.
    Any help or advice, please contact:
    danatcoyproductions.com
    Thanks.
    Dan

Maybe you are looking for