Problem with lower third template & modifying the text...

I'm doing a top 10 type video, & I downloaded this lower third template & I had never used AE before; I figured out how to duplicate it multiple times through the video where appropriate... but when I modify the text on one template it does the same thing to all of them. How do I make them all separate?

Ok, think about what you have done to change the text for moment. You drilled down to a pre-comp or nested comp that contains a text layer. This makes perfect sense. Unfortunately that text pre-comp is also nested in a pre-comp. This means you need to find each of these pre-comps in your project panel and duplicate them there, open the duplicates and then change the text in the duplicates, then replace the original nested comps in the main comp.
I have another observation on your workflow. You've put a bunch of shots and transitions in a single comp which, in effect, tells me that you are using AE as a NLE (editing app). What I would have done is to put every one of your shots that you want to add titles to in a separate comp to simplify each comp. I'd then edit them in a NLE....
The other way I would do this project is to make a comp that is just the needed titles, one comp for each tltle overlay, render the titles with alpha channels, then bring the titles and the original footage into a NLE to edit and add titles.
Building extremely complex compositions with multiple shots in a single comp is usually not a very good idea, even for folks like me that have been doing AE for 20 years. AE is perfect at making shots, lousy at editing sequences so always, and I mean always, try to figure out how you can simplify your project to it's basic elements and build a comp on that. I've had 5 second animations with over a hundred layers, but I've never put 10 or 20 video clips in AE in a single comp and tried to create a sequence.

Similar Messages

  • Problem with a method to modify the transparency of a Label UILabel

    HI
    I Have create a small project which can modify the brightness ( or the transparency ) of a label
    UIlabel
    So the code
    File .m
    ControlBoxCookeAppDelegate.m
    Code :
    Code:
    *// ControlBoxCookeAppDelegate.m*
    *// Control Box Cooke*
    *// Created by Bruno on 1/11/10.*
    *// Copyright _MyCompanyName_ 2010. All rights reserved.*
    *#import "SerialManager.h"*
    *#import "ControlBoxCookeAppDelegate.h"*
    *#import "PickerViewController.h"*
    *#include <fcntl.h>*
    *#include "Led.h"*
    *@implementation ControlBoxCookeAppDelegate*
    *@synthesize window;*
    *- (void)applicationDidFinishLaunching:(UIApplication *)application {*
    *// Override point for customization after application launch*
    *[window makeKeyAndVisible];*
    //RootViewController.m
    *- (void)applicationDidFinishLaunching:(UIApplication *)application {*
    * pvController = [[PickerViewController alloc] initWithNibName:@"pickerview"/@"MainWindow"*//@"Control Box Cooke"//*@"PickerView"/ bundle:[NSBundle mainBundle]];*
    * Led_Operateur= [[Led alloc] initWithFrame:CGRectMake(20,50,280,20)];*
    * Led_Operateur.text=@" ";*
    * [Led_Operateur setBackgroundColor: [ UIColor colorWithWhite:1.0 alpha: 0.5]];*
    * [pvController.view addSubview:Led_Operateur];*
    * [window addSubview:pvController.view];*
    * // Override point for customization after application launch*
    * [window makeKeyAndVisible];*
    *- (void)dealloc {*
    * [Led_Operateur release];*
    * [pvController release];*
    *[window release];*
    *[super dealloc];*
    -(void)Modifie_luma:(CGFloat)luma
    * pvController = [[PickerViewController alloc] initWithNibName:@"pickerview" bundle:[NSBundle mainBundle]];*
    * Led_Operateur= [[UILabel alloc] initWithFrame:CGRectMake(20,50,280,20)];*
    * Led_Operateur.text=@" ";*
    * [Led_Operateur setBackgroundColor: [ UIColor colorWithWhite:1.0 alpha: luma]];*
    * [pvController.view addSubview:Led_Operateur];*
    * [window addSubview:pvController.view];*
    * [window makeKeyAndVisible];*
    @end
    file.h
    Code :
    Code:
    *// ControlBoxCookeAppDelegate.h*
    *// Control Box Cooke*
    *// Created by Bruno on 1/11/10.*
    *// Copyright _MyCompanyName_ 2010. All rights reserved.*
    *#import <UIKit/UIKit.h>*
    *#import "SerialManager.h"*
    *#import "led.h"*
    *@class PickerViewController;*
    *@interface ControlBoxCookeAppDelegate : NSObject <UIApplicationDelegate> {*
    *UIWindow window;
    * PickerViewController pvController;
    * SerialManager portCunima;
    * int portin,portout; // numero de port de com in-out*
    * UILabel Led_Operateur;
    -(void)Modifie_luma:(CGFloat)luma;
    *@property (nonatomic, retain) IBOutlet UIWindow window;
    @end
    To the initialization no problem my label UILabel display itself very well with the transparency
    of 50% ( alpha=0.5)
    But when I modify this transparency with a button, in my window iPhone
    the program call the method Modifie_Luma witch is the class
    ControlBoxCookeAppDelegate
    the program go on to this method, (I have fixe a breakpoint) but impossible to various this transparency.
    So if I change in method (void)applicationDidFinishLaunching
    the transparency
    example alpha =0,5 => alpha =0,8
    Code :
    Code:
    * [Led_Operateur setBackgroundColor: [ UIColor colorWithWhite:1.0 alpha: 0.8]];*
    this example go on
    resume
    when I change the transparency in the method
    (void)applicationDidFinishLaunching it 's OK
    when I change the transparency in the method
    -(void)Modifie_luma it's not OK
    Have you an explanation ?

    So the code , sorry but no marker for the code in post
    How do you do ?
    // ControlBoxCookeAppDelegate.h
    // Control Box Cooke
    // Created by Bruno on 1/11/10.
    // Copyright _MyCompanyName_ 2010. All rights reserved.
    #import <UIKit/UIKit.h>
    #import "SerialManager.h"
    #import "led.h"
    @class PickerViewController;
    @interface ControlBoxCookeAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
    PickerViewController *pvController;
    SerialManager *portCunima;
    int portin,portout; // numero de port de com in-out
    UILabel *Led_Operateur;
    -(void)Modifie_luma:(CGFloat)luma;
    @property (nonatomic, retain) IBOutlet UIWindow *window;
    @end
    // ControlBoxCookeAppDelegate.m
    // Control Box Cooke
    // Created by Bruno on 1/11/10.
    // Copyright _MyCompanyName_ 2010. All rights reserved.
    #import "SerialManager.h"
    #import "ControlBoxCookeAppDelegate.h"
    #import "PickerViewController.h"
    #include <fcntl.h>
    #include "Led.h"
    @implementation ControlBoxCookeAppDelegate
    @synthesize window;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Override point for customization after application launch
    [window makeKeyAndVisible];
    //RootViewController.m
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    pvController = [[PickerViewController alloc] initWithNibName:@"pickerview"/@"MainWindow"*//@"Control Box Cooke"//*@"PickerView"/ bundle:[NSBundle mainBundle]];
    Led_Operateur= [[Led alloc] initWithFrame:CGRectMake(20,50,280,20)];
    Led_Operateur.text=@" ";
    [Led_Operateur setBackgroundColor: [ UIColor colorWithWhite:1.0 alpha: 0.5]];
    [pvController.view addSubview:Led_Operateur];
    [window addSubview:pvController.view];
    Led *ZoneA;
    CGRect Dimension;
    ZoneA = [[Led alloc]initWithFrame:Dimension];
    [pvController.view addSubview:ZoneA];
    [window addSubview:pvController.view];
    [ZoneA Modifie_luma:0.5];
    [ZoneA release];
    // Override point for customization after application launch
    [window makeKeyAndVisible];
    Led *Led1;
    CGRect frame;
    Led1=[[Led alloc] initWithFrame:frame];
    [pvController.view addSubview:Led1];
    [window addSubview:pvController.view];
    [Led1 release];
    [label release];
    [Error_message release];
    [path_port release];
    - (void)dealloc {
    [Led_Operateur release];
    [pvController release];
    [window release];
    [super dealloc];
    -(void)Modifie_luma:(CGFloat)luma
    pvController = [[PickerViewController alloc] initWithNibName:@"pickerview" bundle:[NSBundle mainBundle]];
    Led_Operateur= [[UILabel alloc] initWithFrame:CGRectMake(20,50,280,20)];
    Led_Operateur.text=@" ";
    [Led_Operateur setBackgroundColor: [ UIColor colorWithWhite:1.0 alpha: luma]];
    [pvController.view addSubview:Led_Operateur];
    [window addSubview:pvController.view];
    [window makeKeyAndVisible];
    @end

  • Problem with lower thirds.

    Hi,
    I've created a lower third with 5/6 titles played consecutively on one video track over about 2 minutes. I would like to repeat the titles of my lower thirds to play over my 20 minute video. I've tried to group the titles copy them and paste but this does not seem to work. Is there a way to repeat a lower third in the video track?
    Thanks
    Gareth

    Ctrl+V
    Select the clip(s) you intend to copy on the timeline and hit Ctrl+C (Option+C).
    Target the intended track(s), then park your CTI on the frame where you intend to paste,
    then with the timeline selected hit Ctrl+V (Option+V).
    You can also use the Edit menu for 'Copy' and 'Paste'.
    Edit > Copy
    Edit > Paste

  • Has anyone had a problem with low battery capacity on the 6th gen ipod nano?

    I got my dad a 6th gen Ipod nano for his birthday and he is complaining about very low battery power and i was wondering if other nano users were experiencing this problem

    Samething here.  I got my ipod nano on Christmas 2010 and I always thought that it did not have the 24 hours music playback capacity.  This week I had the ultimate test.  I had to go the hospital and knew I would be waiting a long time. I fully charged my ipod nano (3 hours connected to my computer)... then, I turned it on at 11:30 in the morning and I played the radio non-stop until 5:30 PM when it just stopped working.  That's 6 hours of music playback, not 24...
    Is there something I should know about the battery and how to charge it to maximise music playback??

  • I can't text a contact but can voice phone them. I don't have the problem with any other contact and the contact is not blocked. I have an iphone5.0 OS 8.1.3

    I can't text a contact but can voice phone them. I don't have the problem with any other contact and the contact is not blocked. I have an iphone5.0 OS 8.1.3. I used to be able to text them with no problem. The only difference I can think is that this problem may have started since I downloaded the OS I am using now
    cycleluke

    Wasn't responding to you. Please show me links where this helped.
    Apple isn't showing any system problems: https://www.apple.com/support/systemstatus/

  • How to modify the text in java3d??

    I want to modify the text in java3d.What should I do ??
    first , I add the text to the java3d;
    then , I pick it by using behaior;
    third, I setString("My dog") to change text!!
    but there have some capability error!
    how can I do that??
    thanks in advance!!

    Hi,
    I've a similar problem - I'm using Text2D to create labels for a node-link graph. I've set all the capabilities, etc., and am finally able to change the labels using setString in Text2D. With one slight problem - now I'm getting an error:
    java.lang.IllegalArgumentException: Texture:illegal image size
            at javax.media.j3d.TextureRetained.checkImageSize(TextureRetained.java:389)
            at javax.media.j3d.TextureRetained.setImage(TextureRetained.java:423)
            at javax.media.j3d.Texture.setImage(Texture.java:869)
            at com.sun.j3d.utils.geometry.Text2D.setString(Text2D.java:118)
            at Label3D.setLabelText(Label3D.java:59)The only time I don't get the error is when I change the label from component ID to (which is a string containing an integer, e.g., 1234) to start/stop stage (which is another string containing an integer, e.g., 04, 11). If I attempt to change from component name (a string containing a string, e.g., "mesoderm"), say, to component ID, I get the error. So it's not about the length of the string, since component name is invariably longer than the ID, and the ID could be longer than the start/stop stage.
    oh, this is the code I have for the capabilities bit - no more complaints there
    private void setCapabilities()
      text.setCapability(text.ALLOW_APPEARANCE_READ);          
      text.setCapability(text.ALLOW_APPEARANCE_WRITE);
      Appearance appearance = text.getAppearance();
      appearance.setCapability(appearance.ALLOW_TEXTURE_READ);
      appearance.setCapability(appearance.ALLOW_TEXTURE_WRITE);
      Texture texture = appearance.getTexture();
      texture.setCapability(texture.ALLOW_IMAGE_READ);
      texture.setCapability(texture.ALLOW_IMAGE_WRITE);
    }Any ideas, anyone?
    aba.

  • Modify the text in the file

    Hi,
    I have a text file with few lines. Please let me know hot to modify the text in in the line.
    for example if my file contains :
    this is line 1.
    this is line two.
    this is line 3.
    now i want to replace 1 by one and 3 by three.
    this is a simple example but my requirement is some other .
    I tried opening the file reading the strings and comparing and changing and writting it to new file.
    is there any way to directly open the file and modify without using the second file to be created.
    Thanks in advance,
    pavan

    the actual problem is there is a file in following kind of entry in each line
    <string>, starting point, ending point.
    eg. "this is a file" , 10, 20.
    now i want to calculate the length of the string and add to starting point and check with ending point if it is false then update the ending point with actual value.

  • A problem with low efficiency of automatically connect to Wi-Fi with my ipad2

    Hi,
    There is a problem with low efficiency of automatically connect to Wi-Fi with my ipad2. It would not take quite long time to connect to wifi with my iphone and imac, but only happened on my ipad2.
    any helps would be appraciated !
    Thanks

    Hi, Justin.
    Thank you for the question.  Sometimes a simple power cycle of the router can correct the issue that you are experiencing.  However, the issue could be a little more complex.  Wi-Fi routers need adjustments to settings periodically for optimized performance with the constant progression of wireless device technology.  Below, I have included two articles.  The first article will cover basic Wi-Fi troubleshooting regarding iOS device connection.  The second article cover the recommended settings for current Wi-Fi access points.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/ht4199
    Cheers,
    Jason H.

  • How can Modify the Text of a MessageArea in a Application WD ABAP Standard?

    Dear Experts.
    How can Modify the Text of a MessageArea in a Application WD ABAP Standard?
    I found the following link in the helpsap, but in this moment I don't know How found this text? and Modify this text with a new text.
    http://help.sap.com/saphelp_nw70/helpdata/en/3a/f6ba42a950da11e10000000a155106/frameset.htm
    The text of a MessageArea are in a table of configuration or can do the system for get this text and show in the application in the portal? How can get this and modify by a new text.
    Please help me with a suggestions.
    Thanks
    Regards
    Carmen G.

    Dear Kranthi..
    The datas of the Application is the following:
    General Information About the Application and Component
    Application: FITE_REQUEST
    Web Dynpro Component: FITV_FPM
    Window Information: FPM_WINDOW
    View Information: Layout_view
    Information on Field
    Field ID: HELPTEXT
    Type of UI Element : Explanation
    Attributes of UI Element
    TEXT_DOCUMENT_NAME: FITE_FPM_REQUEST_GENERAL_DA
    I dont found this method L_MESSAGE_MANAGER->REPORT_T100_MESSAGE.
    Please can give more suggestions for found the method
    Thanks in advance
    Regards
    Carmen G.

  • Has anyone noticed a problem with low/no volume after update to iOS 8.1.3 ?

    HHas anyone noted a problem with low or no volume after update to iOS 8.1.3?

    Although this reply is late.  I just want to share that I have the same issue - no LTE after upgrade to 8.1.3 on my iPhone 5.  No matter switch on/off iPhone or LTE option or Airplane Mode -  they all didn't work....but after an upgrade to 8.2 today.  I got my LTE back now after a month...not sure if it is a bug or a reset work.  Good luck to anyone who looking for the resolution of same issue.

  • I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    Did you pull the battery?

  • I am having problem with me Iphone4, looks like the mic of my phone is not working. no one can hear me if I make a call to them

    Can any one please help me I am having problem with me Iphone4, looks like the mic of my phone is not working. no one can hear me if I make a call to them. I have tried all restoring options but no use. please help me

    The mic on my iPhone4 has just quit also. Similar symptoms to yours in that people I'm talking to hear only static or my voice very faintly. The voice/memo recorder also only really records static.
    It happened suddenly and seemed to get better after a day or two but then went completely after another day.
    I'm returning it to Vodafone New Zealand shortly but will have to wait 5-10 days for a replacement. There are NO Apple accredited means to speed this procedure up in NZ.
    We don't even have a single physical Apple Store where you could walk in and talk to a Genius.

  • Hello I have a problem with my ipod touch 1G the problem is that see me key to the floor! And when recogi not prendia after 5 minutes prendio but it gave to me the surprise of which the battery had finished completely! What I did was to set it to load wit

    Hello I have a problem with my ipod touch 1G the problem is that see me key to the floor! And when recogi not prendia after 5 minutes prendio but it gave to me the surprise of which the battery had finished completely! What I did was to set it to load with the USB but do not load the battery me the icon of the battery appear and below of her the beam that indicates that this being loaded but this way I have left it the whole yesterday and what goes of today and continues without loading anything! They can help me porfavor I am grateful for them to him very much!   And my PC does not detect it not itunes

    Try the not-charging topic of:
    iPod touch: Hardware troubleshooting
    It could be that the battery is dead.

  • I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    I have a problem with itunes when I sync the saved music and want to sync my iphone 5 ios 7.0.6 no longer passes the music thing is that just stays on "waiting for sync" and not worry please help are more than 400 songs that do not want to hear who are wi

    Plawexki wrote:
    ...  do you know if the contacts, photos, messages etc will be wiped?
    Yes... Everything will be Wiped and Replaced with what is currently on Your Mac.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/
    You may find this information of interest...
    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • I have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    i have a problem with my MacBook Pro is the almost of my app not working at all like a app store and terminal and other important apps please if u can help me as fast as you can cuz i don't wanna format it that's why am on Mac now not win ?

    Abdussalam.A,
    you mentioned that Terminal does not work at all for your MacBook Pro. What currently happens when you run Terminal? In what way does it not work?

Maybe you are looking for