Quick Question Needing Answered

I am currently rewiring REASON 4.0 into LE8..
If any of you are familiar with Reason 4 you know that you have the ability to take 3 separate VST instruments and their sounds, and combine them as 1 by using the combinator..
to do that... you would create a combinator, then a line 1 mixer.. then 1-6 VST instruments...
Now apparently at this point all the instruments are connected as 1 (so 6 sounds combine to make 1)...
My question is...how do i get it to where i have 1 track in Logic.. and it plays that (6 in 1 instrument) under 1 track?
i hope you follow what i mean
thank you for your time

I'd suggest the following technique:
- create your combinator patch in Reason, then save it into the file, let's say "ReWire 1.rns"
- close Reason
- start Logic, create new project, create new Aux track in Mixer screen (go to Mixer -> Options -> Create New Auxiliary Channel Strips -> make sure the new Aux channel is stereo)
- open Reason and load "ReWire 1.rns" file
- in Logic go to Mixer and select Reason -> RW:L/R in the Input slot (first one below 'I/O') of the Aux channel strip you created
- adjust the volume fader of the Aux channel so that you can hear what is being played back from Reason
Note: in ReWire mode Reason works as slave and can be controlled by Logic's transport controls; Logic apparently reads tempo settings from the Reason song and automatically adjusts its tempo (which is sweet!)

Similar Messages

  • Some General questions - Need answers very soon...Pls help

    Hello Gurus,
    I have following questions. Could you please answer those if possible? I really need to know soon. I am BO developer but not working on Admin side and need to clarify some questions below.
    1 )What is a domain? How many are there in a basic set up? What are they?
    2) When is the repository created?
    3) Can we have multiple domains? If yes, what is the purpose of having them?
    4) How do you create a user?
    Thanks.

    Hello,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Questions -need answer

    Hi,
    Here are some of the questions i would like to know answers, need your answers.
    How do u identify  the problematic sql statements
    What is the process followed to tune sql statements
    What is explain plan
    What do u look for in explain plan
    I have 20 lines of code in plsql block, I got exception at 9 line,but still I want to continue from 10th line. How to achieve this
    How do u move your code from development to production
    What tools do u use to move your code from development to production
    Thanks...

    Hi,
    1) AWR (Identifying High-Load SQL Statements)
    2) There are might be more process. Beginning with validation /cretion index, gather_stats, rewriting query, etcc. ending changing database parameters
    3) Plan how ORACLE will execute the query
    4) i couldn't exactly understand it ??? what do you mean?
    5) catching exception block.
    6) it is depended company political
    7) SVN, batch file, copy/paste, etc. look "6"
    Ramin Hashimzade

  • Upgrading from 10.4.11 to Snow Leopard - Questions needing answers..

    Hello,
    I am currently running Tiger, 10.4.11 on my MacBook and want to get it up to current Snow Leopard. My laptop is about 4 years old now and need to know if I can upgrade it.
    Secondly I tried to install it with the Leopard system software I received with with my Mac Pro and when I started the install it hang for about 30 seconds and then I got an error message to inform me I could not install that version of OSX on my computer. Did this happen because I was trying to install it with a disc that came with another mac or simply it isn't possible to upgrade anymore? I would be surprised if the laptop is no longer upgradable. Is the problem memory?
    Do I need to buy the Leopard software and will it work.
    Look forward your replies.
    Cheers
    Sophia

    Did this happen because I was trying to install it with a disc that came with another mac
    Yes.
    Do I need to buy the Leopard software and will it work.
    Check the OS's system requirements prior to purchasing it.
    (57357)

  • Quick question need help

    Okay my problem is writing a code for payrole. I have to write the code to be 1.5 basepay for every overtime hour between 41 and 60, and be 2 times basepay for every hour over 60. I have done that, which isnt the problem....
    I am using a for loop to allow the user to select the number of employees they want to do at one time. However I am a bit perplexed. After the for loop is over I need to be able to add all the salarys together and come up with a total payrole salary, and I just do not understand how to do that, I will post my java code, sorry if its a little rough, I am just beginning.
    import java.util.Scanner;
    public class FigureWages {
         public static void main(String[] args){
              Scanner input =new Scanner(System.in);
              System.out.print("Enter Number of Employees= ");
              double NumbEmploy = input.nextDouble();
              for (int i = 0; i < NumbEmploy; i++)
                   System.out.print("Enter Employee Number= ");
                   double EmployNumb = input.nextDouble();
                   System.out.print("Enter Base Pay= ");
                   double basepay = input.nextDouble();
                   System.out.print("Enter Hours Worked= ");
                   double hours = input.nextDouble();
                   if (hours < 60 )
                        double overtime1= ((hours-40)*(1.5*basepay)) + (40*basepay);
                        System.out.println("Employee Number= "+EmployNumb);
                        System.out.println("Base Pay= "+ basepay);
    }     System.out.println("Hours Worked= "+hours);
                        System.out.println("Pay= " + overtime1);
                   else if (hours > 60)
                             double overtime1= ((hours-60)*(2*basepay))+(20*(1.5*basepay))+(40*basepay);
                             System.out.println("Employee Number= "+EmployNumb);
                             System.out.println("Base Pay= "+ basepay);
                             System.out.println("Hours Worked= "+hours);
                             System.out.println("Pay= "+ overtime1);
                   }

    now doesn't this look better?
    i changed one of your methods
    public class Member {
        private String firstName;
        private String lastName;
        private double heightInches;
        private double weightPounds;
        private int yearOfBirth;
        private int yearOfJoiningClub = 1990;
        private String membershipNumber;
        private int currentYear;
         * Constructor for objects of class Member
        public Member(String first,String last,double height,double weight,int birth,int join,String memberNumber,int curYear ){
            firstName = first;
            lastName = last;
            heightInches = height;
            weightPounds = weight;
            yearOfBirth = birth;
            yearOfJoiningClub = join;
            membershipNumber = memberNumber;
            currentYear = curYear;
        //Behaviors
        public String getFullName() {
            String full;
            full = firstName + " " + lastName;
            return full;
        public int calculateYearsJoined() {
            int yearsJoined;
            yearsJoined = currentYear - yearOfJoiningClub;
            return yearsJoined;
        public int calculateAge() {
            int ageOfMember;
            ageOfMember = currentYear - yearOfBirth;
            return ageOfMember;
        public int calculateAgeOfAtJoining() {
            int ageOfJoining;
            ageOfJoining = yearOfJoiningClub - yearOfBirth;
            return ageOfJoining;
        public boolean getsDiscount(){
            if(calculateAge() < 12) {
                return true;
            if(calculateAge() >= 65) {
                return true;
            if(calculateYearsJoined () >=10)
                return true;
            return false;
    }

  • Numbers question need answer asap

    I am in need of a solution that will take a running total and post that total to another spread sheet.
    Such as a running total on a check book. The last line in that column i want to automatically have it posted in the second spreadsheet, but since it will always be another block once something is either credited or debited it makes it impossible for me to think of a way to take that last value and post it since that value will only last a moment. Does anyone understand my dilemma. Please help.

    Hello
    Easy responce:
    at this time we can't exchange values between spreadsheets.
    The only available soluce would be to replace the second spreadsheet by a complementary sheet in the main spreadsheet.
    Of course, if you are really interested by the described feature, it would be a good idea to
    *go to "Provide Numbers Feedback" in the "Numbers" menu*, describe what you wish.
    Then, cross your fingers, and wait for iWork'09
    Yvan KOENIG (from FRANCE lundi 31 décembre 2007 18:27:27)

  • Authorization question - Need Answers - Please help

    Hi,
    I have collected the following questions. Can you please answer? Thanks.
    1)     What is Authorization object
    a.     Collection of Authorization fields
    b.     Authorization fields fill with Values
    c.     Group of Authorization Key.
    d.     Authorization object fill with Values.
    2)     Which of the statement below accurately describe when S_RS_ADWMB  will be used.
    a.     when using transaction code RSA1, the administrator work bench
    b.     when creating new query in the Bex Analyser.
    c.     When updating source system in RSA1
    d.     None of the above.
    3)     which of the following objects protect ODS data.
    a.     S_RS_ODSO
    b.     S_RS_ODSP
    c.     S_RS_ODSS
    d.     S_RS_ODSA
    4)     When would you use the $ in an authorization value?
    a.     If you are using user exit to fill the authorization values at runtime.
    b.     If you have cost centres that starts with $
    c.     Anytime you want to grant all values: $ is just like * in the SAP R/3
    d.     If you want all variables to be filled with authorization values at runtime.
    5)     Hierarchies are used in SAP BW to rank Employees.
    a.     True
    b.     False
    6)     RFC destinations tell SAP systems where external systems are located.
    a.     True
    b.     False
    7)     Which are the following objects are used for infosource with flexible updating
    a.     S_RS_ISOUR
    b.     S_RS_ISRCM
    c.     S_RS_ISOCR
    d.     S_RS_ISCOM
    8)     Which of the following regarding Info area is correct
    a.     Group of Infocube.
    b.     Group of Infosource
    c.     Group of source system
    d.     Group of actual data.
    9)     Field S_RS_COMP can protect the query elements by infoarea,infocube and query name that user is trying to access.
    a.     True
    b.      False
    10 ) Authorization object S_RS_HIER is used when creating infocubes.
    a.     True
    b.     False
    11)If the info object is authorization relevant then it must have authorization object.
    c.     True
    d.     False
    12) What is composite role.
    a.     Includes number of roles
    b.     Single role including number of authorization keys\
    c.     Role within a role
    d.     None of the above.
    13) EP uses same role for portal access.
    a.     True
    b.     False
    14) You must include S_RFC in any role used by reporting user.
    a.     True
    b.      False
    15)     Same BW role can be used for another BW system using the same client.
    a.     True
    b.      False
    Advance Thanks,

    Can anyone please help me urgently?
    Advance Thanks.

  • 2 questions needing answered (plz help)

    My first question is this...
    In LE8 can you take a drum pattern you made in the arrange window and make it into a audio file so u can cut up and audio wavs?
    my second question is this.. my built in microphone broke on my laptop, can i get a USB microphone and plug it in and use in Logic? If it's possible i would know how to set it all up myself, but i am just wondering if u can
    thanks
    http://www.myspace.com/sibeatz07 (check out my newly mixed song Free Love)

    Hi,
    to use the USB Mic, be warned Logic can only use one Audio Device at a time, so if you use the USB Mic as Device, Logic will find no outputs. <G> You can work around this FRRREEEEEQUEENTLY asked question by establishing an aggregate device. Just to have you warned before The Aggregate Device must contain the USB Mic as input and your speakers (maybe the built in speakers of your mac) as output.
    However, i would not recommend an USB Mic. Buy a decent 150$ Audio Interface and a 100$ SM58 instead, and you'll be happy for a mac's lifetime.
    Cheers,
    Fox

  • Simple Question, need answer please!

    Hi,
    I've simply forgotten how to select part of a track in Garageband?
    I've imported a 4 minute track and need to select 30 seconds of it in the middle somewhere. I done it yesterday, it highlighted smaller yellow boxes along the top of the track but i cannot get it to show this time!
    Answer appreciated!

    Don't worry, I found it!

  • Quick question-please answer.

    Hello, I have a 13.3 inch Macbook. All I want is for me to be able to connect a cable from the laptop to the television(whether it's S-Video or with the red-white-yellow cables) and it will display what's on the screen. What products do this?
    Thanks!

    Hi
    You need Apple's mini-DVI to video adaptor. I can't link to the apple store page, but search for "mini DVI video", and you'll find it. You can either run an S-video cable, or an RCA (the yellow part) out to your TV.
    For audio, you can run a cable from your 3.5mm mini audio jack to the red and white stereo RCA inputs on your TV. Here's one at random; Monster Cable probably has a good version.
    Matt

  • Re: Quick Question,  Need help with If else returns please!

    if(calculateYearsJoined () >=10)w(<-- Honda, Harley, BMW, Triumph, Ducati racer)

    now doesn't this look better?
    i changed one of your methods
    public class Member {
        private String firstName;
        private String lastName;
        private double heightInches;
        private double weightPounds;
        private int yearOfBirth;
        private int yearOfJoiningClub = 1990;
        private String membershipNumber;
        private int currentYear;
         * Constructor for objects of class Member
        public Member(String first,String last,double height,double weight,int birth,int join,String memberNumber,int curYear ){
            firstName = first;
            lastName = last;
            heightInches = height;
            weightPounds = weight;
            yearOfBirth = birth;
            yearOfJoiningClub = join;
            membershipNumber = memberNumber;
            currentYear = curYear;
        //Behaviors
        public String getFullName() {
            String full;
            full = firstName + " " + lastName;
            return full;
        public int calculateYearsJoined() {
            int yearsJoined;
            yearsJoined = currentYear - yearOfJoiningClub;
            return yearsJoined;
        public int calculateAge() {
            int ageOfMember;
            ageOfMember = currentYear - yearOfBirth;
            return ageOfMember;
        public int calculateAgeOfAtJoining() {
            int ageOfJoining;
            ageOfJoining = yearOfJoiningClub - yearOfBirth;
            return ageOfJoining;
        public boolean getsDiscount(){
            if(calculateAge() < 12) {
                return true;
            if(calculateAge() >= 65) {
                return true;
            if(calculateYearsJoined () >=10)
                return true;
            return false;
    }

  • Some int questions;; need answers

    what is the difference between BI and BW?
    what type of scheduler u have used in loading data?
    wat tool u r using for client support (to resolve queries)?
    what type of errors u come accross in support? example one real instance
    please provide answers
    bw job seeker

    Ramakrishna,
    Check the below...
    what is the difference between BI and BW?
    BW is called as BI in Netweaver 2004 and 2004's..
    what type of scheduler u have used in loading data?
    The ques is not clear...
    wat tool u r using for client support (to resolve queries)?
    There are CRM tools like Vantiff, remedy used for client support.
    what type of errors u come accross in support? example one real instance
    Error while activating data in ODS object....

  • Quick Question Need Some Help

    i try to open i chat and i get an error message saying
    You can't use this version of the application iChat with this version of Mac OS X.
    4.0.8
    i updated to snow leperd 2day and it wont let me go on
    please help awnser asap thank you

    Thanks a bunch. I was having the same exact problem with Safari and Ichat and this solved it. So simple too. Thanks for the help.

  • Quick question: need some help with a lens effect filter

    I'm playing with the iphone 8mm video cam app and they have this familar lens effect... as seen here
    http://www.youtube.com/watch?v=Dkh7Ok8cQmw
    Would anyone know the name of this effect... it's almost like a hard pulsating vignette that you'd see in old 70's home films
    I wanted keep the video as clean as possible and use a plug-in or method to re-create that effect in post-production....

    Having done 8mm film transfers for over 20 years, I can say that I've NEVER seen the frame of the film jump like that vignette does. To me, it makes it look very fake. The rest of the effect looks OK; the image jitter, the light flicker, etc, but the vignette should be stable.
    -DH

  • Copy FLASH to USBFLASH0...Simple Question need answered

    I would like to copy all folder/files from flash to usbflash.  When I receive a new router to configure, I would like to use my usb-stick to copy everything from flash, including that ccpexp folder with many sub-folders, to my usb.  Can someone assist with how to perform or options?

    Ah...I tried that several times with nno luck.  This should be an easy thing to due.  I know someone will tell me to use ftp or tftp but I really don't think I have to if the router has a usb port.  Doing files individualy will work, but if a router has many files in flash then a simple COPY command should be enough.  Am I missing something?

Maybe you are looking for