Possible to use third-party virtual instrument sounds in Mainstage?

Hi guys,
I've tried to find the answer to this question with no luck. When using Mainstage during live performances (or at rehearsals, off course, will I be limited to using Apple's built in sounds in Mainstage, or will I be able to add sound from other virtual instruments like the ones from Native Instrument for instance? Let's say I want to play my favorite piano sound from Akoustik Piano and want to use this conveniently from within the Mainstage interface - is this somehow possible?
Thank you!
Best,
Thomas

Absolutely --- Native Instruments plugins are all available as AUs and work very well with MainStage.

Similar Messages

  • Consignment sale process using third party.

    Hi Friends
    Whether one can do Consignment sale process using third party. That is instead of stock being supplied by the Company a third party supplies the goods directly to the customer but this stock is to be treated a consignment stock.
    Is this possible....if yes then how.
    Nagesh Murthy.

    hi;
    This is very much possible. Well a little ABAP help would be needed of course. But this is how it can work....
    1. Initially create a contract with the Vendor and let him build stocks and keep them in consignment. The contract itself will be for consignment. So the PO we create must be for consigned stocks.
    2. Once the stocks are created in consigned status we can change the availabilty check to refer to the stock status in the consigned level. So getting a Schedule line will not be an issue.
    3. Now, when the delivery is created we can trigger an output where in we can consume the stocks. This output would typically trigger a Call Off PO which will consume the stocks from the consigned status for delivering. This will happen only at the System level. Physical good will always be in the Consignment status at the vendor location. Once the Call Off PO is GR'd the stocks comes in to our account and then the PGI is done.  To develop this we nee ABAP's help.
    4. So all along the Stock is treated as Consignment stock and only at the time of PGI we take it into our account.
    Hope this helps. Do let me know if you need further info.
    Regards,
    Mani.

  • Using third party plug-ins

    Hi.
    How do I use third party plug-ins. I've just installed SSL LMC-1 component, but i can't find in the insert pop-up menu on the Logic channel strip.

    Hi,
    I had that plugin,but it no longer shows up under Logic 7.2.3,which is what I'm running now.So I do not use it anyomer,at least until it is updated.
    Although a cool plugin,you might want to try either the Free Fish Fillets,which sound better to me,or another pay plugin like the Nomad Factory BT Compressor FA770 which is like the Fairchild,very close in fact.
    Cheers

  • MainStage message: possible conflict with third party midi or audio drivers

    Just when I thought everything was going to be ok...
    MainStage gives me a message that it detects a possible conflict with third party audio or midi drivers. The only midi device I'm using is class compliant (doesn't need a driver). My audio interface is an Apogee Duet and I'm using the most recent driver. Logic registers no such complaint. MainStage freezes. Any ideas?
    Thanks,
    Mark

    Hello.
    I am seeing this whenever MIDI events are being sent into either Logic or MainStage (primarily MainStage), while they are launching. On my setup, this will either crash the application during launch, ( sent to Apple ) or trigger this "...3rd party conflict / driver..." dialog.
    In either instance, disabling incoming MIDI messages by turning them off on all connected MIDI devices, or as suggested, waiting to connect the device in question until, the application is fully launched, fixes my version of this issue.
    ** Please Note: In my experience, increasing the number incoming MIDI messages, exacerbates the issue and, makes a dialog or crash more likely to occur.
    Hope this is helpful.

  • Keybd_event with third party Virtual Key and WM_KEYDOWN

    Hi All,
    I want to use keybd_event() to send this third party virtual key called VK_OEM_CLR or 0xF5 to other application.
    Third party header file defined:
    #define VK_OEM_CLR 0xF5
    The application that sends the key:
    keybd_event(VK_OEM_CLR , 0, KEYEVENTF_EXTENDEDKEY, 0);//try this, but other application does not receive WM_KEYDOWN
    keybd_event(0xF5 , 0, KEYEVENTF_EXTENDEDKEY, 0);//try this, but other application does not receive WM_KEYDOWN
    The other application that will receive the sending key:
    LRESULT CALLBACK LLKbdProc(int nCode, WPARAM wParam, LPARAM lParam);
    HHOOK kbdhk;
    int quit = 0;
    HINSTANCE m_hHookApiDLL = NULL;
    typedef LRESULT (CALLBACK* HOOKPROC)(int code, WPARAM wParam, LPARAM lParam);
    typedef HHOOK (__stdcall *SetWindowsHookExW)(int, HOOKPROC, HINSTANCE, DWORD);
    typedef LRESULT (__cdecl *CallNextHookEx)(HHOOK, int, WPARAM, LPARAM);
    typedef LRESULT (__cdecl *UnhookWindowsHookEx)(HHOOK);
    static SetWindowsHookExW m_pfSetWindowsHook;
    static CallNextHookEx m_pfCallNextHook;
    #define WH_KEYBOARD_LL 20
    typedef struct {
    DWORD vkCode;
    DWORD scanCode;
    DWORD flags;
    DWORD time;
    ULONG_PTR dwExtraInfo;
    } KBDLLHOOKSTRUCT, *PKBDLLHOOKSTRUCT;
    void Dbg( TCHAR * lpszFormat, ... )
    TCHAR szOutput[1024];
    TCHAR * pOutput = szOutput;
    va_list v1;
    DWORD dwSize;
    // Now do the normal printf stuff...
    va_start( v1, lpszFormat );
    dwSize = ::wvsprintf( pOutput, lpszFormat, v1 );
    va_end( v1 );
    OutputDebugString(szOutput);
    _tprintf(szOutput);
    LRESULT CALLBACK LLKbdProc(int nCode, WPARAM wParam, LPARAM lParam)
    KBDLLHOOKSTRUCT *pKeyBoard = (KBDLLHOOKSTRUCT *)lParam;
    switch( pKeyBoard->vkCode )
    case 245://VK_OEM_CLR,0xf5,245
    switch(lParam)
    case WM_KEYDOWN:
    Dbg(_T("receives VK_OEM_CLR, hex 0xf5, decimal 245 on WM_KEYDOWN\r\n"));
    return 1;
    case WM_KEYUP:
    Dbg(_T("receives VK_OEM_CLR, hex 0xf5, decimal 245 on WM_KEYUP\r\n"));
    return 1;
    default:
    Dbg(_T("receives VK_OEM_CLR, hex 0xf5, decimal 245 \r\n"));
    break;
    return 1;
    break;
    default: // no processing on this key
    Dbg(_T("switch-case: Unknown key\r\n"));
    return m_pfCallNextHook( NULL, nCode, wParam, lParam );
    return 0;
    int main()
    m_hHookApiDLL = LoadLibrary(L"coredll.dll");
    if(m_hHookApiDLL != NULL)
    HINSTANCE appInstance = GetModuleHandle(NULL);
    m_pfSetWindowsHook = (SetWindowsHookExW)GetProcAddress(m_hHookApiDLL,L"SetWindowsHookExW");
    kbdhk = m_pfSetWindowsHook(WH_KEYBOARD_LL, LLKbdProc, NULL, 0);
    if (!kbdhk)
    Dbg(_T("WH_KEYBOARD_LL FAILED.\r\n"));
    return -2;
    //Dbg(_T("Message Pump... Listening...\r\n"));
    MSG msg;
    while(GetMessage(&msg, NULL, 0, 0) > 0)
    if (quit) break;
    TranslateMessage(&msg);
    DispatchMessage(&msg);
    return 0;
    The application that receives the key, always catch the virtual key for VK_OEM_CLEAR, but there is no WM_KEYDOWN.  Am I doing something wrong?

    That is it.. Thank you so much.  other cases I use wParam,
    but overlook for this case.

  • Iphone 5 not charging after using third party charger.

    I know there's a lot of threads that discuss this topic but I haven't found someone who has the exact situation as mine.
    I broke my original charging cable and replace it with a third party thunderbolt cable. It charges once by fluctuating all the time. Now my battery is 0% and the third party thunderbolt cable doesn't work. I decided to replace it with an original thunderbolt cable but it still doesn't charge. It doesn't show anything even the battery symbol. Just blank off screen. I also let it plugged as I hope that it just needs to charge the battery because it's drained but I guess that's not the case. I'm charging via the wall charger.  I also tried to connect it in the usb port of my computer and it still doesn't work. Any fixes that you guys can recommend? I am on a panic right now. . Technically this cable should work as this is the cable from apple. Thanks.

    Yes I'm well aware of patents but I have used third party chargers fine with all my previous iphones. I can buy replacement third party chargers to all my other electronics, why is it that apple has to tie me into using their charging cable, it is anti-competitive and possibly an illegal practice.
    If you aren't going to offer helpful advice, then please don't state the obvious!! I wasn't aware that cables were under warranty, so being in a position that I couldn't afford another apple charger I have used another charger which has by the looks of things broken my phone. So again can I do anything to try and fix it? Does anyone know whether I have a case against the manufacturer of the 3rd party cable? Is apple being anti competitive? Id appreciate helpful comments please.

  • How to do XMLDSig using third-party JCA providers?

    Hi all,
    Can anyone please let me know how to do XMLDSig using third-party JCA providers? The Sun XMLDsig documentation says that "A JSR 105 implementation SHOULD use underlying JCA engine classes, such as java.security.Signature and java.security.MessageDigest to perform cryptographic operations", but it doesn't say how to define the JCA provider programmatically. I don't want to change the Providers order in the security.properties file.
    Do we need to make any changes in the JCA provider classes to work with XMLDSig and XML encrypt?
    I'd appreciate your help.
    Joe

      How to identify whether the third party app has registered URL scheme or not. I also send a request mail to the third party app developers regarding URL scheme, but there is no reply from them.

  • Convert word document in PDF,e pub,by using third party dll in Sharepoint designer workflow 2013?

    Hi,
    I want to convert word document to PDF,  EPub, by using third party (.dll).
    In SharePoint designer workflow in 2013.
    So that I have question, Can we Install third party (.dll) in SharePoint workflow Designer for conversion?
    Means I have created one simple application conversion of word to e Pub, PDF, Image by using (Spire.doc dll) in Visual Studio.
    So this same conversion I want to work in SharePoint designer workflows?
    So anybody has any solution then please provide me.
    Thanks,
    Samadhan

    it might be worth looking at these CodePlex steps, that plug directly into the Word Automation Services.
    http://sp2010wordautomation.codeplex.com/
    It'll provide you with a configurable step like the below that should help you achieve your aims
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How to use Third Party DLL in Adobe Illustrator Plug In

    Hi Everyone,
    I want to design plug-in for Adobe illustrator CS6(64 bit). As first step I am referring sample plug ins from ../SDK/SampleCode. I am not getting how to use third party DLL in plug in.
    Please let me know how to refer C# DLL in illustrator plug in.
    Thanks in advance.

    There's no C# API for the Illustrator SDK, so your plugin must be C++ at the very least. That said, you can probably write a bridge if you need to call out to a C# library/DLL.

  • How can i telnet or get access to other LAN members in LAN without using third party software?

    I have admin access to the main  router in our LAN, so how can i telnet or get access to other LAN  members in LAN without using third party software?
    its linksys3500 router and  i login as admin using the gateway address in address bar..
    i  want to access the c drive of my colleague in same subnet in same  office and i know his ip address.but he not configured telnet accept  request.so without it how can i open his telnet port and access him

    I think you are using the wrong terminology. You can browse the hidden share of any pc if you know the ip and have a valid user account on the pc by typing in the following \\computername\c$ or \\ipaddress\c$ . It should prompt you for a user account. You may have to allow this through the windows firewall (or disable it completely).

  • Using third party jars with Oracle Business Rules

    Hi
    I am working on Oracle AS 10g release 2.
    We are using Oracle Business Rules in integration with Oracle BPEL.
    While using third party jars however, Oracle Business Rules end is facing errors.
    Error during unmarshallingProvider com.sun.xml.bind.ContextFactory_1_0_1 not found
    oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: com.sun.xml.bind.ContextFactory_1_0_1
    Dependent class: javax.xml.bind.ContextFinder
    Loader: oracle.xml:10.1.0_2
    Code-Source: /D:/oracleasr3/lib/xml.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in D:\oracleasr3\j2ee\home\oc4j.jar
    Can anybody help in figuring out where Jaxb jars(3rd party jars) are to be kept so that OAS access it?
    We tried using the applib folder to load the jars but we are getting class loading errors.
    When new instances are created, class loading is not happening.
    Pls help.
    Thanks
    Kavya

    Are you using Application Server Release 3 or Release 2? There are different versions listed in your mail.
    I think you probably want to add this as a shared library via EM and then import the shared library to your application with the application's xml config files.

  • Using third party tool to initiate a Forte batchprogram

    Hello Forte Users,
    Our company has acquired a software product called Maestro. It's a
    production scheduling facility that manages tasks for batch mode execution.
    We would like to know if anyone out there has had any experience using this
    product with Forte. One recommendation that we discussed was to have
    Maestro start a script on Escript to communicate to an agent that would
    start the batch process at a specified time. Has anyone done something
    similar or can offer any suggestions ?
    Thanks in advance,
    Jean Mercier
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Jean,
    We use Maestro for all our scheduling scripts. To start\stop the
    environment and start\stop applications. We create a shell script that uses
    escript to start/stop applications. Maestro just calls the shell scripts
    and monitor it for completion. I think you have to write the shell script
    in a standard way to return an error if it does not finish properly. Here
    is an example:
    #!/bin/csh
    source /appls/forte/fortedef.csh
    $FORTE_ROOT/install/bin/start_nodemgr -fm "(x:300000)" -e TR2ProdEnv
    ps -fu forte | grep -v grep|grep nodemgr>/appls/forte/production/scripts/KBB
    set KBB=/appls/forte/production/scripts/KBB
    if (-z $KBB) then
    exit 1
    else
    exit 0
    endif
    Hope this helps.
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Jean Mercier[SMTP:[email protected]]
    Sent: Monday, April 12, 1999 10:36 AM
    To: Forte-Users (E-mail)
    Subject: Using third party tool to initiate a Forte batch program
    Hello Forte Users,
    Our company has acquired a software product called Maestro. It's a
    production scheduling facility that manages tasks for batch mode
    execution.
    We would like to know if anyone out there has had any experience using
    this
    product with Forte. One recommendation that we discussed was to have
    Maestro start a script on Escript to communicate to an agent that would
    start the batch process at a specified time. Has anyone done something
    similar or can offer any suggestions ?
    Thanks in advance,
    Jean Mercier
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Using third party keyboards in native Apple apps on iOS 8

    Hello,
    I have an iPhone 5S, running iOS 8(and recently installed 8.0.2).  I was excited about getting to use third-party keyboards, but for some reason it is not working for me.  For whatever reason, I can use these keyboards (I've tried many, all to the same effect) in other apps such as Chrome or Facebook, but on any of the native Apple apps (Notes, Reminders, but especially Messages and Mail where typing is most needed) I am unable to select them.  In fact, the little globe you click and hold to make the different keyboards come up isn't even on my keyboard.  I've looked around a little and tried some fixes (uninstalling and reinstalling, deleting all other keyboards, restarting the phone, turning off AssistiveTouch, etc.) but have had no luck.  Has anyone else experienced this, and more importantly, has anyone found a solution?  I was hoping the 8.0.2 might address it but nothing has changed.
    Thank you!

    I'm having the same issue. IPhone 5S has third party keyboards working in safari but not other apps (8.02). IPad with 8.02 has them working everywhere. Any ideas?

  • Currency Conversion using third party tool

    Hi,
    I am trying to access BW from a third party tool and so far been quite successfull accessing BW Infocubes and Bex Queries by using OLAP BAPIs. However my customer wants to use currency conversion as it is available in BEX in the third party tool as well. I need some thoughts in this direction from experts who have worked on Business Objects and BW integration.
    I believe Business Objects has a similar interface with BW using OLAP BAPIs. Is there a currency conversion functionality available in Business Objects for BW? Would really appreciate if somebody, who has tried out this feature, can share some of his/her experience.
    Thanks,
    Anurag.

    Jean,
    We use Maestro for all our scheduling scripts. To start\stop the
    environment and start\stop applications. We create a shell script that uses
    escript to start/stop applications. Maestro just calls the shell scripts
    and monitor it for completion. I think you have to write the shell script
    in a standard way to return an error if it does not finish properly. Here
    is an example:
    #!/bin/csh
    source /appls/forte/fortedef.csh
    $FORTE_ROOT/install/bin/start_nodemgr -fm "(x:300000)" -e TR2ProdEnv
    ps -fu forte | grep -v grep|grep nodemgr>/appls/forte/production/scripts/KBB
    set KBB=/appls/forte/production/scripts/KBB
    if (-z $KBB) then
    exit 1
    else
    exit 0
    endif
    Hope this helps.
    ka
    Kamran Amin
    Forte Technical Leader, Core Systems
    (203)-459-7362 or 8-204-7362 - Trumbull
    [email protected]
    From: Jean Mercier[SMTP:[email protected]]
    Sent: Monday, April 12, 1999 10:36 AM
    To: Forte-Users (E-mail)
    Subject: Using third party tool to initiate a Forte batch program
    Hello Forte Users,
    Our company has acquired a software product called Maestro. It's a
    production scheduling facility that manages tasks for batch mode
    execution.
    We would like to know if anyone out there has had any experience using
    this
    product with Forte. One recommendation that we discussed was to have
    Maestro start a script on Escript to communicate to an agent that would
    start the batch process at a specified time. Has anyone done something
    similar or can offer any suggestions ?
    Thanks in advance,
    Jean Mercier
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • I have admin access to the main router in our LAN, so how can i telnet or get access to other LAN members in LAN without using third party software?

    I have admin access to the main router in our LAN, so how can i telnet or get access to other LAN members in LAN without using third party software?
    its linksys3500 router and  i login as admin using the gateway address in address bar..
    i want to access the c drive of my colleague in same subnet in same office and i know his ip address.but he not configured telnet accept request.so without it how can i open his telnet port and access him

    Duplicate post. 

Maybe you are looking for

  • 'Unknown Error' when trying to save files from CS under Leopard

    We recently upgraded to Leopard, and reinstalled our CS apps. Photoshop and InDesign work fine. Illustrator, however gives us an 'An Unknown Error has Occurred' when trying to save any file. After dismissing the alert, a window pops up, informing us

  • Problem Viewing Flash Exposure Data in Bridge

    Hi Folks When I view flash exposure data on my camera it will show me the flash compensation value I have set eg -0.7 or +2. When I download the images and view the metadata in Adobe Bridge (from CS3) I appear to lose this information. It will tell m

  • Dump analysis in Hierarchical ALV

    Hi Experts, I am creating an output in hierarchical ALV list display, where I get runtime error. error comes in the statement of standard program.   read table t_outtab_master with key ( rs_layout-expand_fieldname ) = 'X'.    This is the standard cod

  • Unable to install Mac OS X Lion after resetting

    I've got a secondhand Macbook Air that I've been trying to wipe the memory out of. I was successful in resetting it, but I had forgotten to update the system before resetting it. After resetting it, I tried installing Mac OS X Lion through Recovery.

  • Bottom align menu on public site using CSS

    I am working on the design of a public site and am attempting to get the navbar menu to bottom align so that it sits neatly on top of the content zone below and is bottom aligned with my logo.  I'd like to accomplish this using CSS.  You can see the