Using AMS and midnam files in Logic

Anyone know why Logic does not easily recognize external synth files already fully finished in the AMS section of my Mac?
This is really annoying, unless there is some answer. I tried for hours to build an external synth multi-instrument in the environment window, but my synth requires program change info that the outdated environment window cannot handle on the first tier of programming. What a clusterfudge. I also searched many third-party sites to find that my synths do not have "good samaritan" pre-built patches easily locatable. Fix this, Apple geniuses!

the great guys at Apple support have answered this question quite nicely!
What I had to do was go to the environments window and under "options" choose bank commands and relabel two separate bank control lines as the same bank number and then send one with control value 0 and 63 (for Korg) and the other one as value 32 and 0-4 depending on which bank was being used. I also needed Cherry Picker to rip the preset names form the AMS file.
Cherry picker was also useful for looking at which bank control values were needed to change my banks. It really helped.

Similar Messages

  • Useful logs and trace files

    Hello experts, for our Netweaver AS administration, I am in charge of periodically checking logs and trace files. I would like to know which are the most useful logs and trace files and the information each one will hold. I am familiar with "DefaultTrace.trc", and as of today it is the only one I have used, but I believe I should also be looking at other logs and trace files.
    Any suggestions?

    Hi Pedro,
    If you are talking about JAVA only system defaulttrace is the best log/trace to look, there are other log files like application log, but maybe the best way to check you logs is using NWA (NetWeaver Administrator) on the following URL on your JAVA system:
    http://<hostname>:<port>/nwa
    From there you need to go to Monitoring -> Logs and Traces and then Predefined View/SAP logs.
    My other recommendation is to change the severity level to ERROR for all you JAVA component within the Visual Administrator -> ServeNode -> Services -> Log Configurator -> Locations, otherwise it is possible that you see a lot of garbage on the defaulttraces. Anyway you can change the severity level per component, on demand, to investigate any possible problem.
    The work directory is very imporant and maybe you can also check the file "dev_serverX" that also will give you information about any out of memory conditions and garbage collection activity if you have these values set for the server node using the config tool:
    -verbose:gc
    -XX:+PrintGCDetails
    -XX:+PrintGCTimeStamps
    You can find more information on here:
    http://help.sap.com/saphelp_nw70/helpdata/en/ac/e9d8a51c732e42bd0e7de54b9ff4e2/content.htm
    Hopefully this help you, let me know if you need more information,
    Zareh

  • I need to open and use Excel and Word files on my iPad, which software need to get?

    I need to open and use Excel and Word files on my iPad, which software need to get?

    The options include :
    Apple's Pages app for Word docs and Numbers for Excel spreadsheets
    There are also third-party apps which support both word and excel in the one app e.g.Documents To Go and QuickOffice HD

  • Using archivelog and control file from other Oracle server

    I am still bothered with my backup process.
    I have 2 AIX boxes (same model, say A and B); both have BAAN 5 and Oracle 10g R2 on. Right now my colleague insists to use the export pump (cold backup) from Prod Oracle server (A) to restore the Oracle server on Box B. The Prod server has the archivelog mode turn on. But it will miss any transaction data from import pump till the crash point of Box A. So this is my confusion.
    Can I pass the control files and archivelog files form Box A (prod server) to Box B and use them to restore the Box B as the latest Prod server? How?
    I tried to convince them to use the RMAN backup? But not successful?
    I think the best way is probably to use the Oracle Data guard. However, there is always one concern to my manager and colleague, that such process will cause the data on the restored server (failover, Box B) not recognizable by the BAAN, which define the objects (tables).
    Thanks

    Performing a logical backup is not useful to restore to the point of failure. The only valid and available option is a hot backup/archivelog mode. Your recovery manager backup perform a controlfile and redologfile backup, so those can be restored at the destination. You must take care of the way you perform the backup, and ensure the paths where your backup is being deposited are visible by the second node. A shared storage with same mount points is suitable in this case. A tape robot configured at both nodes is also a suitable solution.
    Recovery manager perfoms a controlfile and spfile restore, too. This rman command perform the action:
    SET DBID <DBID of the database,for which you want to restore the controlfile>;
    RESTORE CONTROLFILE FROM <name_of_backupiece_which_contains_the_controlfile backup>';
    I don't see any problem on the recovery manager side, and technically speaking, on the Oracle side it is perfectly possible to restore your database at a remote location. I don't know what happens on the BAAN side, if you are required to have it configured to be operative on the target node. You could try to clone your database at the node B, configure BAAN and prepare the proceduere in case of failure.
    Configuring a dataguard is also a recomended action. So it is to think about Cold Failed Over clusters. I have recently performed a CFC configuration with BAAN. No problem it works smoothly.
    ~ Madrid.

  • Using non apple wav files in logic express 9

    Does anyone know how i can use non apple files in logic express 9.i have put them in Bin but cannot get them to play via my midi keyboard.thanks

    chazbass wrote:
    Does anyone know how i can use non apple files in logic express 9.i have put them in Bin but cannot get them to play via my midi keyboard.thanks
    Actually i am not sure i really understand your question because it seems to me that in your subject heading you are asking about " wav " files which are audio files but in your message you refer to playing those files via your midi keyboard which indicates you are trying to play " midi " files and not " audio " files.
    If you want to play a audio file:
    Create and audio track in a project and the import the "wav" file into that audio track and it should play as an audio file when hit the play button in the transport controls.
    Please clarify what type of file you want play using LExpress 9 to give us a better idea as to how to help you.

  • How to use jsp and xhtml files in an application

    This is web.xml file,
    <web-app>
    <context-param>
         <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
         <param-value>.xhtml</param-value>
    </context-param>
    <context-param>
    <param-name>facelets.DEVELOPMENT</param-name>
    <param-value>true</param-value>
    </context-param>
    <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
         <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
         <servlet-name>Faces Servlet</servlet-name>
         <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <listener>
    <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
    </listener>
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml</param-value>
    </context-param>
    </web-app>
    If i configure like this, i am not able to work with jsp file.
    So, how to configure web.xml file to work with both jsp and xhtml file.
    Thanks,
    Vinutha.

    Hi Sam,
    To Use properties file you need to keep the properties file in a location and in the code you need to mention the path from where it should read in the runtime.
    Fuego.Io.PropertiesFile propfile;
    propfile.load(fileName : "<Path: C:/sample.properties>"); //Path: Place the properties file in the respective directory/drive and mention the path
    String val = propfile.get(key : "One"); //One - is the key against which the value should be mentioned in the properties file like <One = 1>. It should return 1
    logMessage("Value: " + val);
    To use the Enum in your project first create a Module in your catalogue component and then right click on module create New Enumeration say ProcessStatus
    Uncheck the Is Sequential if you want to keep key/value as pair. Click on add +* and mention the Name and Value say ABORTED as Name and Value as Aborted. To use it in your project conditional path write the condion as somevariable == String(ProcessStatus.ABORTED)
    Hope this will help you.
    Bibhu

  • Using fusion and sharing files with mac

    I am getting a Mac Airbook and am going to be running Fusion from VMWare.  I have an external Western Digital drive that I want to use to transfer my files to the Mac.  Two questions:
    1.  Will the Passport software or at least the files - be recongnized by the Mac?
    2.  Does the Mac share the files with Fusion or do I need separate folders?

    Welcome to the Apple Support Communities
    1. Your Mac will recognize the external drive without any problem if it's formatted with FAT, NTFS or exFAT. Note that OS X can't write into NTFS drives.
    2. Your Mac can share files with a virtual machine if you install VMware Tools onto the virtual machine

  • Students unable to use Upload and Manage Files

    Our students have been unable to use the _Upload and Manage Files_ function since last week. They receive an *Access Denied* message as soon as they click the link. Here is our debug page:
    iTunes U Access Debugging
    Received
    Destination brockport.edu
    Identity Empty string
    Credentials Student@urn:mace:itunesu.com:sites:brockport.edu:classes:200901-1067-DCC-400-61
    Time 1232465069
    Signature aee5d3665e6350cb0e87df99810f690f4b7931110e85c4e016a86345cea63c3e
    Analysis
    The destination string is valid and the corresponding destination item was found.
    The identity string is valid but provides no identity information.
    The credential string is valid and contains the following recognized credential:
    1. Student@urn:mace:itunesu.com:sites:brockport.edu:classes:200901-1067-DCC-400-61
    The time string is valid and corresponds to 2009-01-20 15:24:29Z.
    The signature string is valid.
    Access
    Because the received signature and time were valid, the received identity and credentials were accepted by iTunes U.
    In addition, the following 2 credentials were automatically added by iTunes U:
    1. All@urn:mace:itunesu.com:sites:brockport.edu
    2. Authenticated@urn:mace:itunesu.com:sites:brockport.edu
    With these credentials, you have browsing and downloading access to the requested destination.
    There is a tab with +Drop Box+ access for Students and I even changed the page access to Shared for Students, but nothing has helped.

    Were you ever able to get this resolved? We have the same issue.
    Resolved, yes, to a point. After doing some extensive reading, I was able to determine that our fatal assumption was that the podcast media files would be hosted by Apple. According to at least one source, Apple has not offered hosting to new iTunesU accounts since January 2009.
    Therefore, the reason we did not have a button for "Upload and Manage Files" is because there was no place for us to upload them to.
    I have successfully attached feeds from both MobileMe and Podamatic and we are in the process of setting up our OS X Server with Podcast Producer. We will host the feeds locally and make them available through iTunes U, blogs and other channels.
    --Brad

  • How to use Dlls and Header files in my java Code?

    Hi All,
    I want to make use of dll and header files of DataStage, from my Java Interface.
    i am buliding a product where i need to contact DataStage server from my Java Code alone, For this they provided dlls and header files
    Now i wan to make use of them and need to perform DataStage operations from my Java Interface.
    Can any on help out me regarding this?

    Try Java Platform SDK for native function calls without JNI writing code, like it done in .NET languages.
    For MS Windows:
    http://www.simtel.net/product.php[id]100916[SiteID]simtel.net
    For Linux/Unix:
    http://www.simtel.net/product.php[id]117719[SiteID]simtel.net

  • Creating a custom component in multisim using *.lib and *.olb files

    i have  *.lib and *.olb files for a pspice model. which file i have to you while creating a custom component in multisim.

    Hello,
    Thanks for your question. In order to create simulatable custom components in Multisim you need a SPICE model (Multisim can also understand PSpice Models). The file format for SPICE model can be different according to the manufacturer, for instance: *.cir, *.lib, *.llb. At the end of the day these files are text files that you can open with a text editor, therefore, you can simply copy and paste the model in Multisim.
    Here are two good resources on component creation:
    Component Creation 101
    Creating a Custom Component in NI Multisim
    When you reach the step where you need to enter the SPICE model, simply open the *.lib or *.olb file with a text editor, and copy and paste the model.
    Hope this helps.
    Fernando D.
    National Instruments

  • Troubleshooting Network Problems Using Log and Trace Files

    Hi,
    can any one tell me how to generate trace and log files related to network errors.

    start with inspecting listener.log
    Post tailend (last 40 lines here) of listener.log

  • Importing 32 bit aifs and OMF files into Logic

    Is it possible to import 32 bit aifs into Logic Express 7 and arrange using an OMF file? If so, how?!
    Please help. Thanks in advance!

    Have you tried importing it into iTunes? If that works, you could use iTunes to turn it into a file that GB can handle:
    http://www.bulletsandbones.com/GB/FAQPages/NeverFail.html

  • XML - 0112 Error on parsing using SAX and xml file in InputSource object.

    I need to parse a XML string and extract some information. I have to use SAX parser. I'm converting hte string to InputSource and then trying to parese.
    i'm getting XML-0112 error, my guess is that it is not able to locate DTD file but i tried hardcoding the whole path in DOCTYPE tag.
    i tried doing setSystemId also but no luck.
    null

    Can you post a simple test case to look at?

  • How to use packages and jar files for applet?

    Hi!
    My applet takes a class say a.class.
    Now this class depends on other classes that are packaged
    in a directory and put separately.
    I want to put this applet on the web.
    So how do I manage the .class files in he package.
    I have tried using jar file format.But I was not able to get it working.
    Can someone please help me?
    Thanks

    Use Archive instead of codebase:
    <APPLET CODE="MyApplet.class" ARCHIVE="MyApplet.jar" WIDTH=400 HEIGHT=300></APPLET>

  • DTW - Trouble using ODBC and Configuration Files

    I am using SBO SP1 PL2 and DTW 2005.
    I have been making use of saving the configuration for the import of an object and then using the command line to run it, as described in DTW help under "Schedule Run".
    I typically use tab-delimited files saved from Excel and the above method works very well.
    However, I would prefer to use ODBC directly from the template tables I have in a SQL database. It works perfectly using the GUI within DTW, and it lets me save the configuration file, but when I try to run DTW from the command line using ODBC, I get these error messages:
    Can not connect to ODBC data source.
    Can not get SQL handler.
    Does anyone have any suggestions on how I can use DTW from the command line while using ODBC sources?
    Thank you.

    I've got the same problem.
    I solve it once by editing the xml file's <ExID> tag from <ExID></ExID> to <ExID />
    So the problem resides at the XML syntax.
    My problem is that I lost the XML file I used and now I can't make it work again.
    Have anybody found the solution at this problem or is there an updated version of DTW?

Maybe you are looking for

  • Can I split the hard drive with Time Machine.

    Just bought a new 1TB drive. I want to back up my MacBook. Time Machine formats the drive. Can I use the remaining 800GB for other things or does it have to be dedicated to Time Machine?

  • Intermittent connection to domain from remote site.. What is the recommended solution?

    Hello, I used to have a separated branch office with its own application/db standalone server, and about 15 users locally configured on that server... Recently we implemented a Microwave connection (25 Mbps) between the main and branch office, joined

  • How do I enable digital signatures in Reader?

    I have created a form using Adobe Standard 9.2.  It has a digital signature field and no security settings.  The properties indicates that signing is allowed.  However, if I open the form with Reader 9.2, the properties indicate that signing is not a

  • JOIN TWO TABLES

    I wounder if someone could help I am trying to join two tables: parent table META_OBJECTS has 4 cols:OBJECTKEY(pk),OBJECTTYPEID(fk),OBJECTNAME, OBJECTDESC and child table meta_objectdependencies with 3 cols:SRCOBJECTKEY(fk), TGTOBJECTKEY(fk),DEPENDEN

  • Exit code 7 on Dreamweaver CS5.5 install

    Hi, I keep getting Exit code 7 during my dreamweaver CS5.5 install. A little information about my machine: - I have CS5 Master collection installed - I have Flash Pro 5.5, Air for Apple iOS and Flash builder 4.5 installed. - I HAD Flash Builder 4.6 p