Porting logic sessions between studios

Hi,
I work with Logic Pro 7 at my home studio along with the studio at my workplace. I'm trying to figure out how to take session files back and forth between the two without having issues of missing audio instrument files, etc.
btw, both studios have the same software plug-ins (Kontakt 3, Vokator, Spectrasonics Atmosphere, etc.).
One issue I have is that when I "consolidate" a Logic project into one folder, it doesn't save 3rd party plugin settings in the folder (it only saves Logic-related plugs like EXS24).
Does anyone work in this type of situation?
Do you have any suggestions to make porting Logic sessions between two locations easier?
-Michael

I believe the "Save as project" function is the best thing for that situation. Like you said, it won't automatically save 3rd party plugin settings, but you can always save a 3rd party plugin (in the plugin window), and then copy the file from (from user/library/app support/logic/plugin settings) into your project folder. It would be nice if "Save as Project" included that, but it's still pretty useful for consolidating elements of your project.

Similar Messages

  • Wondering if possible to open Logic sessions in Soundtrack Pro?

    Hi there - operating Logic Studio - wondering if it is possible to open Logic sessions in Soundtrack Pro like it is possible t open garageband sessions in Logic?

    No not possible but you can send an audio file/region from Logic to STP for editing and back again.
    STP does not support MIDI. Logic projects could contain MIDI regions and software instrument channel strips. This would not work!
    Export your track from the logic project to audio files and import them into STP as a multi-track project.
    JG

  • How to share the same session between JNLP Application and browser session

    How to share the same session between JNLP Application and browser session using BasicService.showDocument(url) method? It appears whenever i launch any URL from within a JNLP application using BasicService.showDocument(url) , it creates new instance of browser and session even after i used cooke handlers to restore JSESSIONID and Ltpa token etc.
    public static int showDocument(String urlToOpen)
    BasicService obj = (BasicService) ServiceManager.lookup("javax.jnlp.BasicService");
    obj.showDocument(urlToOpen);
    }

    Try using Reflection

  • Multiple 'logical joins' between a fact table and one dimension table

    It appears that one cannot create multiple ‘logical joins’ between a fact table and one dimension table in OBIEE using the Oracle BI Administration Tool. For example, considering a Business Model with a dimension table TIMES and a fact table FACT containing START_TIME and END_TIME, we would like to create separate logical joins from FACT to TIMES for the START_TIMEs and END_TIMEs? Obviously, the underlying foreign keys can be created, but as far as I can tell the Oracle BI Administration Tool doesn’t support this. The workaround would be to replicate the TIMES table, but that’s ugly.
    I seek an alternative approach.

    Try this. Create an two aliases for the TIMES dimension (Start & End) in the Physical Layer and then remove foreign key to the "Parent" Times dimension. Create the Foreign Key in the Physical Layer to the new aliases and then create the complex joins in the BMM Layer to the new aliases as well. This will allow you to present both dates within the same table in the Presentation Layer. Not the most elegant solution but it works.

  • Logical Or Between List of AttributeConditions

    Hi all!
    Is it possible to make a logical or between AttributeConditions in a list instead of the default and?
    I want to have an or condition which would result in accountType could start either with r OR m (see example below which actually never would evaluate true since it cannot start with r and m).
    <list>
    <new class='com.waveset.object.AttributeCondition'>
    <s>accountType</s>
    <s>startsWith</s>
    <s>r</s>
    </new>
    <new class='com.waveset.object.AttributeCondition'>
    <s>accountType</s>
    <s>startsWith</s>
    <s>m</s>
    </new>
    </list>
    Thanks a lot and regards from Vienna / Austria!
    Michael

    Hi adimut, so if is imposible to use a logical OR with AttributeConditions, I could use an append tag to join the two result lists, but how I can order the result list?
    I'm doing a search to the Log objects and I want to get the latest record of an action='CT' OR 'MO'
    Thanks,
    -Edgar Torres

  • A way to upload and downed complete Logic sessions

    Hi, if I wanted to transfer a whole Logic session to someone else using Logic I used to put it on my Idisk public.
    He could download and open it. Simple.
    Now Idisk disappears I'm trying to find another way to do the same.
    When using dropbox I need to upload track by track (after having bounced everything), so that's not a solution.
    Dropbox won't upload the Logic session as 1 item.
    Does anyone have a solution for this?
    Many thanks.

    Hey Stefaan. Check out Gobbler. Works great. Let me know if this was helpful to ya!

  • How to share Sessions between 2 Weblogic ?

    Hello,
    I've some problems in setting on Weblogic. Suppose there are 2
    Weblogic Servers, WebA and WebB. A New Session will be created if user
    go to the page in WebB from WebA. Is there any methods to share the
    Session between them ? I turned on the following properties in
    Weblogic.properties already.
    weblogic.httpd.session.persistence=true
    weblogic.httpd.session.persistentStoreType=jdbc
    weblogic.httpd.session.persistentStorePool=demoPool
    weblogic.httpd.session.persistentStoreShared=true
    But a new entry will be created as long as user go to the page at WebB
    from WebA.
    In fact, I want to use the Session entry created by WebA.
    Thx
    Lim

    You need to make sure that session tracking is enabled,
    either via cookies or url rewriting. Otherwise, the incoming
    request won't be able to tell the server which session it belongs to.
    Jason
    "Cheung" <[email protected]> wrote in message news:[email protected]..
    Hello,
    I've some problems in setting on Weblogic. Suppose there are 2
    Weblogic Servers, WebA and WebB. A New Session will be created if user
    go to the page in WebB from WebA. Is there any methods to share the
    Session between them ? I turned on the following properties in
    Weblogic.properties already.
    weblogic.httpd.session.persistence=true
    weblogic.httpd.session.persistentStoreType=jdbc
    weblogic.httpd.session.persistentStorePool=demoPool
    weblogic.httpd.session.persistentStoreShared=true
    But a new entry will be created as long as user go to the page at WebB
    from WebA.
    In fact, I want to use the Session entry created by WebA.
    Thx
    Lim

  • Keep alive a session between 2 BAPI calls

    Hi -
    I am calling several BAPIs to maintain data. I am calling from an outside system as I published the BAPIs as Web Services.
    I would like that the session between 2 BAPI calls is kept, so I don't miss some session info between call #1 and call #2.
    Anyone knows a way of keeping alive a session between 2 BAPI calls?
    Thanks !

    Try this..
    <b>ARFC with Resource Management (Parallel Remote Function Call)</b>
    CALL FUNCTION 'MYFUNC'
    STARTING NEW TASK 'T1'
    DESTINATION IN GROUP 'PRFC'
    EXPORTING ...
    TABLES ...
    EXCEPTIONS ...
    communication_failure = 100
    system_failure = 101
    resource_failure = 200.
    IF sy-subrc= 102.
    wait and retry...
    ENDIF.
    <b>Define ‘PRFC’via RZ12</b>
    Amandeep

  • Siebel CRMOD Webservice - Logical OR between fields

    Hi,
    Has anyone applied a logical OR between different fields in the CRMOD web-service? If yes, can you pls post how to achieve this.
    Regards,
    Guru

    Hi Double U,
    a possibility could be to create two restricted key figures based on the key figure in your query and restrict the first one to the first status variable and the second one to the second status variable. Then you create a calculated key figure which is the total of your two restricted key figures. The result should be the same as an OR selection.
    Unfortunately I do not know a more easy way to realize an OR relation between two variables.
    Hope that helps
    Stephan

  • Hi, ive been having trouble passing my logic sessions to another computer, we're both using a macbook pro 10.6.8 and logic pro 9 with the same plugins, the session opens in the other computer but all the synths reset to presets

    Hi, ive been having trouble passing my logic sessions to another computer, we're both using a macbook pro 10.6.8 and logic pro 9 with the same plugins (native instruments komplete 7), the session opens in the other computer but all the synths reset to presets, this didnt happen the first time I shared a session, but its been happening lately quite often

    kwmlr439 wrote:
    CSOUND Read the title please:
    Re: Macbook Pro 10.6.8 RAM Upgarde to 8 GB
    The amount of RAM is not dependant on the operating system. It is all about the model of you Mac.
    10.6.8 is the version of OS X that is installed on your system. It has no real baring on the amount of RAM that CAN be installed.
    Personally I have never had good luck with Corsair RAM. I have always had good luck with Crucial and Kingston.
    Message was edited by: Shootist007
    Message was edited by: Shootist007

  • How to use my logic sessions and ilok at two places

    Hi there,
    I am wondering if I can use my Logic sessions and even my ilok plugins at two places, two countries?
    - but still keeping my ilok at one place.
    Is there any way via internet? perhaps using some kind of network server for my sessions
    - iDisk perhaps?
    what is the best solution?
    Thanks
    Message was edited by: Olavur
    Message was edited by: Olavur

    Buy a second iLok, and licenses for your software

  • I did a Logic Session and cannot find the session anywhere. I only have an MP3 of the session!! What can I do?

    Working in a Logic session and thought I saved the session only to discover that when I bounced an MP3 of the session my session wasn't saved!! The only recovery is to retrack the entire session!!

    If you recorded audio or bounced down software instruments to audio, the files will still be on your hard drive and can be taken back into a new project.
    If it was all MIDI/software instruments, you're out of luck if you didn't save the project, I'm afraid.

  • Add VM to a Port Mirroring Session

    I need every VM added to a given folder in vCenter to be added to an existing distributed switch port mirroring session.  Is this possible using PowerCLI?

    The following will add the VM ($vmName) to a specific port mirroring session ($mirrorSessionName) on a distributed switch ($dvSwName).
    You can define the traffic direction(s) for which the VM needs to be added with the variables $Ingress and $Egress.
    Note that there isn't any error checking in the script.
    For example if the mirror session does not exist, the script will fail without an informative messages.
    To repeat this script for all VMs in a specific folder should be not too difficult, I assume ?
    $dvSwName = 'dvSw1'
    $mirrorSessionName = 'Test'
    $vmName = 'VM2'
    $Ingress = $false
    $Egress = $true
    $dvSw = Get-VDSwitch -Name $dvSwName
    $vm = Get-VM -Name $vmName
    $vmNic = $vm.ExtensionData.Config.Hardware.Device |
        where{$_.Backing -is [VMware.Vim.VirtualEthernetCardDistributedVirtualPortBackingInfo]}
    $spec = New-Object VMware.Vim.VMwareDVSConfigSpec
    foreach($mirrorSession in $dvSw.ExtensionData.Config.VspanSession){
        if($mirrorSession.Name -eq $mirrorSessionName){
            $vspan = New-Object VMware.Vim.VMwareDVSVspanConfigSpec
            $vspan.Operation = [VMware.Vim.ConfigSpecOperation]::edit
            $vmInRc = $mirrorSession.SourcePortReceived | where{$_.PortKey -contains $vmNic.Backing.Port.PortKey}
            if($Ingress -and !$vmInRc){
                $mirrorSession.SourcePortReceived.PortKey += $vmNic.Backing.Port.PortKey
            $vmInTx = $mirrorSession.SourcePortTRansmitted | where{$_.PortKey -contains $vmNic.Backing.Port.PortKey}
            if($Egress -and !$vmInTx){
                $mirrorSession.SourcePortTransmitted.PortKey += $vmNic.Backing.Port.PortKey
            $vspan.vspanSession = $mirrorSession
            $spec.vspanConfigSpec += $vspan
    $spec.ConfigVersion = $dvSw.ExtensionData.Config.ConfigVersion
    $dvSw.ExtensionData.ReconfigureDvs($spec)

  • Session between multiple Webservice calls from PI7.0

    Hello XI SDNers,
    I am unable to overcome my Webservice session problem using SOAP (Axis) adapter. My scenario is as follows:
    I am calling a external Webservice deployed in Axis webservice engine from PI7.0, during my first call:  I call synchronous "Login" webservice and I became the response "User is Logged in"
    during my second synchronous call "GetItem", the webservice returns "The user doesn't have valid session". The two synchronous calls are executed from same scenario one after another!
    I lost my session after the "Login". Is there any way in PI 7.0 to maintain the session?
    Note: I tried the same scenario using XML SPY SOAP client, it is working!!!  it is maintaining the session between multiple webservice calls.
    Is there any suggestions to overcome this problem?
    Thanks and regards,
    Satish.

    Hi Satish,
       We are working on the same sort of scenarios, where we have to call more than one webservice in a sequential fashion using the same session id details.
        What we did was we built new xsds adding session details node using the webserive request and response xsds. And we are maintaining a sessions table which contains session id and  status fields in PI. So we send webservice request with the session id details. We wrote an UDF to get the session details from PI and set the status field as busy so that no other request uses the same session details.
       Webserive response again contains the sessions details which can be used for the next webservice request.
      Finally after all the calls set back the status to Active in PI table.
    Webservice Calls From a User Defined Function
    /people/bhavesh.kantilal/blog/2006/11/20/webservice-calls-from-a-user-defined-function
    Hope this helps.
    Thanks,
    Vijaya.

  • RS 232 port to communicate between cFP 2100 and Multiple cFP 1808

    Hello All,
    I am using one cFP-2100 (controller) and two cFP-1808 (network contoller) for a project.
    All the three devices have Ethernet port, so i can connect to a network switch for communicating with the Host PC.
    My question is:
    All the three devices have Serial Ports (RS 232) too, Can i use those ports to communicate between the three devices (1 controller and 2 Net. controllers) and use the ethernet port in the controller (2100) only for communicating with a Host PC?
    If this is possible, how to do the RS 232 cabling ?
    Regards
    John

    Hi bjsprem,
    You can connect network modules to the controller with serial.   This KB shows how to do this.  Hope this helps!
    --Starla T. 

Maybe you are looking for

  • How do I create *separate* calendars for *one* user?

    I used to use Now Up-to-Date (NUD), but it's passé now, and I've switched to iCal. But with NUD you could have as many calendars as you wanted. A "calendar" was just a document, so you could open whichever one you wanted at any given time and even de

  • Multiple stored procedure in Database Adapter

    Can I manually create the wsdl for database adapter, which can have multiple operations for different stored procedures? I tried creating a wsdl as - <definitions name="CustomAdapter" targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/CustomA

  • IPod wont sync podcasts.

    My iPod 5th Gen. Will not sync recent pod casts. For some reason in the past it placed them in Audio Books, but now it wont carry them over at all.  Any ideas? Colin

  • Sorting of input variables

    Hello everybody, I have still problems with the sorting of input variables. I know that it is possible to sort the input variables for the selection screen with the sorting screen (query Properties). For a special query I built a currency conversion

  • Everytime i click in something or i want to write its get stuck for 1 sec its what i can do to stop it?

    its like when i start write its get stuck for 1 sec and when i open new tab its get stuck everythink i clicke its get stuck for 1 sec