Import midi  and play to external midi

When I import a mid(i) file, it creates all the tracks and plays back through the system output. What I would like to do is play it to my USB attached external midi device.
I can do this by moving individually each track to a newly created External Midi type track but was hoping for an easier/faster way.

Stale

Similar Messages

  • Load and play different external MP3

    I wanted to do something I thought was simple - I wanted to have a sound playing (loaded external mp3) and then have various buttons on the screen that load an alternate song in its place.  Could someone please help me?
    This is what I'm trying to do:
    var myMusic:Sound = new Sound();
    var reqMyMusic:URLRequest = new URLRequest("mySong.mp3");
    myMusic.load(reqMyMusic);
    myMusic.play();
    music1_btn.addEventListener(MouseEvent.CLICK, music1);
    music2_btn.addEventListener(MouseEvent.CLICK, music2);
    function music1(event:Event)
        // LOAD AND PLAY A DIFFERENT MP3 (in place of mySong.mp3)
    function  music2(event:Event)
        // LOAD AND PLAY A DIFFERENT MP3 (in place of mySong.mp3)

    use:
    var myMusic:Sound = new Sound();
    var reqMyMusic:URLRequest = new URLRequest("mySong.mp3");
    myMusic.load(reqMyMusic);
    var sc:SoundChannel = myMusic.play();
    music1_btn.addEventListener(MouseEvent.CLICK, music1);
    music2_btn.addEventListener(MouseEvent.CLICK, music2);
    function music1(event:Event)
    sc.stop();
    myMusic = null;
    myMusic=newSound();
    myMusic.load(new URLRequest("whatever"));
    sc=myMusic.play();
    function  music2(event:Event)
    sc.stop();
    myMusic = null;
    myMusic=newSound();
    myMusic.load(new URLRequest("whatever"));
    sc=myMusic.play();

  • Computer shuts down when importing CDs and playing video

    When in iTunes, my computer completely shuts off a couple mintues in when trying to import a CD or play video. I have asked around and reinstalled and nothing seems to help. Any ideas! Very frustrating.

    I just started having the same problem. I was able to import songs from 5 cds with no problem, but when I tried a few more my mac started shutting down about halfway through the import of the song. It doesn't matter how many songs I choose to import, it happens on the first one everytime. Did you find a fix for this?

  • Can`t configure plug in and play usb external mic,

    i think i need to download software, but don`t know how to download the software or where to find the software i need, can any one help thank you.
    This question was solved.
    View Solution.

    Hi,
    Please enable External Mic then try again (For Windows):
    Right click the speaker icon,
    Select Recording devives
    Right click it and Enable
    Regards.               
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Weird issue with loading and playing videos externally - URGENT

    I have a project I'm working on where I have an FLV Playback
    component on the stage, with thumbnail buttons below to create sort
    of a video gallery. When the user clicks on each of these buttons,
    a different FLV file will load in the FLV Playback component, which
    currently works GREAT when previewing in Flash.
    I'm using the following code to link the button input with
    the FLV component on the stage:
    btn_Audi.onRelease = function() {
    videoPlayer.contentPath = "Audi.flv";
    btn_Bridgestone.onRelease = function() {
    videoPlayer.contentPath = "Bridgestone.flv";
    However, when I go to Publish to a folder to upload to the
    web, I go to click on one of the thumbnails and the video never
    loads. I get the controller bar sitting there scrolling the
    barber-shop style colors, but no video loads. I've checked,
    re-checked, and triple-checked to make sure ALL the necessary files
    are in the directory (since it seems like it's having some issue
    finding or loading the video file(s)). I'm completely out of ideas
    and need to know if anyone has any thoughts as to what it could be.
    Oh, and should it matter that I have this videoPlayer
    component "buried" inside the project, as in Scene 1 > movieClip
    > movieClip > videoPlayer ? I wouldn't think it would... but
    maybe?
    Thank you so much in advance -
    Michael

    Hello Michael,
    Did you ever resolve why your videos weren't loading? I'm
    having exactly the same problem right now, and it's driving me
    nuts. The application runs fine on my development network, but only
    displays my loader bar on the live web server. I've triple-checked
    everything I can think of, but everything seems fine.
    Any advice or anything you might remember would sure be
    appreciated.
    Best,
    Paul

  • Trying to properly code a menu with buttons that can go back and forth between external swf files

    I have a project I've been working on that, when properly coded, has a "main menu" with 4 "doors" (buttons). When the corresponding buttons to these "doors" are clicked, it should go to and play an external .swf file. If that doesn't make sense, think of a DVD menu. You click play movie, it plays the movie. When the movie is over, there's two buttons on that swf file to either play the movie over or go back the main menu, which is an external .swf file (Remember, we go to the movie from the menu, which is a seperate file). So far, the buttons work. The menu works. However, from the movie, at the conclusion, when I click the button to go back to the main menu, it displays the movie clip and the buttons, but none of the buttons work. I'm starting to think it has to do with the fact the main menu was written in AS3 and the movie was made in AS2. If anyone can assist me in being to able to keep both files and still navigate between the two, being able to bring up the menu from the movie and be able to play the movie again, and so on and so on, that'd be GREAT. I'm somewhat of a noob to Flash, but I learn quickly and I'm open to any suggestions. Here's the code for main menu, which I guess acts as the parent file, and the movie. If I get this to work, I essentially would duplicate the same actions for the other 4 doors, once I complete the environments for them. Thanks
    Main.Fla/Swf (written in AS3)
    (This is the action on the first frame, that has all the buttons. For this question, I'm just trying to properly code for 'Door4', which is the "door" to the movie.)
    import flash.display.Loader;
    stop();
    var myLoader1:Loader=new Loader ();
    Door4.addEventListener(MouseEvent.CLICK, jayzSwf);
    function jayzSwf(myevent1:MouseEvent):void
              var myURL1:URLRequest = new URLRequest("jayzspeaks.swf");
              myLoader1.load(myURL1);
              addChild(myLoader1);
              myLoader1.x = 0;
              myLoader1.y = 0;
    Movie.Fla/Swf (written in AS2)
    (This is action on the button that returns to the menu)
    on (release) {
              this.createEmptyMovieClip("container",this.getNextHighestDepth());
              container.loadMovie("main.swf");

    At least you're going in the correct (mis)direction. You have AS3 loading AS2. So that's not a huge hurdle.
    I believe all you really need to do is send your Main.swf a signal that the content it loaded (e.g. jayzspeaks.swf) is done and you want to get rid of it.
    The code I pointed you to asks you to (upon download and import then) instantiate it in both AS2 and AS3. They give a very simple easy to understand line of code.
    // as2, load this in jayzspeaks.swf
    var myBridge:SWFBridgeAS2 = new SWFBridgeAS2("connectionID", clientObj);
    // as3, load this in main.swf
    var myBridge:SWFBridgeAS3 = new SWFBridgeAS3("connectionID", clientObj);
    Make sure the connectionID matches between them. Set it to whatever you want.
    When you're done with your as2 loaded content you'd send a signal (over localconnection) back to the AS3 Main like they say:
    myBridge.send("someFunctionToUnloadContent");
    myBridge.close();
    You'd need to make the as3 function "someFunctionToUnloadContent()" (example purposes only name) and it should unload the jayzspeaks.swf that was loaded in the loader.
    Make sure you get that close in there so you don't drill up a bunch of localconnection objects just like the simple source code says.

  • How can some CD's import Ok and some import and have no sound?

    I have been importing songs from CD's - some import correctly and play perfectly. Some CD's import, but they are only a few Kbs and there is no sound when they play back. Does anybody know why this is happening? It's driving me up the wall! Help!
      Windows XP  

    hello, this is a support forum for the firefox browser - the issue you've described isn't really related to that though...
    however it sounds as if you've uninstalled the driver for your audio device. in order to fix this, go to the support section of your device's manufacturer and browse for drivers for your hardware model, download the audio drivers available and reinstall them.

  • HT4622 How to import .band and .mid files into GarageBand for iOS

    Using GarageBand for MacOS X, I have no difficulty importing and playing .mid (MIDI) files.  Indeed, I can even rename .kar (Karaoke) files to .mid, import them into GarageBand for MacOS X and see the lyrics along with the score.  Using File Sharing for iOS apps in iTunes.app, I have tried to import .mid and .band files (made from .mid files with GarageBand for MacOS X) using this mechanism.  I get no errors but it doesn't seem to work.  That is, neither the .band file nor the .mid file are accessible from within GarageBand for iOS as far as I can tell.  What should I be doing instead?

    As I understand it GarageBand for iOS .band projects can be imported to GarageBand for OS X, but the reverse isn't true. GarageBand for iOS does not import midi files.
    The File Sharing section of iTunes doesn't validate the files you put into it, but if the app doesn't like the structure of the file it will just ignore it.
    tt2

  • Can Garage Band play an external MIDI synth?

    Can Garage Band play an external MIDI keyboard?
    I have an external MIDI keyboard/synth.
    In Garage Band Preferences I’ve set Input Device and Output Device to my external MIDI keyboard.
    I can play the external keyboard with Garage Band in Record mode and it records just fine.
    However, when I select Garage Band to play, nothing plays on the external keyboard.
    I can set the Output Device to Build-In Output and Garage Band plays the software synth on my computer just fine.
    Can Garage Band play an external MIDI keyboard?
    -Mike

    Thanks lenoie
    What I'm hoping for is for Garage Band to send MIDI out to the external keyboard.
    Does anyone know if Garage Band can do this?
    Thanks :-)

  • Cannot import MIDI by drag and drop from Finder

    Cannot import MIDI by drag and drop from Finder. Try a MIDI file from http://rock.mididb.com/beatles/ and see if it works for you.

    http://discussions.apple.com/message.jspa?messageID=10048387#10048387 worked.

  • My mid 2010 macbook pro keeps freezing/crashing every time I try and play a game. Any help?

    Every time I try and play either WoW or The Sims, my mac goes to black screen, or black screen and repeating last second of noise it was playing. I haven't upgraded to Lion and am still using Snow Leopard(??). I am by no means the most tech savvy girl in the world, but would appreciate any help, as this is driving me insane!! Thanks!!!

    I don't know if it would help, but this is all the whoo haa from the last panic report thing. (about 5ish minutes ago)
    I don't really know what any of it means, but if someone could help me decipher and tell me if there's anything I can do, I would be super grateful. (before I go into apple, that is)
    Interval Since Last Panic Report:  170794 sec
    Panics Since Last Report:          12
    Anonymous UUID:                    183CC60C-368A-4CB3-969E-742E66A22BD0
    Tue Jul 31 00:02:15 2012
    panic(cpu 3 caller 0xffffff7f859a4c85): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80a44d7000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff8080913260 : 0xffffff800521d5f6
    0xffffff80809132d0 : 0xffffff7f859a4c85
    0xffffff8080913360 : 0xffffff7f85a9e5b7
    0xffffff80809133c0 : 0xffffff7f85a9e62b
    0xffffff8080913430 : 0xffffff7f85db3883
    0xffffff8080913570 : 0xffffff7f85ac475d
    0xffffff80809135a0 : 0xffffff7f859ae9e6
    0xffffff8080913650 : 0xffffff7f859aa0b8
    0xffffff8080913840 : 0xffffff7f859ab2e4
    0xffffff8080913910 : 0xffffff7f86a0ec65
    0xffffff8080913b50 : 0xffffff7f86a05842
    0xffffff8080913ba0 : 0xffffff8005664929
    0xffffff8080913bc0 : 0xffffff8005665ed0
    0xffffff8080913c20 : 0xffffff80056638ef
    0xffffff8080913d70 : 0xffffff80052981a1
    0xffffff8080913e80 : 0xffffff8005220abd
    0xffffff8080913eb0 : 0xffffff8005210448
    0xffffff8080913f00 : 0xffffff80052195fb
    0xffffff8080913f70 : 0xffffff80052a5ad6
    0xffffff8080913fb0 : 0xffffff80052ced13
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(8.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f8593d 000->0xffffff7f85c3ffff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f85929000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f858e6000
             com.apple.nvidia.nv50hal(8.0)[9CD95A4A-FD94-349E-A4B6-FC3B74E197F5]@0xffffff7f8 5c4d000->0xffffff7f85f6ffff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f859 3d000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
             com.apple.GeForce(8.0)[91C40470-82BA-329A-A9D7-4C70F28275FD]@0xffffff7f869b7000 ->0xffffff7f86a79fff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f859 3d000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[E37F420A-B5CD-38ED-9441-5247583B6ACE]@0xff ffff7f85929000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f858b2000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[5D671681-D21B-3CCA-9810-B15E648C1B27]@0 xffffff7f858e6000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12A269
    Kernel version:
    Darwin Kernel Version 12.0.0: Sun Jun 24 23:00:16 PDT 2012; root:xnu-2050.7.9~1/RELEASE_X86_64
    Kernel UUID: 8D5F8EF3-9D12-384B-8070-EF2A49C45D24
    Kernel slide:     0x0000000005000000
    Kernel text base: 0xffffff8005200000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 72896041557
    last loaded kext at 62945728148: com.sophos.kext.sav          8.0.4 (addr 0xffffff7f87578000, size 24576)
    loaded kexts:
    com.sophos.kext.sav          8.0.4
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f8
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDAHardwareConfigDriver          2.3.0f2
    com.apple.driver.AppleHDA          2.3.0f2
    com.apple.driver.AppleMikeyDriver          2.3.0f2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.6
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.GeForce          8.0.0
    com.apple.driver.AppleMuxControl          3.2.6
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHDGraphics          8.0.0
    com.apple.driver.AppleIntelHDGraphicsFB          8.0.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.IOBluetoothUSBDFU          4.0.9f8
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleUSBTCKeyEventDriver          235.4
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.0
    com.apple.driver.AppleUSBHub          5.1.6
    com.apple.driver.AirPort.Brcm4331          600.15.20
    com.apple.driver.AppleFWOHCI          4.9.5
    com.apple.driver.AppleAHCIPort          2.4.0
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleUSBEHCI          5.1.5
    com.apple.driver.AppleUSBUHCI          5.1.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.0f2
    com.apple.iokit.IOAudioFamily          1.8.9fc9
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.2
    com.apple.iokit.IOBluetoothFamily          4.0.9f8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.driver.AppleGraphicsControl          3.2.6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleHDAController          2.3.0f2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.iokit.IOHDAFamily          2.3.0f2
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleSMC          3.1.3d11
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleUSBMergeNub          5.1.5
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.0
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBFamily          5.1.6
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x80AD, 0x484D54313235533642465238432D47372020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK5055GSXF, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 37.9 MB
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0xfa113000 / 7
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa130000 / 4
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0xfa120000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

  • Roland MC500 into logic - setting tempo for imported midi data

    My mate has an Roland MC500, where he's programmed multi-tracked midi info for songs etc, and we've sussed how to import the channels into separate regions in logic.
    We've set the tempo as per the tempo on the MC500, but after importing the track, after a certain length of time the tempo goes out of sync. All the midi data has come across, and when assigning soft-synths etc it plays fine, but just moves out of tempo.
    Is there a way that, when you have imported midi data in this way, you can ask logic to confirm/set the tempo?
    I've had a read thru the manuals etc, but may have missed where it describes that bit?
    Thanks for any advice.
    andy

    yes...
    you need to set the MC500 to send the MMC over its MIDI outs... than in Logic you must set th sync "Blue button"
    the picture shows MTC but if you scroll down the menu you will find MMC settings... that must be turned ON on Logic settings Synchronization.
    Logic must be setted as Slave... because Roland device is the slower one!
    G

  • $5 Starbucks card to first successful answer: how to import midi timecode into Logic Express 9 from Roland VS-880 or Ensoniq ASR-10

    I will literally mail a $5 Starbucks card or gift $5 via paypal to the first person whose response gets me success.  Then after all responses are provided and I'm successful with my issue, I'll also raffle off $5 to one of ALL respondents by random pick. 
    Problem/question:
    I can't figure out how to import midi timecode data from either an Ensoniq ASR-10 or Roland VS-880 Vxpanded into Logic Express 9, so I can then use Logic Express 9 as the master.  No manuals seem to explain that; I just can't find it.
    Background/basics:
    1.  My ultimate goal will be to move all midi data from the Ensoniq ASR-10 floppies and all digital audio files from the VS-880 into Logic Express 9.  Once the midi timing is imported into a Logic Express 9 file, I'll import the data from the Ensoniq & Roland via steps 2a & 2b below.
    1a.  Ten years ago I somehow (am in the process of re-learning what I did 10 years ago) imported the midi timing into the Roland VS-880 Vxpanded from the ASR-10, and then used the VS-880 as the Master to control the ASR-10.   So my current status is that I use the Roland VS-880 as the master, and the Ensoniq ASR-10 as the slave.
    2.  FYI for anyone who might be in the same boat, wanting to transfer stuff from an Ensoniq ASR-10 and Roland VS-880 to the computer:
    2a.  I will import all midi sequence data from my ASR-10 floppy disks via a utility purchased here, which will all a PC to read Ensoniq-formatted disks, and then just hopefully cut/paste midi files into Logic Express 9 (FYI only):  www.chickensys.com
    2b.  Then will import all the individual WAV files from my Roland VS-880 to Logic Express 9 using a method learned here (FYI only): http://www.vsplanet.com/ubbthreads/ubbthreads.php?ubb=showflat&Number=985974&PHP SESSID=b1d2f57be4a1d37d49787400213b22df
    2c.  I'll then combine them all into Logic Express 9.
    So - how the heck do I capture/import the midi timecode into Logic from either the roland or ensoniq using midi?
    I'm don't think that cutting/pasting the midi data into a Logic Express 9 sequence file (step 2a above) will do that, because there are all kinds of tempo & time signature changes in the midi files unfortunately.
    THANK YOU and Merry Christmas!!
    Andy

    OK doesn't look possible.  Closing discussion. 

  • Having problem importing midi files.

    Hello everyone,
    I am having trouble importing midi files in GB. Every time I do all I get is a single insrument, and not the whole midi file as it was when I downloaded it. I tried Dent du midi and cant even get that to work. It looks like it is working, but never seperates the tracks. I would really like to be able to pick apart midi files. Anyone have any ideas. This is my first Apple, but I have been a PC Tech for 8 years now. (I Hate PCs, I love the Mac)

    Welcome to the forum. Yes, sometimes these issues occur. Since I am the biggest importer of MIDI files to GB3, I will see what I can do for you.
    First, when you wish to import a MIDI, drag the file onto an empty area (ie no tracks) of the GarageBand window. Hold until you see a + sign. Drop, and you should see the tracks appear.
    How did you obtain the MIDI file? From the Net? How did you save it? What were the steps?
    Do you have Quicktime Pro? Sometimes the way you save a MIDI file will make a difference. You have a choice between "save as movie" or "save as source", and I believe the latter works best.
    Has it worked for other MIDI files? Or is one or two giving you issues? Perhaps if you can post a link to the MIDI file, I can have a look at it.

  • Importing .midi files into iTunes library

    Hello! Can anyone please tell me how to import .midi files into my iTunes library, then convert those files into .mp3 to burn onto a CD?
    Thank you for your help!

    Does this midi file play elsewhere?
    I am getting the file from another location on my hard drive, not from a CD.
    Doesn't matter. File -> Add file to library will work if the file is compatible.
    Also, when trying to change the import settings, it seems to be for importing from a CD, not from another file location.
    It is for importing or converting.

Maybe you are looking for

  • Movies don't display on ipod

    Hi, I have a problem moving some movies from itunes to ipod. When i try to move a movie form iTunes to ipod it don't work but it don't tell me that there is an error or problems. Simply my ipod ignores it like if it doens't exists also. Please help m

  • Character '$' is not allowed in an XML tag name. /ERROR

    Hi, I was testing cli command java OracleXML getXML .... getting following error result: <?xml version = '1.0'?> <ERROR>oracle.xml.sql.OracleXMLSQLException: Character '$' is not allowed in an XML tag name.</ERROR> This was because the database colum

  • I have been on hold on your chat service and phone line forever - cancel my auto renewal immediately - adobe exportPDF.  I mean immediately.

    Your marketing strategies are unconscionable. I have been trying to cancel my Adobe ExportPDF "auto renewal" (pfft) for an hour now and can't reach anyone.  I am a busy man, and this time is costing me money. I want it cancelled now.

  • NW Developer Studio

    Hello I need help NW CE setup.   Installed  CE SP5  and  did not find developer studio. Do I  need to install  seprate?  If yes  can anyone  point me the  right download link pls. Thanks In Advance.

  • ISW and Directory Server 6.3. unable to sync passwords

    I thought I try to move on to DS6.3 and Windows Sync. I have already have 5.3 running on another machine and all works fine. But, I am having problem with the new version. I am getting the following error in the log files when a password change happe