Hi! How do I switch existing automation data for one parameter to another?

Hello! I am new to Logic 8, and actually to using the Logic automation feature. Here is the deal: I have some old-school Logic event data that I recorded as a kind of automation (before the current kind of dedicated automation) for an EXS24 parameter. I need to change this event 'automation' to actual Logic automation, as Logic 8 does not read it (as Logic 7 did before it). So, I highlighted all of the events in my old-school 'automation' region in the event list. I had to change the number value to a common number assignment so that I could Change Selected Event Data into Track Automation. I selected volume (number seven, I believe), and than highlighted all events, clicked on the event region, than went to options and selected my desired automation transformation destination (say that three times fast). Great! I have my region as automation! Logic 8 knows what to do with this! But, it is volume. I need it to control the LFO 2 Rate of the EXS24. Problem is, that when I switch the automation parameter from Volume to LFO 2 Rate, the automation disappears. It seems as though that automation data is only for Volume. So, how might a charming gentleman, such as myself, go about keeping/converting the same automation, but for the parameter I want to change it to?
Thanks! =)

Hold "command" when switching between automation parameters.
Then you will get a dialog offering you the option to convert the existing parameter's data into the destination parameter, or "copy and convert" (which does the same but leaves the existing volume automation data intact.)

Similar Messages

  • How do i transfer all my data from one itouch to another?

    how do i transfer all my data from one itouch to another?

    Try here  >  http://support.apple.com/kb/HT2109

  • How to move only subset of data from one database to another?

    Both source & destination are Oracle11g databases.
    The requirement details are as below,
    1) The database contains static as well as transactional data for telecom domain.
    2) We have to move region-wise data from one database to another.
    3) There are around 10 regions.
    4) The region wise data extraction from source db is based on around 40 to 50 tables. Rest of the tables contains
    static data & it will not change.
    5) The volume is around 1 million subscribers per region.
    6) The migration is required because
    a) The client is upgrading its base product which uses this database
    b) There is a change in structure of static tables
    c) Hardware upgrade
    d) The client want to start with single region on new database & rest of the regions will be operated from old
    database.
    7) Keep execution time to very minimum.
    I am thinking to have solution as below,
    1) Create destination database with upgraded db structure (as mentioned in 6b)
    2) Create database links to access source db in destination db.
    3) Write SQL queries to fetch data from all the respective tables for a specific region
    4) Write separate PL/SQL blocks for each table to fetch data from source db & insert into respective table in
    destination db
    a) Use FOR ALL & bulk collect to improve the performance
    b) Divide table data into multiple chunks & execute parallel batches (around 10) to insert the data
    5) Validate pre & post counts to verify the success of migration
    Is there any other better way?
    Regards,
    Sandeep

    How to move only subset of data from a partiular table by using transportable tablespace?
    E.g. SUB table using SMP_SUB tablespace contains subscriber data in source database.
    The indexes defined on SUB table are under SMP_IDX_SUB tablespace
    The subscribers data can be categorized by different regions, say region_id column. Then how to move data & indexes of SUB table from source db to destination db?
    any specific example would be helpful.

  • With multiple iPhones and iPad, how do you keep from downloading data from one device to another? ie, my calander ended up on my daughter's iPad.

    With multiple iPhones and an iPad, how do I keep from downloading info from one device to another? All of my info, example my calendar, ended up on my daughter's iPad.

    Each device has its own sync preferences with iTunes when syncing multiple devices with the same iTunes library under the same computer login account.
    If sync calendars with the same calendar is selected under the Info tab for your daughter's iPad sync preferences with iTunes, the same calendar will be synced with her iPad.

  • How can I transfer my iTunes data from one computer to another? PS. My old computer won't turn on

    I Recently bought a new computer and I need to transfer all my iTunes data from my old computer to the new one, how can I do that? And by the way, my old computer won't turn on

    Hello Nousernamebrah
    Well get get your music from your old computer to your new computer, the old computer would have to work and turn on to access the files to be copied over. You also can access any previous purchased music and download it to your new computer as well. Check out the articles below for more information. 
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Download past purchases
    http://support.apple.com/kb/HT2519
    Regards,
    -Norm G.

  • How to move a selected row data from one grid to another grid using button click handler in flex4

    hi friends,
    i am doing flex4 mxml web application,
    i am struck in this concept please help some one.
    i am using two seperated forms and each form having one data grid.
    In first datagrid i am having 5 rows and one button(outside the data grid with lable MOVE). when i am click a row from the datagrid and click the MOVE button means that row should disable from the present datagrid and that row will go and visible in  the second datagrid.
    i dont want drag and drop method, i want this process only using button click handler.
    how to do this?
    any suggession or snippet code are welcome.
    Thanks,
    B.venkatesan.

    Hi,
    You can get an idea from foolowing code and also from the link which i am providing.
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    width="613" height="502" viewSourceURL="../files/DataGridExampleCinco.mxml">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.binding.utils.BindingUtils;
    [Bindable]
    private var allGames:ArrayCollection;
    [Bindable]
    private var selectedGames:ArrayCollection;
    private function initDGAllGames():void
    allGames = new ArrayCollection();
    allGames.addItem({name: "World of Warcraft",
    creator: "Blizzard", publisher: "Blizzard"});
    allGames.addItem({name: "Halo",
    creator: "Bungie", publisher: "Microsoft"});
    allGames.addItem({name: "Gears of War",
    creator: "Epic", publisher: "Microsoft"});
    allGames.addItem({name: "City of Heroes",
    creator: "Cryptic Studios", publisher: "NCSoft"});
    allGames.addItem({name: "Doom",
    creator: "id Software", publisher: "id Software"});
    protected function button1_clickHandler(event:MouseEvent):void
    BindingUtils.bindProperty(dgSelectedGames,"dataProvider" ,dgAllGames ,"selectedItems");
    ]]>
    </mx:Script>
    <mx:Label x="11" y="67" text="All our data"/>
    <mx:Label x="10" y="353" text="Selected Data"/>
    <mx:Form x="144" y="10" height="277">
    <mx:DataGrid id="dgAllGames" width="417" height="173"
    creationComplete="{initDGAllGames()}" dataProvider="{allGames}" editable="false">
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:FormItem label="Label">
    <mx:Button label="Move" click="button1_clickHandler(event)"/>
    </mx:FormItem>
    </mx:Form>
    <mx:Form x="120" y="333">
    <mx:DataGrid id="dgSelectedGames" width="417" height="110" >
    <mx:columns>
    <mx:DataGridColumn headerText="Game Name" dataField="name" width="115"/>
    <mx:DataGridColumn headerText="Creator" dataField="creator"/>
    <mx:DataGridColumn headerText="Publisher" dataField="publisher"/>
    </mx:columns>
    </mx:DataGrid>
    </mx:Form>
    </mx:Application>
    Link:
    http://social.msdn.microsoft.com/Forums/en-US/winformsdatacontrols/thread/ae9bee8d-e2ac-43 c5-9b6d-c799d4abb2a3/
    Thanks and Regards,
    Vibhuti Gosavi | [email protected] | www.infocepts.com

  • How to pass a cluster of data from one VI to another

    Hi all,
    I've got a cluster of controls on my main application VI that I am using to accept data of various types from the user.Next I want to pass this cluster to the input cluster control of another VI perfectly on the generation of a user event. That is, if I have 3 numbers, 2 strings and 2 time stamps in the cluster on the main VI, I want to pass on that exact same data to the control input cluster of the second VI in the same sequence, having the same values.
    How do I do this?
    Here is a snapshot showing the cluster controls on my main VI and the code for my second VI.
    I want to pass the data into the input cluster 'data'. I tried calling the second VI into my main VI and directly hardwiring the cluster and then using an 'Unbundle by Name function' to separate the data, as shown. But this doesn't seem to work properly.
    Regards. 
    Solved!
    Go to Solution.

    The 2 clusters much be identical, then it should work smoothly. To ensure that they are, make a type-def of the cluster and use for both. From what i can see of your code it's clean and correct and it really shouldn't cause a hassle. What's (not) happening?
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • How to transfer SOME apps + app data from one iPad to another

    I have an iPad1 that has tons of apps on it (I call it my app graveyard).
    I have an iPad2 that has my primary apps and this is the iPad that I use on a daily basis.
    I want to move an App and the Saved Data from the iPad1 to the iPad2. How do I do this?
    Again, I don't want to restore everything... just a couple of Apps + their SAVED data from my iPad1 to my iPad2.
    Any help would be greatly appreciated!

    When you restore from a backup - the process is an "all or nothing" deal. You restore all app data and settings. You cannot select just one set of app data to restore.
    You can download the one app only to the other iPad but you cannot restore the data from just one app. It's just not possible to do.

  • How to use session to passing data from one JSP to another JSP

    Dear All, I had create 2 jsp web page and want to do this:
    1. input some data into the text box and click the submit button, the jsp page
    will open another jsp page and send the text box data to the new open jsp page.
    can any one tell me how to open a new jsp web page and reciev data from another jsp page?
    thanks yu very much!
    the question.jsp got some code like:
    <html>
    <input type= 'text' name = 'txtName' size = 10 >
    <input type= 'submit' name = 'submit'>
    <% some jsp code %>
    </html>
    answer.jsp
    <html>
    <%
    some jsp code here
    %>
    </html>

    Contents of HTML forms are transmitted as name-value pairs, so you can call request.getParameter(String name) with your form field's name in order to access its value:
    String textValue=request.getParameter("txtName");Regards

  • HOW TO SEND NUMBER OF ITEM DATA FOR ONE HEADER FROM SENDER TO RECEIVER ?

    HI FRIENDS,
    IF WE ARE SENDING A FILE TO IDOC ( SAP R/3. EX : CREMAS03). THEN HOW WE CAN SEND BANK DETAILS OF A VENDOR(TABLE CONTROL) TO RECEIVER IDOC(SAP R/3). PLEASE SEND THE SOLUTION WITH EXAMPLE( SCREEN SHOTS ALSO IF AVAILABLE)

    Hi !
    Check the E1LFBKM segment of the CREMAS03 idoc, it contains the banking data of the vendor.
    Regards,
    Matias.

  • Possible to copy automation data from one project to another?

    Hi
    I have done some automation editing to a region in a project, and I would like to copy it to an identical region in another project. Is this possible?

    I have not tried this method I'm now going to describe, but 'logic' dictates it should work:
    1. In your donor project, open the *Automation Event List* , ctrl-⌘-E, then open a new Arrange window, ⌘-1. The new arrange window will now contain regions that only hold automation.
    2. Go to *Logic Pro>Preferences>Audio>Devices>Coreaudio* tab and UNtick the Enabled box. (If you don't, each audio file and instrument will have to be reloaded each time you switch from one to the other project. That would drive anyone absolutely nuts.)
    3. Now open the other project, get an Automation arrange window there, like in 1.
    Now you should be able to copy/paste automation regions between the two projects.
    Hope this works... I think that you need to set the playhead at the right position before pasting, but you'll have to figure that out yourself...
    regards, Erik.

  • How do you switch the SIM card from one iphone5 to another?

    I got a new iphone 5 and need to activated it by switching the sim card but do not know how

    Remove the sim.
    Insert it into the other one.
    iPhone User Guide (For iOS 6 Software)

  • How do I switch my 3G account from one iPad to another iPad?

    I have an iPad 2 with the 1GB Verizon 3G service. I have to send it in for a replacement model due to a hardware error. What do I need to do to get my 3G service running on the new iPad? Do I need to call Verizon and cancel or wait until I have the new iPad?

    I would contact them before you send it to deactivate it so they have a record. Then again when your replacement arrives to activate it.

  • Problem in Extracting Data for one cube to another

    Hi,
    This problem exists in Quality Environment of 3.x version.We have two financial cube.
    Cube A1 - Sourced through R/3 system (delta update)  and Cube B1- Sourced through A1 cube.(Full update). These two cubes are connected through update rules with one to one mapping without any routines.
    Basis did a copy of  back-end R/3 system from Production to Quality server.This happened approximately 2 months back.
    The Cube A1 which extracts delta load from R/3 is loading  fine. but for the second cube,  (fextraction from previous cube A1)  i am not getting full volume of data instead i m getting meagre value but the loading shows successful status in the monitor.
    I tried through giving conditions in my infopackage (as it was given in previous year's loading) but then also its fetching the same meagre volume of data.
    Any lights on this will be more appreciable...
    Swami

    Hi Swami
    As you said below issues is in QA system, please check with below and revert back to me if this doesnt solve your problem
    Please check update rules of InfoCube  B1 for all key figures and characteristics, you may find certain objects with "NO UPDATE", (this happens sometimes while copying production system to any other system), if you find any object with"NO UPDATE" then compare this object mapping with Production system update rules, if its not sync then change update mode accordingly
    Please check number of characteristics and key figures existing at InfoCube  B1(production) and compare with InfoCube  B1 (QA), if this doesn't match then check for missing object and add to InfoCube B1
    Hope this will solve your issues!
    -DU

  • Transport Master Data from one server to another server

    How can I transport the master data from one server to another server?
    Client copy will not be possible.
    Regards,
    Subhasish

    Hi,
    Look at the below link, you will understand
    http://help.sap.com/saphelp_45b/helpdata/en/cc/f22c7dd435d1118b3f0060b03ca329/content.htm
    Regards
    Sudheer

Maybe you are looking for

  • Weblogic doesn't start up

    Hi, I use weblogic on my MacBook for few months now and I don't know why since this morning weblogic refuses to start up. Apparently it fails to connect to this address: fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6 I noticed this IPv6 address is the one d

  • Optical Out Port

    Hi guys, I've just bought some 7.1 headphones that fit into the optical out port on my mac pro. I'm just wondering how to open the port or put the cable in? Do you just push it in or do you have to take the little door off somehow?

  • JWS shows a dialog asking about update new shortcut in no-Japanese

    I installed an application at JRE 1.4.1_03, with Japanese JWS. After JRE1.4.2 came up, I uninstalled JRE1.4.1_03 and re-installed JRE1.4.2 without the uninstalled application. JWS shows a dialog asking about updating new shortcut. But the "Yes" and "

  • How to create a custom signal?

    Hello, I am working with the agilent 33250A arbitrary waveform generator, and I am trying to create an arbitrary waveform that is comprised of several sin waves, all at the same freq. and amp. and phase, which start at arbitart times and last for arb

  • System Windows 8 wont shutdown

    I just installed windows 8 PRO on my Lenovo - ThinkCentre M71e. My version of PC is: 3129. Problem is - that PC wont Turn off. When i go to Windows 8 system shutdown: monitor & hdd turnedoff, but green light stays and fans are still working. Then i m