Thanx Noeqplease & Bee jay but I still need some help form U or anyone out

Answer From Noeqplease
'Hi Teebow,
You need to set up a simple pair of transformers, in your audio Layer.
One transformer will feed MIDI channel 1, and one, MIDI channel 2, in your arrange page, for recording.
First, create a simple Environment Object, and call it whatever you like (key splitter is good). This is so you can send one midi stream ot both Transformers.
Cable this to the following two Transformers:
The first Transformer will FILTER all notes BELOW your set parameter, ie whatever note you decide. This is the TOP of the keyboard split. Hook this up to your first Audio Instrument channel. this would be the melody instrument.
The second transformer will FILTER all notes ABOVE your set parameter, ie whatever note you decide. this is the BOTTOM of the keyboard split.Hook this up to your second Audio Instrument channel. This would be the Bass instrument.
In the Arrange Page, create your two instruments, and then select the TRANSFORMERS as the Instruments to be active. In other words, you'll see in the Arrange page "Transformer #1, Transformer #2" instead of the actual instruments. This is so you can record through them, and then the VIs just playback the correct notes.'
I am not transformer savey However if you or anyone reading this could please send me a pic as to what the settings within the transformer should look like for both channels I would be grateful
The support I have had thus far on this topic has been more frustrating than help full. One experienced member admits that this is complicated not impossible.
I know through screen shots that the settings can be shown as this was what I saw in the original post to somebody else which drew me to pose my problem about transformer.
As before all I need is someone who knows Transformer and is confident in its workings. I have tried but I cannot make head nor tail it would be so much more easier if I could get help with this so then I would have a correct base for getting more confidence with tying other operations.
Cubase has a logical editor which works the same way I am coming from Cubase 3.1 from the Atari days and still I couldn't get my head around that and this was 1990. no matter how many books I read and believe me I have read quiet a few along with related manuals.
Are there any books or DVDs on the workings of Transformer or any templates.

Hi Teebow,
Here's what you can do:
Go to your Environment Layer.
Go to the "Click & Ports" Layer.
Create 2 new transformer objects, from the menu inside the layer window (not the main menu, but the one inside the window)
Connect both of these between the INPUT object, and the Sequencer object.
Now... you need to take out a notepad, and write down some settings.
On the first transformer, you will make it FILTER out ANY MIDI from channel 2. and pass all else.
On the second transformer, you will ONLY ALLOW MIDI data coming in from channel 2, and NOT ALLOW anything else to pass.
Instead of trying to get you a screenshot, please just open the environment and create an EMPTY new Layer, and call it "practise layer" or the like.
There create some new transformer objects, and FAMILIARIZE yourself with them. then you will be "transformer savvy"
They are actually very very useful object for dealing and routing MIDI of all sorts. And since you are now needing this, it would behoove you to learn to use this feature of Logic.
And no, it is not that I do not want to post screenshots, I am actually quite busy, and it would take me longer to have you learn through the forum, than for you to just do it. you need to stop fearing the environment, that's all...
Cheers

Similar Messages

  • Thanx Noeqplease but I still need some help form U or anyone out there

    Answer From Noeqplease
    'Hi Teebow,
    You need to set up a simple pair of transformers, in your audio Layer.
    One transformer will feed MIDI channel 1, and one, MIDI channel 2, in your arrange page, for recording.
    First, create a simple Environment Object, and call it whatever you like (key splitter is good). This is so you can send one midi stream ot both Transformers.
    Cable this to the following two Transformers:
    The first Transformer will FILTER all notes BELOW your set parameter, ie whatever note you decide. This is the TOP of the keyboard split. Hook this up to your first Audio Instrument channel. this would be the melody instrument.
    The second transformer will FILTER all notes ABOVE your set parameter, ie whatever note you decide. this is the BOTTOM of the keyboard split.Hook this up to your second Audio Instrument channel. This would be the Bass instrument.
    In the Arrange Page, create your two instruments, and then select the TRANSFORMERS as the Instruments to be active. In other words, you'll see in the Arrange page "Transformer #1, Transformer #2" instead of the actual instruments. This is so you can record through them, and then the VIs just playback the correct notes.
    Cheers '
    I am not transformer savey However if you or anyone reading this could please send me a pic as to what the settings within this beast should look like for both channels so that I can click an go thanx

    Logic can only show the parameters for one object at a time (the selected object) so a screenshot will do you no good, as it can't show all the parameters at once.
    Have you tried working through this? Or did you just not understand it without trying? The instructions, while not explicit, are clear enough in principle. Work through it, and if there is anything you don't understand, post back for clarification. That way you might just become a little more environment savvy...

  • I have a working problem, but still need some help

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= secondNum; i++)
      if( i % 2 == 0 ) evensTotal=i;
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }I have everything I need, but I don't want it to display the even numbers squared. I want it to display the odd numbers squared. And also at the end I need to Output all of the uppercase letters. Any ideas of what that means or how to go about it??
    By the way. The program outputs the following when I use firstNum=1 and secondNum=13:
    odd number = 1
    odd number = 3
    odd number = 5
    odd number = 7
    odd number = 9
    odd number = 11
    odd number = 13
    Even numbers total = 42
    2 squared is 4
    4 squared is 16
    6 squared is 36
    8 squared is 64
    10 squared is 100
    Odd numbers(squared) total = 165
    Edited by: mk9000 on Oct 29, 2008 9:09 PM

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= 10; i++)
      if( i % 2 == 0 ) evensTotal+=i;
      else
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }Ok. I figured out how to display the odd numbers squared. I was forgetting to place the else after the if statement. But I still don't understand what my teacher could be talking about when she says "the last step is to output all the uppercase letters"
    Any help here? It makes no sense to me. It's all numbers. How could I output any uppercase letters?
    Edited by: mk9000 on Oct 30, 2008 5:53 AM

  • Really need some help: Forms

    I've the following problem: One page with one form portlet and one report portlet. Each line of the report have a link to update the record in the form. All in the same page.
    Problem: The form don't show the record clicked, but the previous record clicked. Ex:
    REPORT:
    1 AAA
    2 BBB
    3 CCC
    FORM:
    1 CCC
    1) Click 2 -> form show 1
    2) Click 3 -> form show 2
    3) Click 3 -> form show 3!
    The problem is with form session (wwa_app_module_session)... The link in the report call a procedure that set's form session variables using set_value and save_session, wwa_app_module_session methods. It works ok, but needs two clicks! Why? Need to clear the session? Try drop_session, clear_shadow and nothing... I don't understand the way form sessions works... Application session (wwsto_api_session) works ok, no problem in setting the session variables, but i need to use form session to update the form with the values of the selected record. Must use set_shadow_value?
    Help will be very appreciated!
    PS: The problem could also be in this phase: SESSION VARIABLES -> HTML FIELDS. And if the HTML fields are updated before session variables? Is that possible?
    MM :: [email protected]

    but when I call my report in Forms 10g i receive an error for the user parameter P_JDBCPDS.1. What is the error?
    2. Nowhere in your code do I see a reference to parameter P_JDBCPDS.
    then it seems that only the sample schema can be seenYou have to use a user that has access to the schema where your tables are located (with proper grants and synonyms).
    Anyway, why JDBC? You are connecting to an Oracle database. You don't need JDBC for that, just un/pw@db.

  • Still need some help.. Please!

    I´ve tried to do the tree component transparent so that
    I can see the background thru it but it doesn´t seem to work.
    Do any one know how to do??

    cSource3D=thisComp.layer("Light"); //reference a 3D light as source
    cSource2D=cSource3D.toComp([0,0,0]); //convert to screen coordinates
    cMiddleX=thisComp.width*0.5; //midpoint X
    cMiddleY=thisComp.height*0.5; //midpoint Y
    cDiffX=cSource2D[0]-cMiddleX; //position difference X
    cDiffY=cSource2D[1]-cMiddleY; //position difference Y
    cAngle=Math.atan2(cDiffY,cDiffX); //find angle
    cOffset=200; //distance from middle
    X=cMiddleX+Math.sin(cAngle)*cOffset;
    Y=cMiddleY+Math.cos(cAngle)*cOffset;
    [X,Y]
    Yes, simply copy&paste the above code ( I corrected the typos) to your secondary element and adjust the cOffset variable to suit (you could tie it to a slider, if needed; negative values move in opposite direction). Make sure to adjust the reference to the light in your comp (or your 3D Null). If you use an expression Point control or the Lensflare effect on a solid, you don't need the first line and the second line would then look something like that:
    cSource2D=thisComp.layer("Lensflare").effect("Lens Flare")("Flare Center")
    Mylenium

  • Inverse Position Expression...still need some help please!!

    Following up a post from a few days ago....
    Im creating a hand made anamorphic lens flare and I want to control the position of the elements in it with a null
    Mylenium kindly pointed me to his site which has great projects to download but its beyond my math capabilities and I havent been able to get my head around it and apply it to my project.
    I have this expression which has got me started
    pRef=thisComp.layer("null 1").position;
    X=thisComp.width-pRef[0];
    Y=thisComp.height-pRef[1];
    [X,Y]
    But if I want to add additional lens flare elements that move at a different relative position, this expression wont do it. Its only good for one element.
    I only want a few elements in the flare
    Can anyone suggest a simple way to do this? Im only looking at having 2 or 3 flare elements in it...nothing heavy.

    cSource3D=thisComp.layer("Light"); //reference a 3D light as source
    cSource2D=cSource3D.toComp([0,0,0]); //convert to screen coordinates
    cMiddleX=thisComp.width*0.5; //midpoint X
    cMiddleY=thisComp.height*0.5; //midpoint Y
    cDiffX=cSource2D[0]-cMiddleX; //position difference X
    cDiffY=cSource2D[1]-cMiddleY; //position difference Y
    cAngle=Math.atan2(cDiffY,cDiffX); //find angle
    cOffset=200; //distance from middle
    X=cMiddleX+Math.sin(cAngle)*cOffset;
    Y=cMiddleY+Math.cos(cAngle)*cOffset;
    [X,Y]
    Yes, simply copy&paste the above code ( I corrected the typos) to your secondary element and adjust the cOffset variable to suit (you could tie it to a slider, if needed; negative values move in opposite direction). Make sure to adjust the reference to the light in your comp (or your 3D Null). If you use an expression Point control or the Lensflare effect on a solid, you don't need the first line and the second line would then look something like that:
    cSource2D=thisComp.layer("Lensflare").effect("Lens Flare")("Flare Center")
    Mylenium

  • I need some help with limiter on main outs, gurus please read :)

    Hello, I've just recently switched over from PT and I noticed almost immediately upon getting into logic that the main outs seem really loud when following my general mixing workflow that I'm use to using. In fact so much so that I can't really get a final product using ozone 4 like I was able to in PT. When I go to use the final stage of ozone 4 (the limiter) to maximize my volume without clipping, it pretty much just crushes my dynamics and overall mix into rubbish. What's going on here? What am I doing wrong? I'm not even limiting that much. Whereas before in PT I could limit it much more if I wanted to. Is there a setting somewhere in logic i'm missing? I know Pro tools and logic are different beasts so save the crappy comments, but there is a huge difference in main output behavior that just doesn't make sense to me and causes the same plug in (ozone 4) to act much differently.

    Well it's not a mental hang up, as I've tried turning down the master fader substantially and ozone 4 still reacts differently than in PT, it sounds better without the loudness maximizer going, fuller and more dynamic. Whereas in PT I was able to utilize the maximizer to bring the volume up to a point and still not smash the mix. I've noticed this with pretty much anything I use a limiter/maximizer on in Logic. I don't understand what's going on. Surely I have something set funky somewhere? It's like it's putting a brick wall limiter on the mix even when I set it to intelligent and tweak everything a bit my meters just straight line, no movement, as if I have my volumes cranked to the max. Very subtle settings in ozone
    we're talking -0.4 margin threshold -2.1 character set to very fast in intelligent II mode. This normally gives me a pretty decent amount of threshold adjustment to maximize volume. I'm stumped.

  • [VIA] Need some help here ... anyone please ?

    Hello,
             I'm new here, just wanna ask for some solution for my pc problem.
    I'm currently using Athlon XP 2.4, MSI KT400 (MS-6712AV) Mainboard, just bought for 3 months, but today when i start my pc, it comes out on the screen " Checking NVRAM ", than it stop, the system just hanged there, even that i kept restarting. Can anyone tell me what's the problem ? Does anything to do with my motherboard ? Thank you.

    emm, you reminded me Dr.Stu, i did remove my PS once yesterday to test on my other PC. this problem occured since i switched back. I did take out the cards and rams one by one, but same result.
    Now i unplugged one of the ide cable, i can successfully start my pc to windows, but in roughly few minutes, it'll auto restart. Same problem ?
    Thank you
    My Specs:
    AMD Athlon XP 2.4Ghz
    MSI KT4V MS-6712 MotherBoard
    MSI GeForce FX-5700 256mb Display Card
    768mb DDR Rams ( Apacer 256mb X2 , Kingston 256 X1 ) 
    ASUS 52X CD / 52X24X52 CD-R / Pioneer DVD-R A-109B/W 16X4X16 +-
    Creative SB Audigy 2 ZS Value SoundCard
    Eagle Aluminium ATX Casing with iCute 450Watt 2Fan PSU
    80Gb Western D HDD 8mb Buffer
    3 com 10/100 N/Card and Samsung 710v LCD Monitor

  • Need some help with my thunderbolt!!!!!!

    i was on it the night before. then at 4 am it goes to the HTC white screen and does nothing else but that. I have tried everything from rebooting to taking out my SD card. I need some help. Is there anyone out there?

        Everyone, I'm so upset to hear that your phones aren't powering on. I'm hoping your issues have been resolved by now, but if not, I want to try a few more steps. Since removing the battery and charging aren't working, I suggest first trying to boot your phone into safe mode http://bit.ly/Nt3m5U. If no change, please try these steps. No information will be lost:
    1. Boot into recovery
    o Press and hold Power, Choose "Restart" option
    o When screen turns off, press and hold Volume Down and Power
    2. When the white HBOOT screen appears, use the volume button to move down to “RECOVERY.”
    3. Press the Power button to select “RECOVERY.”
    4. When the triangle and exclamation appears, hold the Volume Up and Power button at the same time.
    5. Using the volume button, scroll down to “Wipe cache partition” and select it.
    6. Select "Reboot system now"
    Let me know if you still need assistance.
    MarquiaF_VZW
    Follow us on Twitter @VZWSupport

  • My airport problem has returned big time --Need some Help!!

    Aloha once again:
    I though that this was fixed by simply changing channels on my airport router, but that fix only lasted for a few days, but now it's back and even worse. Let me give you some background on this problem. Here's my original message concerning the problem:
    I have my Airport Router connected to the Internet via DSLcable. I then tie my two computers into the internet via their airport cards. For about 6 months this system has been working just fine. Recently my desktop computer quit listening to the router and can no longer connect to the internet. It shows no signal strength and the name of the network on the Airport is not seen in the "connect to internet" panel. The same Airport works just fine on my LapTop and I am using it right now to get this message off to the internet.
    I have fixed permissions, removed the airport card and cleaned the connector, the antenna plug and removed the system configuration folder from library preferences all to no avail!
    This problem has been hounding me, intermittently, for over a year now What can I do to remedy this??? HELP!!!!
    Dan Page
    Maui, Hawaii
    The suggestion to change channels, that came from this original request, worked but just for a very short time. Now I have to shut down my computer overnight to get connected and then it only lasts for several hours and the connection quits.
    I thought maybe heat was a problem, but the last time it happened I opened the computer and played a large fan right on the card. This did not help. I shut it down for the night and it was fine the next morning for about 2 hours.
    One new data point; if I turn off just the airport on my laptop computer overnight, that will fix the problem for a short time also.
    Still need some help!!!
    Dan

    First, power off both the Time Capsule and AirPort Express.
    Wait a few minutes, then power up the Time Capsule first, and let it run for a few minutes.
    Temporarily, move the AirPort Express to the same room or close proximity to the AirPort Express and power it up.
    If the Express powers up correctly, power it off again and move it approximately half the distance between the Time Capsule and the general area that needs more wireless coverage. Try to minimize obstructions like walls, ceiling, heavy furniture, etc as much as possible. 
    Please report on your results.

  • My iPhone 3g has 2 white horizontal lines i don't know where did it came from. I turn it off then on but its still there. the lines spreads everyday. I dont know how to fix it. need some help guys.

    my iPhone 3g has 2 white horizontal lines i don't know where did it came from. I turn it off then on but its still there. the lines spreads everyday. I dont know how to fix it. need some help guys.

    If you take a screenshot (Press the home button and Lock button at the same time), does it appear on the screenshot? Zoom in on the screenshot and see if it's still there.
    If not, then your display is failing. I would recommend taking it to an Apple Store if you can, if you can't then to an authorised Apple reseller.
    If it does appear on the screenshot when you zoom into the spot, then it's a really weird software issue! You might have to backup and restore the device.
    Let me know!
    xeni

  • HT1212 I got the message copied below in iTunes but I still need to keep my pics and videos. "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    I got the message copied below in iTunes but I still need to keep my pics and videos. Passcode has been wrongly entered 100 times by my little chiled. Is it possible to still keep the data?
    "iTunes could not connect to the [device] because it is locked with a passcode. You must enter your passcode on the [device] before it can be used with iTunes."

    PHONE LOCKED
    If your phone is locked because you have incorrectly entered the unlock passcode too many times then follow the steps in this article http://support.apple.com/kb/ht1212

  • I was updating my iphone 5 to ios 7 but i cancelled it by forcing a shut down as there was not much battery left so now its in restore mode and i cant restore my phone now it says error 3194 and ive tried the sudo code but it still doent work help?

    i was updating my iphone 5 to ios 7 but i cancelled it by forcing a shut down as there was not much battery left so now its in restore mode and i cant restore my phone now it says error 3194 and ive tried the sudo code but it still doent work help?

    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software and ensure that communication to gs.apple.com is allowed. Follow these steps for assistance with security software.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow the advanced iTunes Store troubleshooting steps to edit the hosts file or revert to a default hosts file. See "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information."
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute then turn on wifi on iMac before it can reconnect. Need some help please.

    Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute, then turn on wifi on iMac before it can reconnect. Need some help please.
    Already gone through troubleshooting guide a zillion times. Thanks.

    This worked for me... A little time consuming but once you get rolling it goes GREAT... Thanks....
    I got my artwork and saved it to my Desktop
    Opened up Microsoft Paint and clicked on "File" and "Open" and found it to get it on the screen to resize it
    Clicked "resize" and a box for changing it opened up
    Checked the box "Pixels" and "Unchecked maintain aspect ratio"
    Set Horizontal for 640 and Vertical for 480
    Clicked on "OK" and went back to "File" and did a "Save As" and chose JPEG Picture
    It came up "File Already Existed" and clicked "OK" (really did not care about the original artwork I found because wrong size)
    Went to iTunes and on the movie right clicked on "Get Info", clicked on "Details", then "Artwork"
    Go to the little box on the top left that shows your old artwork and click on it to get the little blue border to appear around it and hit "Delete" to make it gone
    Click on "Add Artwork" and find it where you put the one from above on your Desktop and hit "Open" and OK and your new artwork is now there and all good.
    Sounds like a lot of steps to follow but after around 5 or so you will fly through it. This worked perfect on my iPhone 6 Plus and I have artwork on my Home Videos now.

  • How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    How do I delete stored email addresses in my iphone? When sending photos, I don't want to have certain email addresses  "popping up" from the internal memory, I've deleted my entire "Contact" list but they still appear.  Help please!

    As with the Mail app on a Mac, the iPhone's Mail app stores all email recipients in a list of previous recipients which is separate from the address book or contacts. The email address autofill feature when addressing an message pulls from Contacts and from the list of previous recipients.
    Different from the Mail app on a Mac, there is no access to the list of previous recipients with iOS on an iPhone, iPod Touch, or iPad to remove a previous recipient from the list, or to add a previous recipient to the address book or contacts that is not already entered - not at the present time anyway.
    The only way to purge the list of previous recipients at the present time is by restoring your iPhone with iTunes as a new iPhone or not from your iPhone's backup, which will start being re-populated again with every sent message.

Maybe you are looking for

  • MacMini DVI colored static and KVM's

    Hi I manage 50 odd Mac's at work and have a new 09 MacMini. I have it connected via the Mini-DVI to DVI connector to a Rextron DAG12 DVI-I / USB KVM switch. I have been using the KVM for a year or 2 with a PowerMac G4 machine with no problems. When I

  • Making a Photo Slide show with Final Cut Express

    Hello, I am trying to incorporate pictures into my timeline mixed with video, how do I add movement to the pictures similar to how a photo slide show would look ?...Thanks in advance for your help!

  • Sap-Hr related

    Hi , How do u calculate the US & india payroll taxes ? How do u calculate time recording for employees ? Edited by: Kaladhar Reddy on Mar 9, 2008 8:15 PM

  • Financial documents on delivery

    Hi Gurus, What are the financial documents generated on doing a post goods issue? I have created a sales order and created a delivery of the materials picked from stock. Upon saving the sales order when I go to Extras- Display Financial Document. I g

  • EXP bits with Label Stacking

    In 12.0S, with ATOM or L3VPNs and label stacking which label's EXP bits are set using 'set mpls experimental' or using rate-limits? All labels in the stack? I see the newer 'set mpls experimental' commands in 12.2 and 12.3 that can control which labe