How to add an effect again (or effects with similar outcome) or "merge effects"?

Hi,
May I bother you with a question?
Can I add the same effect twice? OR can I "merge layers", similar to PS, then add a new batch of effects?
I have experienced the same problem a couple of times, here is an example:
1. I stabilize my clip (by motion tracking including rotation. dozens of keyframes are added to the transformation->rotation of the layer)
2. The result is crooked and I want to rotate it.
3. The only (very bad) options I see: edit each keyframe, by adding my -5°; or rendering it and editing it again
I had the same problem with plug-ins that have effect e.g. on transformation. Once I use it, the former settings are overwritten.
I guess there is a simple answer I should be able to find in the FAQ's or tutorials, but after 2 hours I'm either blind or a fool. Could you please help me?
greez
magnesiumpulver
I'm relatively new to AE but have PS experience. Win7, CS5, 1080p, 8GB, i5,

I found another great way to make it work (even though I'll just use it, when the null-object ect. won't work):
It's called "precomposed layers" and works really well, especially because it allows you to edit compositions that have "time distortion" and "time stretching" enabled. once you have a layer that has some time-relevant effects and want to add another effect (e.g. tracking, or twixtor...), select the layer (or several), use "Ctrl + shift + C" and select the second option.  the layer is then replaced by a new untouched layer of the clip. that clip links to the edited original clip (which kind of hides under it).
In PS speech: you merge the layers, but have access to the unmerged layers
I needed it to use tracking on time stretched clips and also in combination with twixtor

Similar Messages

  • How do you Select data from two tables with similar data amd merge the output together.

    I have two Tables containing Sales Data. I want to read the Table a sort by date and accumulate dollars by order date. Then I want to read the second table and accumulate these dollar amounts by date and then merge the records together so that I gave 1 row
    with amounts for type A and amounts for type b.
    Here are the tables I am looking at.
    Select Cast(J.Order_Date As Varchar(11))) As [Order Date]
              ,Sum(Case when Sales_Code like '%Comm%' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Comm]
              ,Sum(Case when Sales_Code = '5-Day' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
              ,Sum(Case when Sales_Code like '%Auto%" then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
              ,Sum(Case when Sales_Code = '' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Fixed]
              ,Sum(Case when Sales_Code = 'XX' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Comm)
              ,Sum(Case when Sales_Code = 'YY' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Auto)
              ,Sum(Case when Sales_Code = 'ZZ' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Fixed)
    from [PRODUCTION].dbo.Job As J
    union all
    Select Cast(SH.Order_Date As Varchar(11))) As [Order Date]
              ,Sum(Case when Sales_Code like '%Comm%' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Comm]
              ,Sum(Case when Sales_Code = '5-Day'     then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
              ,Sum(Case when Sales_Code like '%Auto%" then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
              ,Sum(Case when Sales_Code = ''          then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Fixed]
              ,Sum(Case when Sales_Code = 'XX' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Comm)
              ,Sum(Case when Sales_Code = 'YY' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Auto)
              ,Sum(Case when Sales_Code = 'ZZ' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Fixed)
    from [PRODUCTION].dbo.SO_Detail As SD
    Inner Join [PRODUCTION].dbo.SO_Header As SH
        on SD.Sales_Order = SH.Sales_Order
    Group by J.Order_Date
    Order by J.Order_Date Desc
    Looking for output like
    Order Date   Job Comm   Job AUto   Job Fixed    SO Comm  SO AUto  SO Fixed
    Mar-11-2014    100.00     250.00       50.00     200.00   300.00    400.00
    Mar-10-2014    500.00     340.00        0.00     110.00   400.00    500.00
    Mar-09-2014    600.00     333.00       56.00     210.00   500.00    300.00
    Thanks for your help
    SWProduction

    Seeing the output it looks like what you need is this
    select COALESCE(p.[Order Date],q.[Order Date]) AS [Order Date],
    COALESCE([Job Comm],0) AS [Job Comm],
    COALESCE([Job AUto],0) AS [Job AUto],COALESCE([Job Fixed],0) AS [Job Fixed],COALESCE([SO Comm],0) AS [SO Comm],COALESCE([SO AUto],0) AS [SO AUto],COALESCE([SO Fixed],0) AS [SO Fixed]
    from
    Select Cast(J.Order_Date As Varchar(11))) As [Order Date]
    ,Sum(Case when Sales_Code like '%Comm%' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Comm]
    ,Sum(Case when Sales_Code = '5-Day' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
    ,Sum(Case when Sales_Code like '%Auto%" then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Auto]
    ,Sum(Case when Sales_Code = '' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [Job Fixed]
    ,Sum(Case when Sales_Code = 'XX' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Comm)
    ,Sum(Case when Sales_Code = 'YY' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Auto)
    ,Sum(Case when Sales_Code = 'ZZ' then (J.Order_Quantity * J.Unit_Price) Else 0 end) As Decimal(11,2) As [SO Fixed)
    from [PRODUCTION].dbo.Job As J
    )p
    full join
    Select Cast(SH.Order_Date As Varchar(11))) As [Order Date]
    ,Sum(Case when Sales_Code like '%Comm%' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Comm]
    ,Sum(Case when Sales_Code = '5-Day' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
    ,Sum(Case when Sales_Code like '%Auto%" then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Auto]
    ,Sum(Case when Sales_Code = '' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [SO Fixed]
    ,Sum(Case when Sales_Code = 'XX' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Comm)
    ,Sum(Case when Sales_Code = 'YY' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Auto)
    ,Sum(Case when Sales_Code = 'ZZ' then SD.Ext_Amt Else 0 end) As Decimal(11,2) As [Job Fixed)
    from [PRODUCTION].dbo.SO_Detail As SD
    Inner Join [PRODUCTION].dbo.SO_Header As SH
    on SD.Sales_Order = SH.Sales_Order
    Group by J.Order_Date
    )q
    on p.[Order Date] = q.[Order Date]
    Order by COALESCE(p.[Order Date],q.[Order Date]) Desc
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to add a new field in MM01, with say contaminent  as a field?

    How to add a new field in MM01, with say contaminent  as a field? I process that i know is i has to go the user exit and check out the three user exits that are available for MM01 after that what i have to do please can any one help me out with the procedure to proceed?

    Hai      venkateshwar reddy ,
    try with these user exits
    MGA00001 Material Master (Industry): Checks and Enhancements
    MGA00002 Material Master (Industry): Number Assignment
    MGA00003 Material Master (Industry and Retail): Number Display
    Refer these steps also
    http://sap.ittoolbox.com/groups/technical-functional/sap-r3-dev/screen-exit-on-mm01-mm02-mm03-322717#

  • How to add a scrolling text in portrait with iMovie

    how to add a scrolling text in portrait with iMovie

    This is how i was able to do it. Edit html source.
    <div align="center"><marquee id='scroll_news4' bgcolor=#ff9966 "><font color="#000000" size="+1" ><strong>Outlook is down! IT is working on it! </strong></font></marquee></div>
    <input type='Button' value='Stop' id ='b1' onClick='button_click()';>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function button_click()
    if(document.getElementById('b1').value=="Start"){
    document.getElementById('b1').value="Stop";
    document.getElementById('scroll_news4').start();
    }else{
    document.getElementById('b1').value="Start";
    document.getElementById('scroll_news4').stop();
    // End -->
    </script>

  • Regarding : How to add a user to portal group with the help of webdynpro .

    Hii ,
    I am working on an application in which with the help of an action( Button)  we r adding a user in Ztable in R/3 , as well as  group in portal.
    The user r successfully creating in Ztable but from portal side No user is assigned to Portal group.
    I need coding solution for " How to add a user to portal group with help of webdynpro"
    Any usefull link will also do.
    Pls anyone have any solution ??
    Thnks in advance.
    Rewards r waiting for u .

    Hi,
    Use UME api to add user to portal group.
    Using UME API:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40d562b7-1405-2a10-dfa3-b03148a9bd19
    Regards,
    Naga

  • How to add a SSD to 2010 iMac with 1tb drive

    How to add a SSD to 2010 iMac with 1tb drive? I have a mid-2010 iMac with 1tb HD and would like to either replace the HD with SSD -or- add 256 or 400gb SSD to maybe the Optical Drive and use it as the boot drive. Is this possible with Model 11,2? i thought i\I'd read it was, but recently am reading my system is too old - OWC have SSD drives for newer models not Model 11,1 -or- 11,2

    Any SATA SSD will work, whatever you are reading is incorrect.
    You have 2 choices with this model-install the SSD in place of the HDD or the Superdrive.
    If you are installing in place of Superdrive you will need some form of SSD Caddy-these can be found on the cheap at places like eBay, also OWC sell one called the DataDoubler.
    Guide:https://www.ifixit.com/Guide/Installing+iMac+Intel+21.5-Inch+EMC+2389+Dual+Hard+ Drive/8643
    If installing in place of old HDD you will notice that the propietary Temperature Sensor will not fit on the new drive, you will need to replace this with a sensor such as this or this
    You will also need a 3.5inch to 2.5inch drive adaptor such as this
    Guide: https://www.ifixit.com/Guide/iMac+Intel+21.5-Inch+EMC+2389+Hard+Drive+Replacemen t/6284
    If you still have doubts contact OWC as mentioned above, I would start deciding whether your Superdive is needed or if you want to swap out the HDD.
    Hope this points you in the right direction

  • How to add voice effects to a video

    how can i add voice effects to a video!

    You need to supply much more information.
    For example: Which video app are you using?
    In which format is the video?
    I presume you want to add the effects post production, so to speak, not live.

  • How to add binding effect in indesign?

    How can you add binding effects to an InDesign document so it looks like a book or notebook when converted to a pdf?
    Below is an example
    http://blogs.adobe.com/indesigndocs/files/indesigndocs/SWF.jpg

    What plugin? The plugin manufacturer should provide directions or an installer.

  • How to add sound effects to recorded sound?

    HI there
    I am making  an app which will record ur voice and then add sound effects to it. How can i add those sound effects such as a higher pitch

    Hi AhmadTheXboy,
    Actually this forum is to discuss the VS IDE usage, this issue would be related to the specific language development.
    Feng Chen shared us some samples here:
    How
    do I capture sound?
    The following threads is about the similar issue, they use the VB language in winform apps.
    How
    to add music and sound effects to a Windows Form Application?
    how
    to create sound recorder
    Hope they could provide useful information for you.
    If still no help, please select the correct language development forum here:
    http://social.msdn.microsoft.com/Forums/en-US/home?category=vslanguages&filter=alltypes&sort=lastpostdesc
    Sincerely,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • How to add push button in alv display with out class or method

    Hai,
    How to add push buttons in out put screen of ALV (tool bar) with out using classes or methods .I want to know using normal ALV .
    Thanks in advance .
    kiran

    You should post your question in the ABAP forum.
    ABAP Development

  • How to add rdlc reports to winform project with out throwing any error

    Hi,
    I have been trying to resolve this problem in all ways.I am working on win forms in VS 2010 using C#.I have designed 4 rdlc reports in a copy of same projects, and now I have been trying to add those rdlc reports to main project(same name of 2 projects).
    They are adding but throwing an error as "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.Verify that the instance name is correct and that
    SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) "
    at 
    private void report10th_Load(object sender, EventArgs e)
    // TODO: This line of code loads data into the 'dataset10th.attendance' table. You can move, or remove it, as needed.
    this.attendanceTableAdapter.Fill(this.dataset10th.attendance);//throws an error here
    // TODO: This line of code loads data into the 'dataset10th.regestration' table. You can move, or remove it, as needed.
    this.regestrationTableAdapter.Fill(this.dataset10th.regestration);
    // TODO: This line of code loads data into the 'dataset10th.tenthclass_marks' table. You can move, or remove it, as needed.
    this.tenthclass_marksTableAdapter.Fill(this.dataset10th.tenthclass_marks);
    //this.reportViewer1.RefreshReport();
    please Help me out how to add these RDLC reports to win forms 

    Thank you for replaying me sir,
    Finally i got to know the answer through your instructions.
    I have a look into app.config file and replaced the server name as 
    <add name="f2.Properties.Settings.smssmsConnectionString" connectionString="Data Source=User-pc\sqlexpress;Initial Catalog=smssms;Integrated Security=True"
    providerName="System.Data.SqlClient" />
    //to
    <add name="f2.Properties.Settings.smssmsConnectionString" connectionString="Data Source=.;Initial Catalog=smssms;Integrated Security=True"
    providerName="System.Data.SqlClient" />

  • How to add sound effect to a slide in keynote on IPAD1

    How do I add a sound effect to a slide in Keynote on a IPAD1?

    MattiMattMatt wrote:
    I'm looking at GB 11 right now, so I don't know if this translate exactly to '09, but I think it's similar if it doesn't:
    Looking at the shown Master Track, on the automation menu of options on the track (that lists volume, pitch tempo - whatever you want to send a curve through) there's another choice on the bottom: "add automation." You select this which gives you a dialog box and the option to add an automation curve for any of the Master Effects you've added in that Edit box on the right hand side.
    Clicking a parameter in that dialog box will add the category to that menu, and then you can create a curve for it (using a two-dot quick ramp up from 0 to whatever value you want, then a two-dot ramp down at the end) for just the measures you want.
    Ive done Add Automation, and Automatic Filter is now available on the "Add Automation". (Although Frequency, Resonance, Mode, Intensity & Speed are down as 5 seperate tick boxes under Automatic Filter and I'd like to just be able to select Automatic filter and not have to change each of these 5 independently and it just work from what I have set it to manually on left hand side).
    I've added points/dots to the curve during the section I need it, but this moves the filter up and down over that point AND from the very start of the song to the very end of the song.
    Where does the point/dot need to be/set to at the Start of the song upto the point I want the filter to kick?
    So there would be NO filter on the track from Bar 1 to end of Bar 9
    Then, where does the point need to be/set to at the end of song from the end of the filtered section?
    So there would be NO filter on the track from Bar 13 to end of the song?
    So just to confirm I want
    Bar 1 to end of Bar 9 - NO FILTER
    Bar 10 to end of Bar 12 - Filter
    Bar 13 to end of song - NO FILTER
    Thanking you in advance for a speedy response.

  • How To Add Multitrack Effects?

    In the effects tab, I can't add the 3 effects listed under "Multitrack Effects" even tho I'm in the Multitrack view. How can I add them?

    You have to have some audio selected before the Effects are active. Also Frequency Splitter is the only one that works on one track. For the Envelope Follower or Vocoder effects to work you have to have at least two tracks with audio on them since they need input from a second track to operate.

  • How to add an effect (like a filter) to a section of an entire song ?

    I want to add an auto filter to just 3 bars, but those 3 bars on ALL of my tracks (Apart from the single click track).
    Is this possible without adding it to every single track manually?
    So I need to be able to tell the system
    From Bar 10 to Bar 12 on tracks 2 to 12 add auto filter
    Possible?
    Thanks!

    MattiMattMatt wrote:
    I'm looking at GB 11 right now, so I don't know if this translate exactly to '09, but I think it's similar if it doesn't:
    Looking at the shown Master Track, on the automation menu of options on the track (that lists volume, pitch tempo - whatever you want to send a curve through) there's another choice on the bottom: "add automation." You select this which gives you a dialog box and the option to add an automation curve for any of the Master Effects you've added in that Edit box on the right hand side.
    Clicking a parameter in that dialog box will add the category to that menu, and then you can create a curve for it (using a two-dot quick ramp up from 0 to whatever value you want, then a two-dot ramp down at the end) for just the measures you want.
    Ive done Add Automation, and Automatic Filter is now available on the "Add Automation". (Although Frequency, Resonance, Mode, Intensity & Speed are down as 5 seperate tick boxes under Automatic Filter and I'd like to just be able to select Automatic filter and not have to change each of these 5 independently and it just work from what I have set it to manually on left hand side).
    I've added points/dots to the curve during the section I need it, but this moves the filter up and down over that point AND from the very start of the song to the very end of the song.
    Where does the point/dot need to be/set to at the Start of the song upto the point I want the filter to kick?
    So there would be NO filter on the track from Bar 1 to end of Bar 9
    Then, where does the point need to be/set to at the end of song from the end of the filtered section?
    So there would be NO filter on the track from Bar 13 to end of the song?
    So just to confirm I want
    Bar 1 to end of Bar 9 - NO FILTER
    Bar 10 to end of Bar 12 - Filter
    Bar 13 to end of song - NO FILTER
    Thanking you in advance for a speedy response.

  • How to add a new server (as shown with "server name" in management studio) and how to delete the old one?

    I am using SQL Express 2008 R2. I have two servers ".\robbysqlexpress" and ".\sqlexpress". The ".\sqlexpress" server is not working. It gives error whenever I try to connect:
    "Cannot connect to (local)\SQLEXPRESS.
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections.
    (provider: Shared Memory Provider, error: 40 - Could not open a connection to SQL Server) (Microsoft SQL Server, Error: 2)"
    So I want to delete this server and create a server with the same name again. So could you tell me how to do that?
    : Robby

    Hi Robby,
    Can you check that instance of server exists. deleting and recreating will not help you.
    It is really a generic error(and hope your sql server instance exits -> http://community.shavlik.com/docs/DOC-23089).
    please follow this blog post to resolve it -> http://blog.sqlauthority.com/2009/05/21/sql-server-fix-error-provider-named-pipes-provider-error-40-could-not-open-a-connection-to-sql-server-microsoft-sql-server-error/
    Unfortunately, it does not appear to be possible (or at least practical) to only remove certain items.
    However, if you want, you can reset the configuration and start from scratch.
    Make sure Management Studio is closed, then delete or rename this file:
    %APPDATA%\Microsoft\Microsoft SQL Server\100\Tools\Shell\SqlStudio.bin
    Regards Harsh

Maybe you are looking for