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...

Similar Messages

  • 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

  • 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.

  • All my iphoto pictures dissapeared after downloading the new version. but i still got some of them on my ipad. is there any way i can import them to my mac?

    I've got a question.
    all my iPhoto pictures dissapeared after downloading the new version.
    I still got some of them on my iPad which I've imported from my libary earlier before they all dissapeared.
    is there any way I can import them to my Mac?

    Use 3rd party software like:
    http://www.digidna.net/products/diskaid
    http://www.wideanglesoftware.com/touchcopy/index.php
    For items purchased (including apps) from iTunes:
    http://support.apple.com/kb/HT1848

  • 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

  • [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

  • 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.

  • 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

  • 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.

  • Need some help: my itunes won't sync with my iphone anymore. Both softwares are up to date and I've reinstalled itunes. After I reinstall, it syncs. But then when I reboot my computer, it no longer syncs anymore and I have to keep reinstalling itunes. Tho

    Need some help: my itunes won't sync with my iphone anymore. Both softwares are up to date and I've reinstalled itunes. After I reinstall, it syncs. But then when I reboot my computer, it no longer syncs anymore and I have to keep reinstalling itunes. Thoughts???

    thought that it was possible to have the same iTunes library on any machine that was authorised, a kind of cloud-iTunes I guess. 
    That would convenient, but sadly it is not the case. Sorry!
    Either way your welcome and best of luck!
    B-rock

  • I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated.

    I need some help resizing my images on PS6. I am using a mac and have been trying to resize with same resolution and constaining proportions but for some reaseon the smaller resized image appears pizelated. Heres an image of before and after. The first image I use is a JPG 72dpi 1500px x1500px and I want to downsize it to 600x600px same res, but it keeps pixelating, this has never happened before. Any suggestions, thoughts?
    thanks!

    I wouldn't say pixelated; more like blurry.
    Like ConnectedCreative said, what steps are you using? Are you using "bicubic sharper" when resizing down?

  • Have been trying to get a simple rollover tooltip going but haven't had any success...need some help

    Have been trying to get a simple rollover tooltip going but haven't had any success...need some help please

    start watching at 11min
    http://www.youtube.com/watch?v=6_FJYN36_94
    hope this helps

Maybe you are looking for

  • Symbol and Text Substitution not working correctly

    Hello, in „Language & Text" I have the following symbol and text substitutions enabled, which aren't working in Pages version 5.1.1 (iMac 2011, Yosemite 10.10.1): „- - >" (written without blank space between the characters) which should be substitute

  • How do I get past the license agreement screen on Reader 9.4?

    I've just installed Reader 9.4 on my Dell Inspiron 1501 laptop, o/s WinVista HP.  I have the same thing on my desktop and have never had a problem.   On the laptop, when I click on the Reader icon, I get the License Agreement and the instruction to "

  • Po status based problem

    Let us assume i have got a purchase order on 1st jan and the order got closed on 1st Feb... So the status of that particular PO after 1st feb will be colsed. But when am trying to query the same with date as parameter in between 1st jan and 1st feb a

  • Is there any command to find the running cloud services in the current PC in windows?

    Is there way to find the list of running cloud service providers in the current PC through C++ programming ? Or is there any other tool which gives the list of service providers running in the PC? I know this question is not related to Azure but Azur

  • Xsl processor and xml parser?

    Hello, Can someone tell me wich is the xsl processor and the xml parser used by Livecycle ES? And their versions? Thank you