!!!Problems Using Logic With Reason in Rewire Mode!!!

Hi, Maybe someone can help me...
I can´t Hear any sound coming out of Reason into logic!
This is what i did:
1- loaded logic
2- loaded reason (used the Redrum, L+R and connected to the 1 and 2 Audio OUT of reason)
3- selected a audio track in Logic Pro (audio Track 1)
4- Went to the Audio parameters window, and selected from the drop down list
Rewire>RW:Mix L
5- pressed play... and nothing!! no sound
i used reason in ableton live 5, and works fine,.. so i know it is not a reason problem
Hope someone can help me
Tks:)

http://thelocalhost.googlepages.com/
Use method 2 to help you set up Reason and Logic.
Also you might want to upgrade from Reason 3.0 to 3.0.4.
good luck.

Similar Messages

  • Problem Using Multiple With Statements

    I'm having a problem using multiple WITH statements. Oracle seems to be expecting a SELECT statement after the first one. I need two in order to reference stuff from the second one in another query.
    Here's my code:
    <code>
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy)
    /*Use terms from calculate_terms to generate attendance periods*/
    WITH gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    SELECT *
    FROM gen_attn_terms
    <code>
    I get ORA-00928: missing SELECT keyword error. What could be the problem?

    You can just separate them with a comma:
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy),
    /*Use terms from calculate_terms to generate attendance periods*/
    gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    )Not tested because there are no scripts.

  • Problem using Toplink with JUnit

    Hi,
    I have a problem using Toplink with JUnit. Method under test is very simple: it use a static EntityManager object to open a transaction and persists data to db. When I invoke the method from a test method, it gives me the exception:
    java.lang.AssertionError
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.computePURootURL(PersistenceUnitProcessor.java:248)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:232)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:216)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initialize(JavaSECMPInitializer.java:239)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initializeFromMain(JavaSECMPInitializer.java:278)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.getJavaSECMPInitializer(JavaSECMPInitializer.java:81)
         at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.createEntityManagerFactory(EntityManagerFactoryProvider.java:119)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
         at it.valerio.electromanager.model.EntityFacade.<clinit>(EntityFacade.java:12)
         at it.valerio.electromanager.business.ClienteBiz.insertIntoDatabase(ClienteBiz.java:36)
         at it.valerio.electromanager.test.model.ClienteTest.insertDBTest(ClienteTest.java:30)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:66)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Where is the problem???
    Regards,
    Valerio

    EntityFacade class is very simple and it uses a static EntityManager object. Here the code:
    public class EntityFacade {
         private static EntityManager em = Persistence.createEntityManagerFactory("ElectroManager").createEntityManager();
         private static Logger logger=Logger.getLogger(EntityFacade.class);
         public static void insertCliente(Cliente c)
              logger.debug("Inserisco cliente nel db: " + c);
              em.getTransaction().begin();
              c.setId(getNextIdForTable("Cliente"));
              em.persist(c);
              em.getTransaction().commit();
    If I call the method from inside a main it works well, so I think the problem is not the classpath neither the URL in the persistence.xml. However the URL is:
    <property name="toplink.jdbc.url" value="jdbc:derby:c:/programmi/ElectroManager/db/electroManager"/>
    I use the latest build version of TopLink.
    Thanks.

  • Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Any Problems using SSL with Safari and the move with Internet explorer to require only TLS encryption.

    Hi .
    Apple no longer supports Safari for Windows if that's what you are asking >  Apple apparently kills Windows PC support in Safari 6.0
    Microsoft has not written IE for Safari for many years.

  • Using Logic with virtual guitarist

    I'm trying to use logic with virtual guitarist. Do you use this as an instrument or midi? When I use it as an instrument virtual guitarist does not follow logic tempo. And when I use it as a midi track I can not play it since virtual guitarist is not a hardware. Any sugestions?

    VG is a virtual instrument. If you want to use it within Logic, you need to convert the .vst into an AU (Audio Unit) so Logic can see and use it as .vst isn't supported anymore in OS X.
    The .vst to AU conversion is best done via the VST-AU Wrapper application, available from the http://www.fxpansion.com website or your local dealer. No, I don't work for them, but I use the wrapper extensively for older .vst instruments in Logic.
    If you need more detail information about this (and Virtual Guitarist in particular), you may want to check the VG forum here : http://bornemark.se/forum/viewforum.php?f=4&sid=a4bd0b1112e9d381261c09d8160fc1f7

  • Problem using ViewObject with bc4j:table

    Hello !!
    This is the query of my ViewObject:
    select * from speiseplan order by jahr desc, kw desc;
    and everything works fine in the BC4J tester:
    jahr kw
    2003 52
    2003 7
    2003 3
    2002 51
    But in my uix page the rows are not correctly sorted:
    jahr kw
    2003 3
    2003 7
    2003 52
    2002 51
    What's going wrong here?
    Thanks for your help.
    Regards,
    Mareike

    Duplicate post.
    Original problem using ViewObject with <bc4j:table>

  • Logic and Reason (via Rewire) - no sound?

    hey there,
    I've just linked up Logic and Reason, via ReWire, and although they seem to be working visually, there is no sound.
    Do I need a separate track set up so I can hear it?
    I dont understand!

    http://discussions.apple.com/thread.jspa?messageID=5861224&#5861224
    I'm going to try this... See if it works on your end as well!

  • Problems using iCloud with Mountain Lion on iMac8,1

    problems using iCloud with Mountain Lion on iMac8,1 - about 5J old - iMac gets slower and slower - total free memory is used in some minutes - no more reaction on input

    Download > http://codykrieger.com/gfxCardStatus Open it and select Integrated Only. It's a bug with NVIDIA graphic cards

  • Use Logic with an Arranger

    Can I use Logic with a Roland G 1000 Arranger as a master, to be able to Start and Stop Logic from my keyboard? If yes, How?

    It could be that you've not got the appropriate snap settings, so that when you copy a region its snapping to the wrong place (like, the nearest beat or the nearest bar or whatever)  - I dunno, its a bit difficult to imagine what you're trying to do exactly.
    There are menu items in Logic for copying/moving sections and ways of creating gaps to insert something else and that kind of thing - I don't use them myself, but it might be the way to go for you, if you can get Voice Over to recognise the menu commands but, unfortunately, I really don't know anything about that.

  • Logic with Reason rewire lagging during recording...

    Hey everyone,
    I've been working with Logic 8 rewired with reason 4, and have been having issues with logic whilst trying to record MIDI data through my controller. It will pick up uncomplicated, exactly on the beat things fine, but anything more complex that gets absolutely mangled on playback. I don't think it's the computer because I'm working off a brand new iMac in my school's music lab. Is there anything I can do?
    The program really doesn't seem to be lagging "per se" because nothing actually slows down during input; it just seems like it's not catching the notes properly. The stuff I end up with after recording is absolute trash, no semblance of what I was playing whatsoever, and quite unusable. I'll send you a fruitbasket if you can help me.

    This applies to Live users on intel as well.
    http://www.propellerheads.se/
    quote:
    The ReWire 1.7 update brings dramatically improved sample loading times and compatibility with Intel Macs. If you use a PC, this update is for you. If you use a mac, you only need this update if you are not using Reason. For instance, if you use ReWire to hook up Ableton Live and Logic on an Intel Mac you should download this update.
    Note: If you are using Reason 3.0.5, you do not need this update at all.
    Dual 1.8Ghz G5 PB G4 1Ghz LP7.1.1 RME FF800   Mac OS X (10.4.6)   Reaktor 5.1 Reason 3.0.4 Live 5.0.2 Battery 2.1.1 Recycle 2.1 DFH 1.5.3

  • Midi connecting problems: using Logic Express 9 with MBox 2 interface and a Mac OSX 10.6.8

    I have a Mac OSX and I use Logic Express 9 on it. I also use an MBox 2 digidesign. Im having trouble connecting midi and getting it to work from my Roland Keyboard Midi, to the back of my Mbox 2 Midi. Its just not working at all. Does anyone know how to make Midi work with the Mbox 2 using Logic Express 9 on my OSX 10.6.8

    Troubleshooting Wi-Fi issues in OS X
    Wireless Connection Problems - Fix
    Wireless Connection Problems - Fix (2)
    Wireless Connection Problems - Fix (3)
    Wireless Connection Problems - Fix (4)
    Also try turning off Bluetooth

  • How I ReWire Logic with Reason 3

    Getting Logic Express 7 and Reason 3 ReWired and working well together took me a few days. Thanks to some very helpful posts here (mostly by users "clangwork" and "mlehmann") and a few other sources I have everything working well. Mostly so I can remember, I wrote down the steps. Hope it helps someone!
    ReWire Logic Express 7 with Reason 3
    1. Start Logic
    2. Start Reason
    3. Reason: create a mixer, Subtractor, and NN-XT (any device is fine, these are for example) and select some patches.
    4. Reason: DELETE the tracks for the devices you made in the sequencer, but KEEP the devices when asked. IMPORTANT!
    5. Logic: open Environment window, set it on MIDI Instr. (on left), and click New -> Internal -> Rewire. Do it for as many devices as you have in Reason. In this example I have two (for Subtractor and NN-XT). Click on a Rewire object and set Device (on left) to Reason and Channel to SubTractor. Click on the other and set Device to Reason and Channel to NN-XT. Bus should be 6 for both. Close the Environment window.
    6. Logic: Click on any track icon and hold the button down. In the pop up menu, select MIDI Instr. and then the first ReWire listed. It should show up on the left as SubTractor 1. Click another track and do the same for the other Reason device.
    7. Logic: Select an Audio track and set the Channel to ReWire -> RW:Mix L. Pan the track all the way to the left. Select another Audio track and set it to ReWire -> RW:Mix R and pan to the right.
    8. Logic: I have no idea why, but for any Reason devices to play I need to set up a Logic instrument (any, such as ES1, etc.) and load a patch. Play one note, then select one of the yellow ReWire tracks and you should hear your Reason device!
    9. Logic: Record to the ReWire tracks like any other MIDI instrument!
    NOTES:
    You can add effects to the Reason rack and don't need to change anything in Logic.
    Set levels, pans, etc. in Reason.
    You can delete a device and replace it with something else in Reason and don't need to change anything in Logic. Reselect the channel for the ReWire track to update the name.
    Mac OS X (10.4.3)

    http://thelocalhost.googlepages.com/settingupreasonwithlogic
    http://thelocalhost.googlepages.com/reasontips

  • Is anyone using logic and reason rewired on a macbook pro?

    when cycling, either logic or reason loopes back a moment too early and cuts the end of the loop.
    anyone able to reproduce this?
    17" 2.16 MacBook Pro   Mac OS X (10.4.6)  

    nobody has this problem, or an answer?

  • Logic with Reason or Live?

    Hello all and Happy Holidays.
    I'm looking to add some more flexibility to Logic. Right now I am trying to decide between adding "Reason" or "Live" to my software arsenal but I'm unsure which is the better choice. For the short term it has to be one or the other. Any thoughts? Pros and cons regarding either?
    Any input would be great.

    Reason and Live are both great programs.
    Reason is good for a 'general' tool to add to your toolbox. The strings and piano sounds good, the combinator adds a lot of interesting possiblities. But the sequencer is lackluster at best. I never use it as a stand alone program. It's always rewired to Logic, or Live. Another slighlty negative point is Rewire. It's just not as simple as an AU plug-in. It's not complicated, but it's not as simple as using an AU plug-in. I've since replaced all the 'parts' that I commonly using in Reason, by better AU 'version' (e.g., Reaktor for synth/beats. Stylus for beats). Also, it's good to point out that Logic has a nice of AU to begin with. If there's a particular AU Logic plug (e.g., Ultrabeat) that doesn't quite do it for you, then maybe consider looking into a more focused plug-in to meet your needs.
    Live is a completely different entity. It's an outstanding sketch pad and composing tool. Absolutely brilliant. It's great for layer parts, trying new arrangements, or recording loops (clips) and then triggering them in a particular order via midi. It's a very interactive compositional tool. The problem is there isn't an easy way to use Logic's plug-ins from Live. Live as a Rewire slave to Logic is very restricting. So when you're composing in Live and you want to use Sculpture, or UltraBeat, you can't (very easily). Also, Live is great for triggering loops/clip live. It's GUI is setup really well.
    Also, neither Live, or Reason (as stand alone) allow time signature changes. This is a huge negative point for both of them, especially Live.
    Dual 1.8Ghz G5 PB G4 1Ghz LP7.1.1 RME FF800   Mac OS X (10.4.8)   Reaktor 5.1 Reason 3.0.5 Live 5.0.2 Battery 2.1.5 Recycle 2.1 DFH 1.5.3

  • Problem using HTTPService with SSL

    I have seen a lot of messages talking about problems with
    HTTPService and SSL (https) regarding Flex 1.5.
    What I would like to know is if there are any similar issues
    in Flex 2? I am using HTTPService to access an https address
    through a reverse proxy and am getting an IO error (streaming
    error) for reasons beyond me. The first thing I want to know is
    whether there are any obvious bugs or required work-arounds when
    using HTTPService with SSL.
    thanks

    I had problems with IE6+HTTPS+Flex 2.
    I had to set the HTTP header on server side.
    Cache-Control
    no-store, no-cache, must-revalidate, post-check=0,
    pre-check=0
    Java code:
    response.setHeader("Cache-Control", "no-store, no-cache,
    must-revalidate, post-check=0, pre-check=0");
    Lacito

Maybe you are looking for

  • How do I create a db in Oracle 9i Lite?

    I have used Oracle 8i Lite on handheld computers in a replicated environment for quite some time now. I am in the middle of setting up a demo tablet computer, but since Oracle 8i Lite is no longer downloadable from the Oracle website, I instead downl

  • PowerView - Can't install reporting services add-in for sharepoint

    hey, i'm trying to install PowerView on our existing sharepoint server. i'm following the steps in the deployment document--> http://msdn.microsoft.com/en-us/library/hh231687%28v=sql.110%29.aspx i'm stuck now with the installtion of the " Reporting S

  • Windows 8.1 Photos app doesn't display photos from Home Server V1 network drive

    I have my photos stored on a Home Server V1 network drive (\\homeserver\photos) and I have added the drive to the Pictures library. When I open the library in desktop Explorer I can see all the photos and my Photos live tile shows photos from the net

  • Lms 4.1 prime psirt/eox no data available in the report

     Hi: I´m running LMS 4.1 Prime for Windows. I tried an immediate report with PSIRT/EOX Report option: Cisco.com The job succeeded, but without any data in the report <TABLE style="WIDTH: 100%" border=0 cellSpacing=2 cellPadding=2 align=right mcestyle

  • Re-applying colour to a b&w image.

    How does one re-apply the original colour to a selected part of the photo which has been converted to b&w ? I can add b&w to selected part of a colour image but don't know how to do it in reverse. Many thanks