How do I enable the use of a USB MIDI controller over ARD?

I'm running Ableton Live on my Macbook Pro and I'm controlling the MBP with my little Macbook. OK - all well and good. Full keyboard/trackpad control. The problem is that when I plug my uc-33e controller into the Macbook, the commands do not get through! How do I go about enabling this?

You are not going to be able to connect a controller to your MacBook and have that controller accessed by your MacBook Pro. That's just not possible, with any remote control software I know of and certainly not with ARD. You're going to have to connect the controller directly to the MBP for applications on that system to be able to access the hardware, unless the developer of the app or the controller provide some sort of remote access capability, something I've never seen.
Regards.

Similar Messages

  • How do I enable the backlit keyboard on my mid 2010 13" MBP?

    How do I enable the backlit keyboard on my mid 2010 13" MBP? running Windows 8.1? I DO have the latest Apple Support Files downloaded and installed. Everything works except for the illumination of the keyboard and the brightness controls. OS X version is Mavericks.

    windows8.1 dont have official support so if it works with win8 then likely it will again when official support for win8.1 comes

  • How do I enable the use of the LinkedIn Job Insider toolbar for Firefox?

    I heard through a LinkedIn article that job seekers can use this browser tool through Firefox for free, but I can't figure out how or where to locate it, and add it.

    Thank you! That cleared up my question, and why I couldn't figure out how to do it.

  • How do I enable the startup sound on Mac OS 10.2.8(Jaguar)

    Three things
    1.How do I enable the startup sound on Mac OS 10.2.8(Jaguar)
    I am using an iMac G4
    I like the startup chime of mac osx but it doesn't seem to be chiming when I turn the computer on.
    2. How do I get safari+flash player  on 10.2.8
    3. How do I update the computer (e.g. Windows update kind off thing)
    Please help.
    Cheers,
    Mittens131

    1. Make sure the volume is on. Check that the machine makes other sounds.
    2. Here is a link for Safari for a Mac 10.2.8
    http://support.apple.com/kb/HT2964
    Though I'd be surprised if it would be very useful. Things have changed a lot on the internet since that came out. An old version of Firefox might be better. I don't know where you would get an old version of flash. It is an Adobe product.
    3. There are no further updates to  Jaguar 10.2 than you already have, 10.2.8 that was the last update.

  • How do I enable the Java Accessibilty Stuff?

    Hi. I'm trying to make my application accessible via a screen reader to impaired users. Unfortunately, I'm not having any success whatsoever. If I didnt know Java had accessibility stuff built-in, I would assume that it was just not compatible at all with screen reader technology.
    How do I enable the Java accessibility stuff so that UI components are accessible to a screen reader; they can be iterated over and get sensible names and/or descriptions of them?
    I wrote a simple application, attached below, which just makes a demo UI from which I can start learning the basics of the accessibility stuff. Out of the box, the UI is completely opaque to a screen reader (I'm using the VoiceOver utility bundled with Mac OS X, which does ok with normal applications).
    I tried setting things focusable to no avail, voice over cant cycle through the UI component using the normal keyboard short cuts, and nothing is spoken when I tab between components, despite some things having natural labels, like a menu, and some things, like the button, where i've set the accessible name and description on the accessible context of the component.
    Obviously, I'm doing something wrong or I just don't understand how the accessibility stuff works.
    Could someone please shed some light on this so that I can make my application accessible to a screen reader?
    Thanks.
        private static void try508Example() {
            JFrame aFrame = new JFrame();
            JMenuBar aMenuBar = new JMenuBar();
            JMenu aMenu = new JMenu("Test");
            aMenu.setMnemonic(KeyEvent.VK_T);
            JMenuItem aItem1 = new JMenuItem("Test Item 1");
            aItem1.setFocusable(true);
            aItem1.getAccessibleContext().setAccessibleName("Test Item 1");
            aItem1.getAccessibleContext().setAccessibleDescription("Test Item 1 Description");
            JMenuItem aItem2 = new JMenuItem("Test Item 2");
            JMenuItem aItem3 = new JMenuItem("Test Item 3");
            aMenu.add(aItem1);
            aMenu.add(aItem2);
            aMenu.add(aItem3);
            aMenuBar.add(aMenu);
            aFrame.setJMenuBar(aMenuBar);
            JTabbedPane aTabPanel = new JTabbedPane();
            aTabPanel.setFocusable(true);
            JTextArea aTab1Comp = new JTextArea();
            JScrollPane aTab2Comp = new JScrollPane(new JTree());
            aTabPanel.addTab("Tab1", aTab1Comp);
            aTabPanel.addTab("Tab2", aTab2Comp);
            JTree aTree = new JTree();
            aTree.setFocusable(true);
            JLabel aLabel = new JLabel("some label");
            aLabel.setLabelFor(aTree);
            aLabel.setFocusable(true);
            JScrollPane aScrollList = new JScrollPane(new JList());
            aScrollList.setFocusable(true);
            JButton aBtn = new JButton("Button");
            aBtn.setFocusable(true);
            aBtn.getAccessibleContext().setAccessibleName("Button Name");
            aBtn.getAccessibleContext().setAccessibleDescription("Button Description");
            JPanel aContent = new JPanel(new BorderLayout());
            aContent.add(aTabPanel);
            aContent.add(aBtn, BorderLayout.NORTH);
            aContent.add(aScrollList, BorderLayout.EAST);
            aContent.add(aTree, BorderLayout.WEST);
            aContent.add(aLabel, BorderLayout.SOUTH);
            aFrame.setContentPane(aContent);
            aFrame.setSize(640, 480);
            aFrame.setVisible(true);
            aFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        }

    Ok, so a very curious issue. If I comment out adding the menu bar to the window, ie comment out this line:
    aFrame.setJMenuBar(aMenuBar);
    The screen reader reads me back everything just like I would expect. I comment the line back in, and nothing, the application is completely invisible to the screen reader.
    Anyone have any idea what this is about?

  • How do I enable the GD library in OAS 10.1.2 ?

    I am running OAS 10.1.2 on HP UX 11i 64 bit.
    OAS 10.1.2 supports PHP, but the image function does not work. The imagecreate function gives the error:
    Call to undefined function: imagecreate()
    According to www.php.net, image functionality requires the GD library and one
    is bundled since PHP 4.3. OAS 10.1.2 has PHP 4.3.9 so I assume that GD is
    available.
    But how do I enable the GD library?
    Herman

    In php.ini look for extension_dir, make sure it points to somewhere that exists and then further down you will see Dynamic Modules set out a little like this...
    ;extension=php_gd2.dll (Windows)
    For installation (Quote from PHP Manual)...
    To enable GD-support configure PHP --with-gd[=DIR], where DIR is the GD base install directory. To use the recommended bundled version of the GD library (which was first bundled in PHP 4.3.0), use the configure option --with-gd. GD library requires libpng and libjpeg to compile.
    In Windows, you'll include the GD2 DLL php_gd2.dll as an extension in php.ini. The GD1 DLL php_gd.dll was removed in PHP 4.3.2. Also note that the preferred truecolor image functions, such as imagecreatetruecolor(), require GD2.

  • HT1766 how do i enable the mini ipad which is disabled

    How do I enable the ipad mini which is disabled right now

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.

  • How can I enable session(using url)  tracking in home page

    i am developing bidding application. How can I enable session(using url) tracking in home page ?
    for example :
    http://mydomine.com/index.jsp;jsessionid=4A38A4496F6862681DFD09CD6D648485.tomcat75
    please help me.

    Doubleposted. Please continue here: [http://forum.java.sun.com/thread.jspa?threadID=5308686&tstart=0]
    In the future, do not use the back button to edit the message, but use the edit button instead. Otherwise you're reposting the form again. You should know that better as being a web developer.

  • How do I enable the flip/flop image button in the geometry room?

    How do I enable the flip/flop buttons in the geometry room. A noob question to be sure, but I just can't figure it out. The buttons are grey, and won't respond when I click on them.
    I shot on the HVX using the brevis adaptor, so the footage is all upside down. In FCP I corrected this, but upon importing the project into Color, the images were upside down again. Do I need to re-flip them in color for the final output? Or will they automatically be subject to the effects already in my time line when I export back to FCP? Either way I'd like to temporarily flip them in Color so I don't have to stand on my head while color correcting.
    Anyone out there who can clue me in?

    Use FCP... the geometry in COLOR was never meant to be more than a convenience, sort of... Final Touch always ignored everything in the Motion tab until recently, with ambiguous results. Now one doesn't really know where the flips flops and flies are coming from unless you've done them yourself but I do notice that keyframed geometry-composed camera moves rarely import or export correctly, and interlace is poison.
    jPo

  • How can I enable the automated drop down for the subject line on the email page

    How can I enable the automated drop down for the subject line on the email page as I send more than 300 emails everyday with the same subject line. Before it use to happen in my gmail account but now its not. Please help me as its increasing my work time because I have to type the subject line again and again on each email I send. Please help me guys.

    This is usually caused by one or more bookmarks having a long title.
    You can check that folder in the Library and shorten long names.
    * Bookmarks > Show Al Bookmarks
    *Bug 626066 - History, Bookmarks menus too wide because of pages with long titles on 64bits
    <i>Please do not comment in bug reports: https://bugzilla.mozilla.org/page.cgi?id=etiquette.html</i>

  • How do I enable the microphone on the iPhone5

    how do I enable the microphone on the iPhone5?  Since the last os update, I've lost the ability to use the microphone

    first time doing this....got it!  turned off the phone and restarted, plus, deleted lots of notes...guess I take too many notes!  All is fine now

  • How do I enable the eliminate browsing history on my IPad? Thanks

    How do I enable the remove browsing history function on my IPad?
    thanks

    If you want to clear your browsing history use Settings > Safari > Clear History.
    To turn on "Private" browsing touch the URL field and then touch "Private" at the upper-left of the keyboard.

  • How do i enable the backlit keyboard

    How do I enable the keyboard to light up?

    Mufn8r wrote:
    The box the MacBook came in states "13-inch LED-backlit widescreen notebook". What is this referring to?
    Hi That indicates that the LCD screen uses LEDs to provide backlighting as opposed to the older technology Fluorescent tubes.
    Stedman

  • How do I enable the rotate screen on iphone 4?

    How do I enable the rotate screen on my iphone4, I some how locked it?

    The problem was created when Apple added the "swipeup" feature to your home screen (ios7).  When you swipe up to bring up those often used functions like camera, calculator, etc, it is WAY too easy to accidently touch the Portrait Lock button near the top of the screen. There is a row of round buttons there to turn off or on various functions; the one on the far right is portrait on or off. If you want your screen to rotate for you, the button must be black: white freezes the screen so it won't rotate. I have the wi-fi and bluetooth white (on), but the others are black (off).

  • How can i enable the airport extreme that is built-in on my mac mini model 2010

    I need some help in how can I enable the airport extreme that is built-in my mac mini 2010 model ?   I tried and download the airport extreme 802.11n enabler for mac and it tells me Your computer does not meet the hardware requirements for this update.  please help me

    Wireless is already enabled. Just turn it on using the Finder's menubar icon or using Network preferences.

Maybe you are looking for