How do you layer without logic crashing

I have a Lexicon Omega, with a Korg 01w Pro running to it. When I type the program names(Korg instrs.) that are on the Korg. (which takes forever)I'll save and it seems to be fine. Then when I open logic up next time the Kontrol 49 pop up says is no longer there. I didn't have one, I didn't think. Then a pop up says, your Lexicon no longer exists either. Its gone as well as my programed instrs. (uuuuuuuugh)
I have an apple pro training book, Pro 7 and express, and It could be that I installed it wrong or over Logic 7 and 7.1. I don't know if orig. files have been removed or misplaced, several people use this computer. Any help would greatly be appreciated. I have and Academic ver.
G5 2.3 dual   Mac OS X (10.4.3)   20" monitor

I think Logic is crashing because with Local=Off you've set up a MIDI feedback loop. Logic won't like that (no sequencer will!).
Your 01W (and most keyboards) are actually two devices in one: a keyboard (and I'm talking about just the keys, but you can also include the joystick and other controls) and the sound-generating part (or "sound engine"). The keyboard is "locally" connected to the sound engine by means of the Local control. So if Local=On, the keyboard is internally connected to the sound engine. If Local=Off, you are actually disconnecting the keyboard from the sound engine. Believe it or not, this is what you want to do when you're using the 01W with Logic both as a master keyboard AND a sound source. I'll explain why:
When your send MIDI from your keyboard into Logic, Logic then "thru's" that MIDI data to whatever device is assigned to the currently selected track in the Arrange window. So your keyboard is your 01W. Now, if you have a track assigned to the 01W and you play the keyboard, here's what happens:
01W MIDI Out--->Logic In--->Track (assigned 01W)--->Logic Out--->01W MIDI In
The action of MIDI passing from Logic's input to Logic's output is called "thruput". In this case, the 01W, as assigned in the Track, is the "thru instrument". So first of all, if Local=On, anything you play will sound phased/flanged. This is because you're playing the 01W internally AND "thru" Logic, right back into the 01W. It happens so fast that the notes kind of cancel each other, resulting in the phase/flange sound. This is why Local has to be turned Off. Well, that's one reason anyway...
As to why you're not getting sound when you make Local=off has to do with your MIDI configuration, which I'm afraid still isn't set up right.
Do this test:
1) Quit Logic
2) AMS setup cleared entirely (except for the Interface, which you can't get rid of anyway)
3) Launch Logic
4) Go to the Clicks and Ports layer of the Environment
5) Delete everything in there except for the MIDI Click icon
6) Go to your MIDI Instruments layer
7) Create a new instrument (not a multi)
8) Assign it to the correct ports for your 01W, channel 1
9) Turn local off on your 01W
10) Put the 01W into program mode, receive channel = 1
11) In the Arrange window, assign the 01W to a track
12) Play the keyboard. You should have sound.
Get back to me on how this works.

Similar Messages

  • How do you identify the Logical system in start routine of a transformation

    My scenario is this.  I have five r3 systems that I am extracting from.   In the start routine of the transformation from the r3 data source to my data store I  am going to delete data and I need to know the source system id.    How do I identify the logical system or source system id in the transformation.  Is there a system field that contains this information.    I do not want to hard code the source system id in the routine.

    hi
    have a lool at tables rsreqdone and rsbkrequest with a join you should be able to determine the source.
    regards
    Boujema
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).
    Edited by: Boujema Bouhazama on May 9, 2008 12:04 AM

  • How can you type without using capitals at the beginning of a sentence?

    How can you type something without using a capital letter at the beginning of a sentence. It always automatically outs a capital letter and I don't want one because it could be a case sensitive password?

    Tap the Shift key to turn off caps

  • HT4356 How do you update without losing where you are up to in a game

    Previously I have updated iOS and lost where my son was up to on a game. How do you avoid  this, I have been delaying updating for this reason

    Hi MtnFin,
    Please refer the Kb Doc: http://helpx.adobe.com/acrobat/using/pdf-form-field-properties.html
    and the video: http://www.youtube.com/watch?v=aSUgRcva_Jk
    Regards,
    Rave

  • How do you use a logic function to see if text is there?

    I have a column of Dates, and a column of Categories. I want to Numbers to be able to tell me whether a certain Category, in this case "Phone", appears in the Category column during the month of February.
    While playing with the IF and AND functions, aside from Errors, the only results I've come up with are "FALSE", when it clearly is in the category. I have checked everything over and can't find any error on my own part, aside from not understanding clearly how these functions work. Can someone clarify what I need to do to get the desired results?
    Thank you so much!

    Vangard wrote:
    Also, is there a way to specify its "existence" to a date range? What I am trying to do is have a separate table show whether or not I have paid the phone bill each month. So without a date range, it will display that I've paid it on every month. (Assuming I can get it to display the proper status in the first place.)
    What you're looking for is a "breakout table"
    These require an index column on the main table that marks the target rows with an identifier (a serial number) that's used by the LOOKUP function to retrieve other information from the marked rows.
    For the example, I've placed Date, category and amount in columns A, B and C of the main table, and used column E as the index column.
    On the Breakout table, the Category is in A1, dates are listed under it, and amounts in column B.
    Formulas:
    Table 1
    E2 and filled down the column:   =IF(B=$E$1,MAX($E$1:E1)+1,"")
    Table 2
    A2 and filled down the column:   =IF(ROW()-1>MAX(Table 1 :: $E),"",LOOKUP(ROW()-1,Table 1 :: $E,Table 1 :: $A))
    B2 and filled down the column:   =IF(ROW()-1>MAX(Table 1 :: $E),"",LOOKUP(ROW()-1,Table 1 :: $E,Table 1 :: $C))
    The IF part is used to blank cells where LOOKUP would be looking for a number greater than the maximum value in the index column. Because LOOKUP cannot be set to look for exact matches only, it would repeat the last found entry if this part of the formula were omitted.
    Note that the values (text) in the category column, and cell E1 of Table 1 must match exactly for the row to be included in the breakout table. (This may also be the reason for the 'missing' message you are getting from Yvan's formula.) The easiest way to accomplish this is to enter the category labels using a pop-up menu, and to use the same menu in E1.
    Extension: For a single breakout table with a choice of extracting any one of the categories, place a copy of the pop-up menu in cell A1 of Table 2, and replace the value in E1 of table 1 with the formula   =Table 2::A1
    Regards,
    Barry
    Descriptions of ROW, MAX and LOOKUP may be found in the iWork Formulas and Functions User Guide, which may be downloaded through the Help menu in Numbers.

  • How do you layer buttons/fields in forms

    I am using Adobe Pro 9 and need to layer some buttons.  I know how to size and ailign but I don't see where to layer them.

    You can place one on top of another. To set the order, set the tab order.

  • Basic question - how do you deploy a Logic app as SaaS?

    This is partially a broader question of how you deploy SaaS solutions on Azure, but wanting to know in relation to logic apps.
    So let's say I wish to create, for sake of argument, a service that allows contractors to log their hours (either via a phone or through their laptops)
    Each contractor is a separate client of mine, and I wish to develop an SaaS service that I can sell to hundreds of contractors.
    What is the blueprint for such a solution?
    Is it:
    - I create a web app to give me a web based interface they can use
    - A mobile app in which they can enter their data by mobile
    - A logic app to take data from both of these and process and store them into a SQL Server database
    And if so, would the only thing separating one contractor from the other be their logins? Or is there way of instantiating separate databases for each user (let's say I wanted to give each client their own database)? Just trying to get my head round how
    SaaS solutions would work. Any tutorials/good reads most welcome!

    Actually I came across a few articles talking about Single tenant vs Multi tenant architectures and that's opened up a whole new world for me, exactly what I was looking for. Will read up a bit more on how logic apps work in a single vs. multi-tenant environment.

  • How Do You Work Your Logic Files In Sonar and Pro-Tools?

    Hey guys, it's my 1st post. I have a MB Pro and Logic Pro 8 and I'm going to be working in a studio that has Sonar and Pro-Tools in another room. I'm going to be doing my pre-production with my MB Pro and then do the mixing in Sonar because the acoustics is bad at home. How do I proceed thus? In what format do I save my Logic File in order to be opened in Sonar and Pro-Tools? Can Sonar read Logic files? Can Pro-Tools read Logic too?

    Hi, if >download Additional Content< is still available, then select it and Logic will attempt to download everything needed. If there's no activity then you're done and if something went wrong, on your network for instance, you'll receive an alert stating otherwise I suppose.
    Have a nice day!

  • HOW DO YOU LAYER BY COLORS??

    IM TRYING TO MAKE A T SHIRT TAG AND THHE SCREEN PRINT COMPANY WANTS MY COMPANY NAME AND LOGO SENT TO THEM AFTER I LAYER THE DESIGN BY COLOR, AND IM LOST ON HOW TO DO THAT

    you could start making a copy of your file;
    then you make sure to have all your artwork unlocked and showed (Object-Unlock All, Show All);
    select all (cmd+A) and select Divide from Pathfinder panel (or Effect-Pathfinder-Divide);
    ungroup all again and double-click the Magic Wand Tool (Y), setting "Fill color", "tolerance:0", and click on one color of your artwork: it will select all that color, so you cut and paste in place on another level (cmd+x, create a new layer, then cmd+shift+alt+V).
    Do the same with all other colors and you're -almost- done!
    You better select all items on every layer and hit Unite from Pathfinder panel.

  • How can you sort without adding all the music to iTunes?

    I'm an older person and I don't get it. At first I just had a shuffle and I downloaded specific songs into iTunes that I liked. Then I upgraded. I loaded a whole bunch of cd's into various libraries at various times on an external hard drive. Now, I have a ton of music and would love an easy way to organize it! There are lots of duplicates and lots of songs I just don't like. The trouble is, I haven't figured out how to just see a list of all the songs and sort and delete from the list. I have to open a library and then I get a bunch of file folders of an album or two. Then I have to open the album to see the songs. If I forget what the song sounds like and I click on it to play it, the album goes automatically into iTunes. I don't have enough room on my pc for all that music to go right into iTunes. Do you get my question?? Can you help me?

    When you play a song with iTunes, it automatically gets added to the library, as you noticed.
    If you just want to play the song so you can decide whether to keep or delete it, use another player. You may already have Windows Media Player on your machine. If not you can download Winamp.
    When you are done sorting, add the ones you want into your iTunes library

  • How do you set up Logic Pro 9 for transposing instruments?

    Is it possible to set up Logic to recognise transposing instruments? In other words, if I'm playing a Bb trumpet part in C, the score would display the part transposed one tone higher & display the correct key signature, but it would still sound in C. The orchestral template does this for you, but I prefer to work from scratch.
    Calicoprinter.

    Hi
    You can do this on a region by region basis by selecting the appropriate Staff Style in the Score Inspector.
    If you want to apply a particular Staff Style to a particular track automatically as you record, you can adjust the Style parameter at the bottom of the Track Parameter Box.
    CCT

  • How do you un-install logic pro 7

    i want to uninstall logic so can have a clean slate to hopefully fix all the bug with it
    here is the link to see my problem too
    http://discussions.apple.com/thread.jspa?threadID=826229&tstart=0

    hey sence you seem have good grasp on logic do you think you can look at the problem im haveing?
    http://discussions.apple.com/thread.jspa?threadID=826229&tstart=0
    MacBookPro1,2   Mac OS X (10.4.8)   tascam us-428

  • How do you paint without "color overlap"?

    I want to use about 50% opacity on my 2nd layer to paint over my 1st layer picture, but I don't want the color to get darker and have overlaps if I let off the mouse and start painting again. Here is a picture below I made to explain better.  Is there a way to paint this way? I've tried all the brush modes, unless I missed something, but nothing works.  Any help would be very appreciated.
    (Note: I did the "Want this" with a little time and MS paint)

    I take it the first layer is the outlined bird and the second layer is the green paint. Assuming that's the case, paint with the green paint with the paint brush tool set to 100% opacity. Reduce the blank layer onto which you are adding the green paint to 50% opacity. (Do all of your green paint strokes on one layer. If you apply strokes to several layers, you'll get the paint build up where strokes overlap.)

  • How do you update Mackie Logic control with logic pro 7?

    I moved my setup to a new location and now when I boot up my logic control its just a blue screen. Ive found its firmware has been blanked. I did some research and it seems emagic used to send users an old .mid file to fix it, but that was long ago. Now all i have is a 1.02 from Mackie, but every time i go to play the song it says error code 1. Does anyone know how to fix this? I think I turned off MTC and the midi clock, but still no go. Does anyone know how I can correct this within Logic pro 7? Any help would be appreciated! Ive never had to do anything with logic control before this, but turn it on!

    I figured it out! I had to reset midi drivers in Logic, then a unitor tab came up that was NOT previously there (?) under midi settings and from there i was able to turn off VTC/LTC which was causing the error code.

  • Using AKAI DPS16 wav. How do you import into Logic Express

    i am using akai dps16 to record and burn as wav to disc but cant seem to get them to load into logic express so i can mix and process.do i need other software or am i just stupid ?

    Hi,
    You just need to read the AKAI manual, to see what format those CDs are being burned as. My best guess : PC data disc...
    Cheers

Maybe you are looking for

  • Report Painter for GL balances

    Dear Experts, I would like to create a report through report painter, which gives the GL balances Business Area wise under Profit centers. I'm using the 0FL New General Ledger Library. I'm able to get GL balances either Business area wise or Profit c

  • Issue while adding Help Link using personalization

    Hi... i am adding a help links on all the iRec pages using personalization. Requirment:- Need to have a help link on all the pages of iRec at the left corner of the page So i made the following changes to do this... 1. Created a new Region(This regio

  • Location to download IPS software upgrade Version 7.1(5)E4

    Hi, In last month I found latest released IPS software version 7.1(5)E4 for IPS appliance 4260 on cisco site. However it is no more available over there now can I have exact download location of the software upgrade as I want to upgrade my device wit

  • Applicatio​n builder (activate activex)

    Hello together, you know that a VI can be compiled into an EXE-File with the Labview Application Builder. Did somebody recognize the possibility to activate the ActiveX server within this EXE and made use of it?

  • Unzipping music files

    We have music files that we zipped to save space, now we cannot unzip the music files. Anyone know how to open and unzip the music?