Multiple effects as one single preset?

This would be incredibly useful- having one preset that contains multiple effects in it. This cannot be done, can it?

But, you can apply all the effects to a single clip, do a right click Copy/Paste Attributes to kind of achieve the same result. At least within a single project.

Similar Messages

  • Concatenate multiple records into one single record

    Hello everyone,
    Can anyone guide me how to merge multiple records into one single record
    like......... I am getting the data in the file like
    aaaaa/bbbbbbb/ccccccccccc/dddddddddddd/eee
    ffffff/gggg/hhhhhhhhhhhhhh
    /123/4567/55555/99999999/kaoabfa/eee
    fffff/kkkkkkkk/llllllllllllllllllllllll
    when i use gui_upload I am getting the data into the internal table in the above format.
    My main intension is to split the record at / to multiple lines and dowload it into another file.
    What i am planning to do is... if the line does not start with / then i want to concatenate the multiple lines into single line and then split it into multiple records. Can anyone guide me how to achieve this.

    Yes, it should work.
    In my example
    Loop at itab.
    concatenate i_text itab into i_text.
    endloop.
    You change that loop for the loop of your internal table with the file records
    So if you have this three records
    'aaaa/bbb/ccc'
    '/dddd/efg'
    'hijk/lmn'
    i_text will look like this at the end
    'aaaa/bbb/ccc/dddd/efghijk/lmn'
    then in this part of the code
    split i_text at '/' into table itab2.
    itab2 will have the records looking like this
    aaaa
    bbb
    ccc
    dddd
    efghijk
    lmn'

  • Multiple Reports inside one Single Report

    Post Author: maximus85
    CA Forum: Crystal Reports
    Hi....I'm having this problem of having multiple reports inside one single report. Basically what i wanted to built is a Dashboard that contains 4 main subjects:i)Sales   -    Contains graph that can be drill down for further detailsii)Internal Process   -  Contains tables that can be drill downiii)Profit/Lossiv)HRAs far as i know, since all four are of different fact table data, they cannot be all thrown inside one single report to be built on. So i came out with using subreports instead for each components and then finally putting them all together as subreport inside the main report(Dashboard).However, i just realized that by doing that, whenever i clicked on the reports that i wanted to drill down with, it will prompt that particular report that i clicked into a new page, and then from there only i can perform drill down.Is there anyway to enable me to straight away drill down the Sales and Internal Process reports from the main reports(Dashboard) instead of having to click twice as that will be unnecessary right?Or mayb if there's another better ways to do what I have to do? Please do advise and suggest......Thanks alot.......

    hi chack,
    doesnt matter or preferrably both, as long as i can export all the reports in 1 page into 1 excel, or 1 pdf.

  • Multiple adjustment layers vs. multiple effects on a single adj. layer

    I posted this earlier on the Creative Cow forums, and came back with inconclusive answers...
    If I have the exact same clip in 2 separate comps...In Comp 1 I have 5 color correction effects on a single adjustment layer, and in Comp 2 I have 5 adjustment layers with the same effects, 1 effect each spread over the 5 adjustment layers (in the same order). Should I theoretically expect to get the exact same image in both comps?
    Here's the reason I'm asking. I'm doing some color correction that occasionally involves a lot of keying, which I'm doing in Colorista II. It's not green/blue screen keying, it's keying the shot footage for adjustment, e.g. skin tones, backgrounds, blown-out highlights, etc. I'm finding that in order for the Colorista II keyer to work based on previous instances of effects calculations (i.e. Levels, Hue/Sat, or other Colorista instances, all of which occur *before* the key) I'm having to put it on another Adjustment Layer for the keyer to take the earlier effects into account. Otherwise, if it's on the same adjustment layer, the Colorista keyer disregards the previous effects & uses the un-effected clip as the source for the key.
    I don't know if this is just the way the Colorista II keyer works, or if this is a global After Effects-wide order-of-operations thing that I don't fully have a handle on. I understand order of operations, and that Adjustment Layers affect all layers below it, and all that stuff. My question is, what (if anything) is the difference in behavior between multiple effects on a single adjustment layer vs the same effects spread out over multiple adjustment layers? Is it predictable & consistent? Or is it just common knowledge (to everyone else but me) that sometimes you have to use multiple adjustment layers based on the specific effect combinations that you're using?

    I don't know if this is just the way the Colorista II keyer works, or if this is a global After Effects-wide order-of-operations thing that I don't fully have a handle on.
    As far as I understand the SDK, it is not considered practical, since it would require a plug-in to establish its own comp buffer outside the main rendering pipeline, which could lead to issues with color consistency and things like premultiplied vs. straight Alpha. I also seem to remember that as of CS5 it is actually no longer technically possible. Hence effects that use specific source footage API calls will bypass any previous effects and directly operate on the source.
    My question is, what (if anything) is the difference in behavior between multiple effects on a single adjustment layer vs the same effects spread out over multiple adjustment layers? Is it predictable & consistent?
    The result should be the same under all circumstances, assuming all adjustment layers have the same opacity and no masks and their stacking order is equal. Only when you apply masks or adjust the opacity to fade specific adjustments you will see differences. It is also to note that having all effects might be a bit faster and more efficient, since less data is passed from buffer to buffer...
    Mylenium

  • Select or deselect multiple rows with one single selection  event

    Does anyone know how to create a JTable which can select or deselect multiple rows with one single selection event in JTable. Fore example, if the table has
    row1
    row2
    row3
    row4
    row5
    row6
    What I need is when user select row1 or row2, both row1 and row2 should be set to be selected. Then if user press CTRL and click one of row3 or row4, both of them should be selected including the previouse selected row1 and row2.
    For deselection, if row1 and row2 are selected, when users deselect one of row1 or row2, both of them should be deselected.
    Hopefully someone can give me a hint.

    Here is a partial solution using a JList. Only one line gets highlighted when the user makes a selection in the list. But, two lines are returned. There is a blank line between every two lines.
         private void addLineToList() {
              String a = f_one.getText();
              String b = f_two.getText();
              if (a.length() == 0) {
                   Utils.showInformationMessage("Item field is empty.");
                   f_one.requestFocusInWindow();
                   return;
              if (b.length() == 0) {
                   Utils.showInformationMessage("Match field is empty.");
                   f_two.requestFocusInWindow();
                   return;
              model.addElement("item: " + a);
              model.addElement("match: " + b);
              model.addElement(" ");
              int size = model.getSize();
              pairList.setSelectedIndex(size - 3);
              f_one.setText("");
              f_two.setText("");
              f_one.requestFocusInWindow();
         private void editList() {
              if (pairList.getSelectedValue().toString().equalsIgnoreCase(" ")) {
                   Toolkit.getDefaultToolkit().beep();
                   f_one.requestFocusInWindow();
                   return;
              if (!f_one.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Item field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   OptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              if (!f_two.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Match field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   JOptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              String item = "";
              String match = "";
              int index = pairList.getSelectedIndex();
              String choice = model.getElementAt(index).toString();
              if (choice.startsWith("item")) {
                   item = choice;
                   match = model.getElementAt(index + 1).toString();
                   model.remove(index);
                   model.remove(index);
                   model.remove(index);
              else {
                   item = model.getElementAt(index - 1).toString();
                   match = choice;
                   model.remove(index + 1);
                   model.remove(index);
                   model.remove(index - 1);
              int size = model.getSize();
              if (size > 2) {
                   pairList.setSelectedIndex(size - 2);
              f_one.setText(item.substring(6));
              f_two.setText(match.substring(7));
              f_one.requestFocusInWindow();
         }

  • Multiple databases in one single RAC cluster

    Hi, I would like to know if one can have multiple databases running on a single RAC cluster, we have several databases in our shop and would like to consolidate all of them into a single 3-4 node RAC cluster running databases with 10.2 and 11.1 versions.
    I am newbie to RAC and would like to get some clarification if anyone has done this, google search comes up with few hits on this topic, so obviously this is not doable.
    In our case we have one database supporting critical applications and few other not so critical but are used very extensively between 9-5, so what is the use of RAC if I cannot consolidate all my databases into one cluster, or if I need a separate cluster for each of these critical databases?
    I have been all the Oracle docs that keep repeating one database multiple instances and one instance-one machine-one node, they don't even advise running multiple instances on a single node?.
    I appreciate any insight.
    Thanks.

    ora-sql-dba wrote:
    Can you give more details on how you would setup multiple databases running different versions on a single RAC cluster, I am yet to find any documentation that supports or even elaborates on this topic.You can configure a cluster with 12 nodes. Then, using dbca, configure a dev instance for nodes 1 and 2, a prod1 instance for nodes 3 to 6 and a prod2 instance for nodes 7 to 12.
    You also can configure each of these instances for all 12 nodes. And use it on all 12 nodes.
    Or, after configuring it for all 12 nodes, you can start the dev instance on nodes 1 and 2, prod1 on 3 - 6 and prod2 on the remaining nodes. If dev needs more power, you can for example shutdown prod2 on node 12 and start another dev instance there.
    My issue is with the 2nd option - running more than one instance on the same node or server. Why? Each instance has a basic resource footprint ito shared memory needed, system processes required (like db writer, log writer, sys monitor) etc. It does not make sense to pay for that same footprint more than once on a server. Each time you do, you need to reduce the amount of resources that can be used by each instance.
    So instead of using (for example) 60% of that server's memory as the SGA for a single instance, if you use 2 instances on that server you now have to reduce the SGA of each to 30% of system memory. Effectively crippling those instances by 50% - they will now have smaller buffer caches, require more physical I/O and be more limited in what they can do.
    So unless you have very sound technical reasons for running more than one instance on a server (RAC or non-RAC), do not.

  • Collating multiple tracks into one single track

    I am trying to learn another language and have a CD with multiple tracks on it. When I load it onto my iPOD the tracks don't stay in order, which makes following the lessons difficult.
    Does anyone know how I can collate all the tracks so they become one single track which I could then download onto my iPOD?

    I am trying to learn another language and have a CD
    with multiple tracks on it. When I load it onto my
    iPOD the tracks don't stay in order, which makes
    following the lessons difficult.
    Does anyone know how I can collate all the tracks so
    they become one single track which I could then
    download onto my iPOD?
    Set the switch to the FIRST position to play tracks in order...

  • How to save multiple tables on one single save button in JDeveloper.

    hi all,
    i have two tables on a JSF page.
    the parent and child tables has 1 to many relationship.
    its like for department id i have many employee_id's.
    in my scenario ,
    i have to give values to both parent and child tables at a time on one single click on add button. and after clicking on one single save button i should be able to commit the data into database for both the tables at a time.
    its similar like a hire a person in fusion applications , when you clinked on hire person. all the related tables populated to give data and on one single save committing data to database.
    please help in this. and its my urgent requirement for my application design.
    am beginner to the J Developer Tool and ADF.
    regards,
    M vijayalakshmi.

    I assume you are using ADF BC as your business components. Now if both your Master and Chail VO are instances of the same AM, the commit operation of the AM will take care of it. You just have to drag and drop the commit operation as a Save button in your page

  • How to apply multiple effects on one clip

    Here's a simple question, so I guess there's got to be a simple solution. Is it possible to have more than just one effect on one clip? If yes, how can I do that? I've searched the iMovie help, but it didn't give me any answer.

    No, you cannot apply more than one effect at a time in iMovie '09.
    However, you can always adjust Video Levels, Exposure, Brightness, Contrast, Saturation, etc. in Inspector.

  • Measuring of Text with Multiple Fonts in One Single Line

    I am following a request to write C++ code for a label that contains several text elements in one single line, varying by font, size, color.... Ok, that can be done easily in GDI+ by measuring each element's width and then execute a DrawString
    for each of the text elements starting at its calculated position.
    So far, I failed miserably.
    The horizontal text positions did not appear to be correct. I reverted now to very simple text width measuring tests where the results are still puzzling.
    Test 1 (GDI+): Use of MeasureString
    With the same font, the width of the string "MM" does not match the double with of the string "M". This cannot be explained with eventual rounding problems.
    Test 2 (GDI+): Use of MeasureCharacterRanges
    Used the same font as for the first test. The width of "MM" is now exactly double of the width of "M". But: The width of the "M" ist lightyears away from the measurement result in the first test.
    Test 3 (GDI): Use of GetCharABCWidthsFloat
    Attempted to create a GDI font as close as possible to the GDI+ font in the previous tests. Unfortunately, this third test shows results which do not match the previous results at all.
    I am appending the full example here; the results I found during the debug session have been added as comments:
    void ApplWindow_TextDrawTest(HDC hDC)
    Gdiplus::Graphics *G = new Gdiplus::Graphics(hDC);
    G->SetTextRenderingHint(TextRenderingHint::TextRenderingHintClearTypeGridFit);
    Gdiplus::StringFormat MyFormat;
    MyFormat.SetAlignment(Gdiplus::StringAlignment::StringAlignmentNear);
    MyFormat.SetFormatFlags(Gdiplus::StringFormatFlags::StringFormatFlagsNoWrap);
    Gdiplus::Font TextFont(L"Calibri", 36, Gdiplus::FontStyle::FontStyleBold, Gdiplus::Unit::UnitPixel);
    const wchar_t *Text1M = L"M";
    Gdiplus::PointF TextOrigin1M(0, 0);
    Gdiplus::RectF TextBounds1M;
    const wchar_t *Text2M = L"MM";
    Gdiplus::PointF TextOrigin2M(0, 50);
    Gdiplus::RectF TextBounds2M;
    //--- Test #1: using MeasureString ----------
    G->MeasureString(Text1M, (INT)wcslen(Text1M), &TextFont, TextOrigin1M, &MyFormat, &TextBounds1M);
    G->MeasureString(Text2M, (INT)wcslen(Text2M), &TextFont, TextOrigin2M, &MyFormat, &TextBounds2M);
    //--- Results: Text 1 Width= 44.414 ("M")
    //--- Text 2 Width= 76.828 ("MM")
    //--- Test #2: using MeasureCharacterRanges ----------
    Gdiplus::Status RCode;
    Gdiplus::RectF LayoutRect(0, 0, 1000, 100);
    Gdiplus::Region RegionsList[3];
    Gdiplus::CharacterRange CRanges[3];
    CRanges[0].First = 0; CRanges[0].Length = 1;
    CRanges[1].First = 1; CRanges[1].Length = 1;
    CRanges[2].First = 0; CRanges[2].Length = 2;
    MyFormat.SetMeasurableCharacterRanges(3, CRanges);
    G->MeasureCharacterRanges(Text2M, (INT)wcslen(Text2M), &TextFont, LayoutRect, &MyFormat, 3, RegionsList);
    RCode = RegionsList[0].GetBounds(&TextBounds1M, G); // Result: Text 1 Width = 32.000 ("M")
    RCode = RegionsList[1].GetBounds(&TextBounds1M, G); // Result: Text 1 Width = 32.000 ("M"; the second char)
    RCode = RegionsList[2].GetBounds(&TextBounds2M, G); // Result: Text 2 Width = 64.000 ("MM")
    //--- Test #3: using the good old GDI ----------
    int MapModeResult = SetMapMode(hDC, MM_TEXT); // MM_TEXT is equivalent to Unit::UnitPixel?
    HFONT TextFont3 = CreateFont(36, 0, 0, 0, FW_BOLD, false, false, false, ANSI_CHARSET, OUT_TT_ONLY_PRECIS, CLIP_DEFAULT_PRECIS, CLEARTYPE_QUALITY, VARIABLE_PITCH | FF_DONTCARE, L"Calibri");
    HGDIOBJ PrevFont = SelectObject(hDC, TextFont3);
    ABCFLOAT ABCCharData;
    BOOL RFlg = GetCharABCWidthsFloat(hDC, (UINT)'M', (UINT)'M', &ABCCharData); // Results: abcfA = 2.000; abcfB = 22.000; abcfC = 2.000
    //--- End of Test ---
    delete G;
    Does anybody have an idea why I get so different results?
    Thanks in advance.

    This is a development question and should be directed to a forum that assists in coding. The forum you posted to is for Windows 7 related questions.
    Sorry I cannot help you
    Don't forget to mark the post that solved your issue as "Answered." By marking the Answer you are enabling users with similar issues to find what helped you. Lewis Renwick - IT Professional

  • Can you sort multiple albums into one single album....?

    So my situation is like this...
    I have multiple albums from one specific Band (in this case its music from Shin Megami Persona.) I have all 8 albums sorted separately in Itunes. When it is sync'd to my Iphone it will show all of them in order which is typical. What I am curious about is if I can put the Albums into one Album name and when I click it, it will then show the 8 albums. Basically, this is for the sake of not having a lengthy album list on the iphone.
    If my question/explanation was unclear, maybe this might help.
    My current Album list looks like this:
    Albums- P
    Paramore
    Persona Reincarnation
    Persona 3 OST
    Persona 4 OST
    Persona 3 FES OST
    Persona 3 Portable OST
    Persona Music Live 2008
    Persona Music Live 2009
    Persona Music Live Band
    Pink Floyd Greatest Hits
    ect... ect...
    What I would like is for it to be like this:
    Album-P
    Paramore
    Persona Sountracks <------ click on this
    Pinkfloyd Greatest Hits
    ect...ect...
    Clicking leads to below
    Persona Soundtracks:
    Persona Reincarnation
    Persona 3 OST
    Persona 4 OST
    Persona 3 FES OST
    Persona 3 Portable OST
    Persona Music Live 2008
    Persona Music Live 2009
    Persona Music Live Band
    I've been able group them all together by changing them all to the same album name but it just leads to a extremely lengthy list of songs. So if there is anyway to sort by the way I explained above, I am open for suggestions. Thanks!!!1!1!1!1

    Thanks. That was very easy and works perfectly. Do you know if I can get my 08 edited footage back into 06 for some additional editing without exporting as a Quicktime movie that I can't edit? I want to add audio tracks that I can edit in synch with my video footage like I can in 06. Thanks!

  • Multiple Domains with one single Portal

    We have installed Oracle Infrastructure and Oracle Midtier on one box. Let's say the domain name is http://www.abc.com. When we query http://www.abc.com, it
    goes to the SSO (Infra) and validates the username and password and takes it back to the Mid-Tier Portal Pages. At this junction, everything is working as expected.
    Now, we created two more webpages and they correspond to two domains -- let's say http://www.pqr.com and http://www.xyz.com. The two webpages that got created were PUBLIC pages, so anybody can have access to those pages.
    Can we implement our requirements using one infrastructure and one midtier (1st)installation? OR do we install two more midtier (2nd, 3rd) to correspond
    to each domain name which are www.pqr.com and www.xyz.com and then have the proxy server redirect the request for www.abc.com to 1st-Midtier, www.pqr.com
    to 2nd-Midtier and www.xyz.com to 3rd-Midtier?
    We have a apache proxy server installed in front of the 9iAS, but we are going to use it just for redirection.
    I understand Oracle Infrastructure has only ONE portal Schema and so how would multiple midtier (webpages) will reside? Do I need to create another PORTAL repository and a new DAD, so that www.pqr.com points to the 2nd-Portal Repository and www.xyz.com points to the 3rd-portal?

    Through a single mid-tier it is possible to configure Oracle HTTP Server/Web Cache such that they are configured to handle multiple logical site names (e.g. www.pqr.com and www.xyz.com) by using Virtual Hosts.
    In terms of a single Portal Repository being accessed by multiple mid-tiers (or logical sites), this is not currently possible since the Portal Repository is configured with only one set of site details.
    For further information on configuring Virtual Hosts and Portal see the Advanced Chapter of the 10g Portal configuration guide...
    http://download-west.oracle.com/docs/cd/B10464_01/portal.904/b10356/cg_advnc.htm#1040267

  • IDOC with Multiple Segment to One Single Record Mapping

    Hello
    I have a problem mapping the values of the segment <E1CSKTM>
    which occurs two times in my source IDOC to a single record.
    My requirement is to get one field (LTEXT) from the first E1CSKTM segment and map it to Name and take the same field (LTEXT) but from the second E1CSKTM segment and map it to OrgDescription
    The source message:
    <?xml version="1.0" encoding="UTF-8"?>
    <COSMAS01>
       <IDOC BEGIN="1">
          <EDI_DC40 SEGMENT="1">
             <TABNAM>EDI_DC40</TABNAM>
             <MANDT>300</MANDT>
             <DOCNUM>0000000000750131</DOCNUM>
             <DOCREL>700</DOCREL>
             <STATUS>30</STATUS>
             <DIRECT>1</DIRECT>
             <OUTMOD>2</OUTMOD>
             <IDOCTYP>COSMAS01</IDOCTYP>
             <MESTYP>COSMAS</MESTYP>
             <STDMES>COSMAS</STDMES>
             <SNDPOR>SAPQAE</SNDPOR>
             <SNDPRT>LS</SNDPRT>
             <SNDPRN>QAE300</SNDPRN>
             <RCVPOR>SAPQAX</RCVPOR>
             <RCVPRT>LS</RCVPRT>
             <RCVPRN>QAX304</RCVPRN>
             <CREDAT>20080308</CREDAT>
             <CRETIM>090820</CRETIM>
             <SERIAL>20080211134325</SERIAL>
          </EDI_DC40>
          <E1CSKSM SEGMENT="1">
             <MSGFN>005</MSGFN>
             <MANDT>300</MANDT>
             <KOKRS>1000</KOKRS>
             <KOSTL>0105012501</KOSTL>
             <DATBI>99991231</DATBI>
             <DATAB>19000101</DATAB>
             <ERSDA>20060219</ERSDA>
             <USNAM>HAMEED</USNAM>
             <BKZER>X</BKZER>
             <BKZOB>X</BKZOB>
             <PKZER>X</PKZER>
             <MGEFL>X</MGEFL>
             <BUKRS>1000</BUKRS>
             <GSBER>20</GSBER>
             <KOSAR>N</KOSAR>
             <VERAK>TBA</VERAK>
             <WAERS>SAR</WAERS>
             <KHINR>105012001</KHINR>
             <KOMPL>X</KOMPL>
             <OBJNR>KS10000105012501</OBJNR>
             <PRCTR>0105012000</PRCTR>
             <FUNC_AREA>Z240</FUNC_AREA>
             <FUNC_AREA_LONG>Z240</FUNC_AREA_LONG>
             <E1CSKTM SEGMENT="1">
                <MSGFN>005</MSGFN>
                <SPRAS>A</SPRAS>
                <KTEXT>&#1605;&#1583;&#1610;&#1585; &#1575;&#1604;&#1583;&#1575;&#1574;&#1585;&#1577; &#1608;&#1605;&#1608;&#1592;&#1601;&#1608;&#1607;</KTEXT>
                <LTEXT>&#1605;. &#1583;. &#1608;&#1605;&#1608;&#1592;&#1601;&#1608;&#1607;/ &#1581;&#1587;&#1575;&#1576;&#1575;&#1578; &#1605;&#1606;&#1591;&#1602;&#1577; &#1575;&#1604;&#1605;&#1583;&#1610;&#1606;&#1577;</LTEXT>
                <SPRAS_ISO>AR</SPRAS_ISO>
             </E1CSKTM>
             <E1CSKTM SEGMENT="1">
                <MSGFN>005</MSGFN>
                <SPRAS>E</SPRAS>
                <KTEXT>DvM and Stff/AOD-Mad.</KTEXT>
                <LTEXT>Div Mgr and Staff/AOD-Madinah</LTEXT>
                <SPRAS_ISO>EN</SPRAS_ISO>
             </E1CSKTM>
          </E1CSKSM>
       </IDOC>
    </COSMAS01>
    The Target Message:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:CostElementMT xmlns:ns0="http://se.com.sa/materials">
       <INSERT>
          <COSTELEMENT_DATA action="INSERT">
             <TABLE>usmuser.OrganizationCodes_test</TABLE>
             <access>
                <OrgCode>105012001</OrgCode>
                <CostCenter>0105012501</CostCenter>
                <OrgDescription> English Name<OrgDescription/>
                <Name>Arabic Name</Name>
             </access>
          </COSTELEMENT_DATA>
       </INSERT>
    </ns0:CostElementMT>
    is this possible using the graphical mapping?

    Hi Baheej,
    If in your input "E1CSKTM" segment always occurs twice than u can go with the above UDF mentioned by Chirag and also u need to take care that field (LTEXT) also always occurs.If the field does not occur always than you need to check it using exists functions.
    Andmoreover if the "E1CSKTM" segment does occur more than twice than u need to create a UDF where u need to pass the values alternatively.
    Please check the above details and let us know if any furthur enhancements are to be made.
    Thanks,
    Bhargav
    Note:Award Points if found useful.

  • Add Multiple Effects to a Single Clip at Different Times

         Ok, first post here. Just a little history about myself, I am a senior member of the Sony Vegas board, power user of Photoshop, newb of Premiere, and total newb of After Effects. I have looked at every tutorial, PDF, help manual, Google, FAQ, etc. (In other words I have done my due diligence before posting) for the past 6 weeks and feel as though I know next to nothing :/
         So many questions, so few brain cells...........The current problem I am having is; say I have a clip in the time line and I want to add an effect to it 10 seconds in (use 'shatter' as an example). When I add the effect, it begins at the start of the clip, so I found the Ctrl + Shift + D trick and thought that would take care of it, but the effect is still in the same point in time (10 seconds) in the newly created clip. I have tried shortening the clip, but it acts more like slip editing and doesn't seem to help. How can I get this to work, and then heaven forbid if I want to add another effect at a later point on the clip? Over the years, I have helped hundreds of people, and answered thousands of posts, I hope someone will take the time to help me. Thanks

    You picked a complex one to start off.... The simplest way to get the right timing would be to pre-compose and thus isolate all the timing from the main comp. If you want to stick with the effect in the main comp, then you must animate all the force parameters, including the force value, radius and also the gravity parameter. A third option would be to create a gradient map and animate its threshold. Such a map is simply a greyscale and based on the distribution of the brightness can control which pieces explode first, allowing for some interesting effects when combined with the forces.
    Mylenium

  • How do you add multiple videos to one single timeline in encore cs6

    please need assistance, i have 10 separate video files that i am trying to burn onto as few of dvd dl's as possible

    I would either put each video on its own timeline or use Premiere to edit them together. Often adding more than one video to a timeline in Encore does not work.

Maybe you are looking for

  • Resolved: Use value from select list in pl/sql block

    Hello, I have a form with a select list: P18_BONUSTYPE, the values of which come from a LOV. When the user clicks a button, a page process is used to insert a row into a table. When I use the :P18_BONUSTYPE bind variable in my insert statement I get

  • EXCEL sheets Merge statment

    Hi There I would like to compare two excel sheets Sheet1 - Current day records Sheet2 - Last day records My requirement is this : Comparing sheet1 and sheet2 1. updating the changes and inserting new records into current day with respect to last day.

  • PDF Rendering Inconsistently

    Post Author: i3Mike CA Forum: Deployment Summary: I have a small web application that uses Visual Studio 2005 to render a few Crytsal Reports in the browser as PDFs.  The report renders fine on my development machine (Windows XP Pro) but have issues

  • How do I print a list of my channels?

    How do I print a complete list of only the channels I can use with my Ultimate HD plan??

  • PI/INTERFACE EXCEPTIONS

    Hi Experts i am unable to understand what are the PI exceptions / Interafce exceptions. please help me out with this issue . thanx in advance Edited by: VArjun86 on Feb 2, 2010 5:35 AM