LE 8 Master Level Doesn't Work

Hi. Can anyone tell me how to get my master level slider on the Transport Bar to work? Clicking the Dim button works, but moving the slider has no effect on the Master Level channel strip in the mixer and of course doesn't change the audio level. Neither does the right button which is supposed to set the level to 0db.

Now this is new! When I click the Dim button, the Dim icon highlights, the level drops and the slider jumps to about 3/4 of the way to the end of the range of the slider. Then I move the slider and nothing changes aurally or in the Master Output Channel Strip. When I click the Dim button again ( to deselect it), the button un-highlights, the slider jumps back to the same 3/4 spot. Subsequent slider wiggling has no effect. Also, I've noticed that pressing the 0 db switch on the right has no effect on the Master Output switch, or the level of the signal, but it does cause the Master Level slider to move to that 3/4 spot. What's new is that rather than dimming to the level that I've set in Audio Prefs, the signal is apparently dropping by some set amount subtracted from what the Master Output is set at, ie, when MO slider is low, Dim switch drops the signal to an inaudible level, rather than what I've set in Prefs. What's up with that, do you suppose?
Since I wrote the above, I went back and tried a blank template project file, and the slider works more like what you'd expect, except I was expecting the Master Output slider to actually move along with the Master Level slider in the Transport Bar, which it does not. In the blank template project, moving the slider causes a level change, the Dim and 0db switches work OK. So there is apparently something in the project I'm working on causing the disconnect. Any ideas?

Similar Messages

  • The ok button to set master password doesn't work. Why?

    Almost scammed by TeamView supposedly from Microsoft. Went into my computer to fix event logs.Wanted $109.00 now then asked if I had partial payment. So my dilemma is I don't know if what little security I have has been compromised. Not very computer literate.
    Installing Kaspersky today.
    My problem with Mozilla - tried to set master password but ok button doesn't work. Not on at all. What can I do?
    Thank you/

    TeamView is the name of the program that the scammers used, not the company they are from. TeamView is a legit company, but the scammers are most likely not. For future reference, most legit companies will use a paid program for get remote access to your computer.
    When setting a Master Password, your password needs to fill the quality meter before the ''Ok'' button will become active.
    [https://support.mozilla.org/en-US/kb/use-master-password-protect-stored-logins?esab=a&s=master+passowrd&r=3&as=s Here] is an article for more information about the Master Password feature.

  • Master/detail doesn't work in IE

    I know this has been asked in other ways, but I can't find the answer to my particular situation. Why doesn't the master/detail list work in IE 8, but it does in Firefox? Here is the URL: http://www.boilerbuddy.com/rep_lookup_new.htm. For example, choosing CO should bring up a company listing.

    Try the following
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="SpryAssets/SpryMasterDetail.css" rel="stylesheet">
    </head>
    <body>
    <div class="MasterDetail">
      <div spry:region="ds1BBrep4" class="MasterContainer">
        <select name="myselect" id="myselect" onChange="ds1BBrep4.setCurrentRowNumber(this.selectedIndex);">
          <option value="">Please chhose a state...</option>
          <option spry:repeat="ds1BBrep4" value="{State}" spry:setrow="ds1BBrep4">{State}</option>
        </select>
      </div>
      <div spry:detailregion="ds1BBrep4" class="DetailContainer">
        <div class="DetailColumn">{Rep}</div>
      </div>
      <br style="clear:both">
    </div>
    <script src="SpryAssets/SpryData.js"></script>
    <script src="SpryAssets/SpryHTMLDataSet.js"></script>
    <script>
    var ds1BBrep4 = new Spry.Data.HTMLDataSet("data/rep_db.htm", "reps", {sortOnLoad: "State", sortOrderOnLoad: "ascending"});
    ds1BBrep4BBrep4.setColumnType("Rep", "html");
    </script>
    </body>
    </html>
    Gramps

  • Basic Multi Master Replication doesn't work!

    Hi all,
    <br><br>
    I am studying Oracle replication and I tried to apply multi master replication MMR between two databases: WinXp12 (master definition) and WinXp11.<br>
    After successfully doing all the steps in the code below to replicate table SCOTT.DEPT, I inserted a row in the table in WinXp12. But I didn't see the inserted row in the remote site WinXp11.<br><br>
    Where wrong was I? Anything missed?<br><br>
    By the way, deferror table contains no row and DBA_JOBS has no failures.<br><br>
    Thanks in advance.
    <br><br>
    CREATE USER REPADMIN IDENTIFIED BY REPADMIN;
    GRANT CONNECT, RESOURCE, CREATE DATABASE LINK TO REPADMIN;
    EXECUTE DBMS_REPCAT_ADMIN.GRANT_ADMIN_ANY_SCHEMA('REPADMIN');
    GRANT COMMENT ANY TABLE TO REPADMIN;
    GRANT LOCK ANY TABLE TO REPADMIN;
    EXECUTE DBMS_DEFER_SYS.REGISTER_PROPAGATOR('REPADMIN');
    CONN REPADMIN/REPADMIN
    CREATE DATABASE LINK WINXP11 CONNECT TO REPADMIN IDENTIFIED BY REPADMIN USING 'WINXP11';
    SELECT SYSDATE FROM DUAL@WINXP11 ;
    -- Add jobs to WINXP11
    CONNECT REPADMIN/REPADMIN@WINXP11
    BEGIN
      DBMS_DEFER_SYS.SCHEDULE_PUSH(
        DESTINATION => 'WINXP12',
        INTERVAL => 'SYSDATE + 1/(60*24)',
        NEXT_DATE => SYSDATE,
        STOP_ON_ERROR => FALSE,
        DELAY_SECONDS => 0,
        PARALLELISM => 1);
    END;
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PURGE(
      NEXT_DATE => SYSDATE,
      INTERVAL => 'SYSDATE + 1/24',
      DELAY_SECONDS => 0,
      ROLLBACK_SEGMENT => '');
    END;
    -- ADD JOBS TO WinXP12
    CONNECT REPADMIN/REPADMIN@WINXP12
    BEGIN
      DBMS_DEFER_SYS.SCHEDULE_PUSH(
        DESTINATION => 'WINXP11',
        INTERVAL => 'SYSDATE + 1/(60*24)',
        NEXT_DATE => SYSDATE,
        STOP_ON_ERROR => FALSE,
        DELAY_SECONDS => 0,
        PARALLELISM => 1);
    END;
    BEGIN
    DBMS_DEFER_SYS.SCHEDULE_PURGE(
      NEXT_DATE => SYSDATE,
      INTERVAL => 'SYSDATE + 1/24',
      DELAY_SECONDS => 0,
      ROLLBACK_SEGMENT => '');
    END;
    BEGIN
       DBMS_REPCAT.CREATE_MASTER_REPGROUP(
         GNAME => '"MGROUP1"',
         QUALIFIER => '',
         GROUP_COMMENT => '');
    END;
    BEGIN
       DBMS_REPCAT.CREATE_MASTER_REPOBJECT(
         GNAME => '"MGROUP1"',
         TYPE => 'TABLE',
         ONAME => '"DEPT',
         SNAME => '"SCOTT"');
    END;
    -- Generate Replication Support
    BEGIN
       DBMS_REPCAT.GENERATE_REPLICATION_SUPPORT(
         SNAME => '"SCOTT"',
         ONAME => '"DEPT"',
         TYPE => 'TABLE',
         MIN_COMMUNICATION => TRUE,
         GENERATE_80_COMPATIBLE => FALSE);
    END;
    SELECT * FROM DBA_REPCATLOG ;
    -- NO ERROR
    BEGIN
    DBMS_REPCAT.RESUME_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    BEGIN
    DBMS_REPCAT.SUSPEND_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    BEGIN
    DBMS_REPCAT.ADD_MASTER_DATABASE(
    GNAME => '"MGROUP1"',
    MASTER => 'WINXP11');
    END;
    -- Restart replication support:
    BEGIN
    DBMS_REPCAT.RESUME_MASTER_ACTIVITY(
    GNAME => '"MGROUP1"');
    END;
    -- here I could see in WinXP11 the tables created in SCOTT schema with data
    -- in WinXP12 I successfully issued the command
    insert into dept values ( 44,'text',null);
    -- I don't see the data in WinXP11
    -- No rows in deferror
    -- dba_jobs shows that there is not broken job

    Hi!
    You will need to create a public db link and a private db link connecting to the public link.
    CONN / AS SYSDBA
    CREATE PUBLIC DATABASE LINK WINXP11 USING 'WINXP11';
    CONN REPADMIN/REPADMIN
    CREATE DATABASE LINK WINXP11 CONNECT TO REPADMIN IDENTIFIED BY REPADMIN;
    SELECT SYSDATE FROM DUAL@WINXP11;
    Regards,
    PP

  • Read Master Data doesn't work

    hi guys
    i tryied in everyway to use read master data in a transformation in BI 7.0
    but ii always retrieve errors
    "No InfoObject available for reading of master data".
    source SODS with
    infoobject A Master data ( Attribute Ab)
    target TODS with
    infoobject Ab
    infoobject A Master data
    i want to write in the target ODS not only the master data A but also his attribute Ab
    when I go into the Transformation Rule for Ab, I choose the Rule Type "Master Data Read" and I should be able to select the A infoObject in the Source InfoObject list,
    and Ab in IOassignmnt but when I try, I only get an error message saying "No InfoObject available for reading of master data".
    i searched into the forum and there are other cases like this not answered
    thanks

    I just resolved this problem on my computer running Windows 7 64 bit.  \
    Try the following:
    Open Adobe Reader XI
    Choose Edit > Preferences
    A dialogue box will open with a "Categories" Column on the Left, and another broader section on the right with items to check
    FROM THE LEFT COLUMN  choose "Security (Enhanced)"
    Now look to the right of the categories column; you will see a check box with "Enable Protected Mode at Startup" checked
    Uncheck that box.
    When Adobe asks you if you're sure, choose "yes"
    Close Adobe and then restart the program.
    Open a pdf document THAT IS NOT A SCANNED DOCUMENT
    Choose View > Read Out Loud > Activate Read Outloud
    Then click on a section of the doucment you want read.  It will be bounded by a box and start reading.
    You may also choose to read the entire document or a single page.
    Hope this helps.

  • Aggregation level query "value help" = Only Values in InfoProv doesn't work

    Hi,
    I have a problem with Selection Variable for a BEx Query :
    - I'm working with SAP BI 7.0 support package 15
    - My query is an input ready query built for an "aggregation level" based on "real time infocube" (Planning);
    - Characteristic, I want to filter with variable, has query property Advanced->Query Execution for Filter Value Selection = Only Values in InfoProvider
    - Characteristic (info-object) has set the property: Business Explorer tab--> Query Def. Filter Value Selection as Only Values in the info-provider...
    My problem is:
    when I execute a query,
    the Select Values for Variables screen appears
    I push on the Select from List button
    and Select Values For MyCharacteristic appears...
    but it shows me all values in master data table of my characteristic instead of only values in the infoprovider!!!
    If I build a query for the Real Time Cube it works correctly, but if the query is built for the aggregation level it doesn't work!
    Could someone explain me why it doesn't work correctly?
    Thanks in advanced
    Fede

    Thanks to  Mariana Lazar
    30.03.2009 - 12:30:36 CET - Risposta by SAP     
    Dear Fede,
    Regarding the query built on aggregation level please note the following
    the aggregation level is always a Virtual Provider built other
    InfoProvider and hence it does not have the dimension table and hence
    the F4 mode D is not supported.
    Therefore when aggregation level is used in a query, F4 does not supportD-mode: 'Only Values in InfoProvider' and all master data values are
    displayed in the value list.
    Reference from the note
    984229 F4 modes for input help as of SAP NetWeaver 2004s BI
    4. Since other InfoProviders do not have a dimension table, the system
    displays only posted values if you select "Only Posted Values for
    Navigation". Otherwise, it displays the values from the master data
    table.
    Hope this should clarify your doubts. Please let me know if you have
    questions else please confirm the message at your earliest convenience.
    Thank you for your cooperation and kind regards,
    @KR@ Mariana Lazar
    Senior Support Consultant
    SAP Active Global Support
    Netweaver Business Warehouse

  • On iPhone 5S compass, level, parallax effect doesn't work properly.

    I'm using iOS 7.0.2 on iPhone 5S. I recently opened compass app, calibrated it and the compass doesn't move. Restarted, reset, and even restored but doesn't work. But on iPhone 5 (7.0.2) it worked. Next I swiped to level feature it worked, but when I placed it on a straight table it showed "-6" reading, while iPhone 5 showed "0" ( latter is correct ). After that I checked the new dynamic ( bubbles ) wallpaper. When I move iPhone 5S they move but in between they start getting stuck, but on iPhone 5 they worked smoothly. I hope that it's a software issue/glitch and Apple will solve it soon.

    I have the exact same issue - I have posted a question only this morning. I am reluctant to do a complete restore on my 5S but turning off on normally works and I can't keep doing that. I noticed though that it only stops working after I've made a call. It works intermittently though. 10 minutes ago it stopped working after I made a call. Just checked it now and it's working again?! My compass appears to be working (it also goes green when level but don't know if this i normal or not as I never use the compass anyway).
    Wonder what could be causing it especially on the newer phones?

  • My iphone 5 went into search mode and I can't place or receive calls or use the internet but my text messages work. Sprint had me do a master reset and my phone doesn't work at all now I can't get it past the activation. Will I have to pay in store?

    My iphone 5 went into search mode and I can't place or receive calls or use the internet but my text messages work. Sprint had me do a master reset and my phone doesn't work at all now I can't get it past the activation. Will I have to pay for repairs in store because I didnt get the Apple care plan when I purchased it. Sprint said it may be a phone problem not sure if I should take it to Sprint or Apple...I just need my phone

    I'm sorry to learn that you are not able to make/receive calls chelseabee! (ticket number removed) results indicate that there is no issues with the network or account provisioning. Since you have already done a hard reset http://vz.to/1gBkSJc (as per your post), I recommend exploring replacement options. If your phone is within the one year manufacturers' warranty we can provide a Certified Like New replacement http://vz.to/uyYF0o as long as no physical/liquid damage exist. If your phone has sustained physical/water damage and you have insurance, you can submit a claim to the insurance company online at this link http://bit.ly/07CrqPK
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

  • Page level process doesn't works for tabular form.....

    I am developing an application on inventory of an chemical factory.......
    I have an master-detail form where detail table is in tabular form.......
    I have an LOCATION1 AND QUANTITY1 COLUMN in detail table..........
    I have location say...LT01A02 AND limit of each location to hold an quantity is .....say 1000.
    I wrote an process for these but it doesn't work.......
    declare
    x NUMBER(6);
    z number(6);
    begin
    selecT NVL(SUM(QUANTITY1),0) INTO x from RM_LOCATION1 where LOCATION1 = :P3_LOCATION1;
    z := x;
    if :P3_LOCATION1 LIKE'%1)' or :P3_LOCATION1 LIKE'%2)' then
    if z > 1200 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 1ST OR 2ND PALLETE ,WHICH CAN HAVE MAXIMUM 1200KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%3)' or :P3_LOCATION1 LIKE'%4)' then
    if z > 800 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 3RD OR 4TH PALLETE ,WHICH CAN HAVE MAXIMUM 800KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%5)' or :P3_LOCATION1 LIKE'%6)' then
    if z > 750 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 5TH OR 6TH PALLETE ,WHICH CAN HAVE MAXIMUM 750KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    elsif :P3_LOCATION1 LIKE'%7)' or :P3_LOCATION1 LIKE'%8)' OR :P3_LOCATION1 LIKE'%9)' or :P3_LOCATION1 LIKE'%10)' OR :P3_LOCATION1 LIKE'%11)' or :P3_LOCATION1 LIKE'%12)' then
    if z > 600 then
    raise_application_error(-20101,'LOCATION YOU HAVE SELECTED IN LOCATION1 IS 7TH OR 8TH OR HIGHER PALLETE ,WHICH CAN HAVE MAXIMUM 600KG,PLEASE CHECK IT PHYSICALLY');
    end if;
    end if;
    end;
    I HAVE SEEN THAT APEX DOESN'T PICKS VALUE CALLED... _:P3_LOCATION1_*
    NOW WHAT TO DO ,CAN ANY ONE HELP ME....HOW TO RUN THESE PROCESS......

    Hi User XY,
    tabular forms do not have Page Items. The values you entered in the tabular form are stored in arrays like APEX_APPLICATION.g_f01 to g_f50.
    Here are some links you might find helpful: http://www.talkapex.com/2008/07/manually-creating-tabular-form.html
    http://download.oracle.com/docs/cd/E23903_01/doc/doc.41/e21676/apex_app.htm#CHDICJDA
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at and http://www.wirsindapex.at

  • Searching for a folder in document library doesn't work properly if the folder is at the root level.

    Hi,
    I have a folder named FS0 on my sharepoint 2013 site. The folder is the first level folder under
    Default Document library (Shared Documents). When I search for FS0 on the sharepoint site, the search result give a link to home.aspx and not the folder. If I search for any folder that is a second level folder in the library, I get a search result that takes
    me inside the folder on clicking it. In my case, I search for a folder named FS1 which directly under FS0. The search result takes me inside FS1 in this case. How can I make the search result display proper links for root level folders also?<o:p></o:p>
    Thanks
    Pranava

    Hi Pranava,
    I couldn't reproduce this issue, when I create root folder FS0 in "Shared Documents" and start a full crawl, I click the FS0 link from search results page, it will open the FS0 folder as well as folder under FS0.
    Please right-click the FS0 name hyperlink (e.g. mine is http://sp/Shared%20Documents/FS0) and paste in IE browser see if it could be accessed successfully.
    Also test if other Shared Documents have this issue in other site collection or web applications, if not, run a full crawl may do a trick (please reset search index if only full crawl still doesn't work).
    Thanks
    Daniel Yang
    TechNet Community Support

  • Organizational chart iview. Next level button doesn't work

    Hello,
    We are using Organizational chart iview from who is who (ESS). The chart is displayed ok but when we press the Next level button, sometimes it doesn't work ad we get an error.
    Please, can anyone help me?
    Thank you&Regards

    Hi ,
    Check is there any dump.
    Surekha .

  • Top master level meter above master volume slider not working

    I have a Power Mac G4, OS X 10.4.6, and GarageBand 3.0.2 (103).
    I used a keyboard and GarageBand software instruments to record many tracks for a song. It played in stereo. I saved it. Many days later, I went back and added more tracks, using my keyboard, to the end of the original song to lengthen the song.
    My problem: This last song now only plays back with sound coming out of the right speaker. There is NO sound coming from the left speaker.
    This original song and all my other saved songs play back in stereo - sound from both speakers. I noticed that the top master level meter above the master volume slider shows no green as this song now plays. The bottom one does show green for the volume as it plays.
    I copied a track and pasted it into a "new" song and it plays from both speakers. I copied and pasted an original track and one of the new tracks at the end of the song and both play in stereo in the "new" song.
    I checked to make certain that the track pan position is center top of all tracks. I even moved one track pan position entirely to the left on one track but still no sound from the left speaker.
    Could someone pleae help me?
    Power Mac G4   Mac OS X (10.4.6)   No sound from left speaker

    It sounds like somehow the pan position on the Master Track has been inadvertantly moved to the right on that song. You didn't say you checked that pan position, but that would explain this sort of thing happening. The meter is probably working correctly but the master has been panned to one side.

  • Firefox3.6.12 on Mac forgot master password chrome://pippki/content/resetpassword.xul doesn't work

    When I tried to reset my password, I copied
    chrome://pippki/content/resetpassword.xul
    into the proper place, got the new page, clicked reset, nothing happened.
    Using Mac 10.5.8 and Firefox 3.6.12
    Help! Can't get into my facebook account.

    If using the chrome url (chrome://pippki/content/resetpassword.xul) doesn't work then delete [http://kb.mozillazine.org/key3.db key3.db] and signons.sqlite and all signons#.txt files (if any exist, Firefox 3.0 has used signons3.txt) in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile_Folder].
    See also http://kb.mozillazine.org/Password_Manager#Troubleshooting

  • Filevault doesn't work systemwide. Returns -25300

    Filevault
    Problem
    FileVault process interrupted. Doesn't work anymore systemwide. Returns in console in up-to-date OSX 10.4.8
    loginwindow[5924]: SecFileVaultCreate returned -25300
    Description
    I can't activate FileVault anymore from any account.
    I ran FileVault once with the Erase secure option on my admin account. It took more than 5 hours for a 20 GB home folder starting at 10 p.m.
    So around 4 a.m. I decided to cancel the process, when, I think, it was secure erasing.
    Everything worked fine after breaking it. I only found two folders in the Users folder, which pointed to the one I was securing (I don't remember their names).
    I took my MBP to the technical assistance for display replacement and told a technician about this, who promptly erase them.
    Since then I don't get FileVault to work again, the encryption being stopped by an error message with the console counterpart above mentioned.
    Also I get two Desktop icons on the left column when I save or open a file from any application except in (main) Finder. Similar doppelgänger happens also when right-clicking on some objects, returning doubled apps.
    The only major changes since erasing those files were making archive and install (with no results) and HD defrag with iDefrag (on-line defrag without unmounting it).
    Apple assistance, etc.
    A propos, I phoned the Apple Care assistance from Milan and after one hour and € 40 cel phone, they couldn't help either.
    (And I don't want to know about the guy that erased those files and replace the display...and the battery without notice, changing it for a defective one).
    Any ideas?
    Should I take a look at hidden image files to delete?
    MBP Core 2 Duo Mac OS X (10.4.8)
    MBP Core 2 Duo   Mac OS X (10.4.8)  

    I got the following message as per the situation described on this thread
    An error occurred.
    An error occurred during encryption (Could not create FileVault disk image). FileVault will be turned off for this home folder and the home folder will not be encrypted.
    system.log specified SecFileVaultCreate returned -25300.
    On Apple's Technical Note TN2029 (http://developer.apple.com/technotes/tn/tn2029.html) it says
    The error -25300 was being returned from high level Keychain calls when no keychains existed. Now, a user interface is presented to create a keychain instead (r. 2701995).
    After turning FileVault off, I've deleted the FileVault Master Password Key (private key) and FileVault Recovery Key (certificate) along with the FileVault Keychain from the Keychain app.
    But the files still exist under /Library/Keychains and someway FileVault recalls them for turning itself on again.
    You got to trash them and type an admin password when requested to perform the task.
    Otherwise you can open the Terminal and do
    cd /Library/Keychains
    sudo rm FileVaultMaster.keychain
    [type the admin password when requested]
    rm FileVaultMaster.cer
    If you've set a password hint for the master password, you can delete it by entering in the Terminal
    sudo defaults delete /Library/Preferences/com.apple.loginwindow MasterPasswordHint
    This also requires an administrator password.
    After that, you can reset the Master Password and try to turn FileVault on again in a new test account ad hoc.

  • Pickup Clock doesn't work for markers. Any alternatives?

    Hello everyone,
    It seems that Pickup clock doesn't work for markers (I guess markers are not considered an "event.") Is there a way to move markers as quickly as I do "event" data with pickup clock; e.g. a key command that allows you to write the location start time of your markers? Or even better, a way to move all data within locators to different song positions quickly?
    I'm scoring a film and trying to break down my master "spotting" session (in which I placed markers at the beginning of each cue) into separate files. Moving "events" is easy, as I just separate at the marker using "cut at spl" select all following, move SPL to bar 1, and use pickup clock. However, no "global track" data seems to move via pickup clock. Is there an easier way to achieve my goal?
    Thanks in advance for your help!

    musicspirit wrote:
    Is it that you want to move Global components that fit with a particular cue ( such as Volume Automation etc) around in the same Song? ie try one piece of music over two different scenes in the film? Or shift an entire cue slightly sooner or later against the picture?
    YES!! This would be AMAZING if I could do this easily. As a work around I change the actual movie and of the dialog / sound FX tracks, which can take some time to get them correct and leaves you with multiple song files. It would be much easier if there was a way to grab everything within your Left and Right Locators, and be able to move it around, copy and paste, etc.
    I tried experimenting with Split/Cut/Insert Time and a segment of regions which included some volume/fader changes - no dice. Logic can copy automation vertically track to track but not in a Linear way.. though I may be speaking in complete ignorance.
    I'm going to read up on Split/Cut Time as well, as this maybe the key. As for your automation issues, I know logic will not copy / paste automation when there is no "node," (i.e. if you are cutting on bar 5, but the last node was on bar 3 and the next on bar 7, it will not "go back to 3" to get the proper levels) so in the past I have placed nodes on the beginning and end of the section I want to copy, and the automation then copied fine. Of course if you have a lot of automation, it can be a PITA to place nodes in each track, but it does seem to work. Hope that helps!

Maybe you are looking for

  • How can I connect a DLT-IV Tape drive with SCSI interface to Quad G5?

    I have had no problems with my "Quantum equivalent La Cie DLT-IV Tape drive" on OSX connected to the G4 Quicksilver using an Adaptec 2930CU PCI card - but I can't move that to the G5 as it has to be PCI-Express cards as far as I can tell. Adaptec pre

  • Problems With PSE11 and Windows 7....

    Has anyone experienced and resolved the issue of having PSE11 open, then closing and then experiencing a crash when you try to reopen it? I bought the Bundle of Photoshop Elements 11/Premiere Elements 11 for my wife as a early Christmas present Sunda

  • BUG in TechDemo AddOn - Version 2

    There is a bug in the TechDemo Addon related to CFLs in the Matrix. This is the scenario is which I discovered this bug: 1) The number of rows in the matrix is say 5. 2) A user edits the CFL enabled column of the third row and clicks update. 3) When

  • Develop Settings

    I have a PC, and I just upgraded to Production Premium 5.5 and bought Lightroom 4 Do develop settings applied in ACR show up in Lightroom 4? Develope settings applied in Lightroom 4 do not appear in Bridge...... Are they the same "devlop settings"?

  • Run-as role not active for filters

    Hi, I have a servlet which has a security role assigned. Accessing a secured datasource from inside the servlet works fine. Additionally I have a filter configured for that servlet where I also need to access the secured datasource. <filter> <filter-