Use a sequence template multiple times in same project

I have created a lower-third animated title and saved it as a sequence as it has sound. What I'm confused about it how I import that sequence and use it multiple times in the same project and change the content of the title for each sequence. If I import the sequence and change the title in one instance, it changes the title of all instances. I would like to use the sequence and be able to change each title. I have even tried copying sequences and renaming them but any editing still seems to affect the parent sequence file.
I know this must be really simple but I'm going round in circles here. Any pointers appreciated.

Take a look at this thread:
style sheets for titles?
I'm not sure if an AFX Live text will bring over the audio, it is not something I have tried.

Similar Messages

  • Can CPS be installed multiple times on same server

    We have implemented CPS in our environment but want to know
    if CPS and can be installed multiple times the same server. We are
    using Contribute 3 as the client but our users don't know if they
    want to share administration for both Intranet and Public site
    development. So we have to see what are real options are.
    Thanks for any respones in advance.

    When you say share administration are you referring to user
    administration? There's no reason to need more than one instance
    unless you are allowing them to independently manage their
    users.

  • Need to Restrict  the usage of same conditn type multiple times in same PO

    Dear All
    The system is allowing the usage of one condition type multiple times in the same PO line item.
    We want to put restriction in such a way that "one condition type if used should not be allowed to use again for that line item.
    Is there any solution for this through Configuration settings or we need to go for some enhancements?
    Please suggest me the enhancements available to achieve this requirement.
    Thanks & Regards
    Bala

    I think you have to make use of an exit (EXIT_SAPLMEKO_002)  or a BADI (ME_PO_PRICING_CUST)

  • Start/stop QT movie multiple times on same slide

    hi all,
    is it possible to start/pause, start/pause a QT mov multiple times on the same slide without going on t the next slide?
    thx!

    It's possible if you have cursor control (that is, if you are not using a remote, but using the mouse). Hover the cursor over the movie, and you will see controls pop up at the bottom. You can use these to pause, replay, etc.

  • Finalize() method being called multiple times for same object?

    I got a dilly of a pickle here.
    Looks like according to the Tomcat output log file that the finalize method of class User is being called MANY more times than is being constructed.
    Here is the User class:
    package com.db.multi;
    import java.io.*;
    import com.db.ui.*;
    import java.util.*;
    * @author DBriscoe
    public class User implements Serializable {
        private String userName = null;
        private int score = 0;
        private SocketImage img = null;
        private boolean gflag = false;
        private Calendar timeStamp = Calendar.getInstance();
        private static int counter = 0;
        /** Creates a new instance of User */
        public User() { counter++;     
        public User(String userName) {
            this.userName = userName;
            counter++;
        public void setGflag(boolean gflag) {
            this.gflag = gflag;
        public boolean getGflag() {
            return gflag;
        public void setScore(int score) {
            this.score = score;
        public int getScore() {
            return score;
        public void setUserName(String userName) {
            this.userName = userName;
        public String getUserName() {
            return userName;
        public void setImage(SocketImage img) {
            this.img = img;
        public SocketImage getImage() {
            return img;
        public void setTimeStamp(Calendar c) {
            this.timeStamp = c;
        public Calendar getTimeStamp() {
            return this.timeStamp;
        public boolean equals(Object obj) {
            try {
                if (obj instanceof User) {
                    User comp = (User)obj;
                    return comp.getUserName().equals(userName);
                } else {
                    return false;
            } catch (NullPointerException npe) {
                return false;
        public void finalize() {
            if (userName != null && !userName.startsWith("OUTOFDATE"))
                System.out.println("User " + userName + " destroyed. " + counter);
        }As you can see...
    Every time a User object is created, a static counter variable is incremented and then when an object is destroyed it appends the current value of that static member to the Tomcat log file (via System.out.println being executed on server side).
    Below is the log file from an example run in my webapp.
    Dustin
    User Queue Empty, Adding User: com.db.multi.User@1a5af9f
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    User Dustin destroyed. 0
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    User Dustin destroyed. 1
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    User Dustin destroyed. 2
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    User Dustin destroyed. 3
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    User Dustin destroyed. 4
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    User Dustin destroyed. 5
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    User Dustin destroyed. 6
    Joe
    USER QUEUE: false
    INSIDE METHOD: false
    AFTER METHOD: false
    User Dustin pulled from Queue, Game created: Joe
    User Already Placed: Dustin with Joe
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    User Dustin destroyed. 7
    INSIDE METHOD: false
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    User Dustin destroyed. 9
    User Joe destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    User Dustin destroyed. 9
    INSIDE METHOD: true
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    INSIDE METHOD: true
    INSIDE METHOD: false
    USER QUEUE: true
    INSIDE METHOD: false
    INSIDE METHOD: false
    It really does seem to me like finalize is being called multiple times for the same object.
    That number should incremement for every instantiated User, and finalize can only be called once for each User object.
    I thought this was impossible?
    Any help is appreciated!

    Thanks...
    I am already thinking of ideas to limit the number of threads.
    Unfortunately there are two threads of execution in the servlet handler, one handles requests and the other parses the collection of User objects to check for out of date timestamps, and then eliminates them if they are out of date.
    The collection parsing thread is currently a javax.swing.Timer thread (Bad design I know...) so I believe that I can routinely check for timestamps in another way and fix that problem.
    Just found out too that Tomcat was throwing me a ConcurrentModificationException as well, which may help explain the slew of mysterious behavior from my servlet!
    The Timer thread has to go. I got to think of a better way to routinely weed out User objects from the collection.
    Or perhaps, maybe I can attempt to make it thread safe???
    Eg. make my User collection volatile?
    Any opinions on the best approach are well appreciated.

  • Can I attach a link to one image and then use that linked image multiple times in my site?

    Hi,
    Is it possible to attach a link to an image and then use that image (with link attached) multiple times in my site.
    Thanks,
    Ally

    Use 'Find and Replace'>under the 'Edit' menu.
    Select from 'Find in'- Folder and browse to the folder your website files are kept in to select it.
    Search: Source Code
    In the Find box (but obviously use YOUR image code):
    <img src="images/imageName.jpg" width="200" height="200" alt="" />
    In the Replace box: (use YOUR link and image code)
    <a href="yourLink.html"><img src="images/imageName.jpg" width="200" height="200" alt="" /></a>
    Then select 'Replace All'

  • Upload client data to task server multiple times in same day

    I am just getting started setting up the task server piece of ARD. My task server is an Xserve(PowerPC 10.4) and my client computers are mostly eMacs running 10.4. My client computers are all running Deep Freeze by Faronics which causes the hard drive to be restored to it's original state after a restart.
    My question is - where does the report information about the client computer get stored before it is uploaded to the task server. Is it cached on the local client machine? My concern is that if the client computers don't upload their data until the end of the day and a student restarts a computer during the day we won't have a whole day of data recorded for that machine.
    If this is the case, is there any way to upload the data to the task server multiple times in the same day?
    Thanks!

    I am collecting User History and Application Usage. Where is the cache stored - on the local client machine or on the task server? If it's stored on the local machine and one of the students restarts the computer the data will be gone because of the Deep Freeze program. That's why I'm trying to figure out a way to upload the data multiple times throughout the day.
    I'm hoping that the data is cached on the task server so that I don't have to try to upload multiple times.

  • Multiple Versions in Same Project File?

    Is there a way -- official or otherwise -- to accomplish this in GarageBand? To have different versions of a GB project, all of which draw from the same batch of .aif files as their source material, all saved into a single .band package file?
    My specific situation is this: I'm about to use the same batch of about thirty .aif files (totalling a Gig or so in size), to create 7 or 8 different GarageBand projects (each fairly short -- roughly 2-3 minutes in length). Each GB project will utilize different portions of those thirty .aif files. That means if I save each project as a completely separate file (and if I'm understanding GB's file-saving structure correctly), each of those .band packages will contain complete copies of all of those thirty .aif source files. Which is not a major tragedy, but just seems like a waste of 6-7 GBs of space. (I'd also like to be able to archive all the different versions onto a single DVD, sans compression.)
    The analogy I'm thinking of is when I've created two or three versions of a song in Logic (each one a different length, say), and I save them all in the same Project Folder (which I want to be playable on other people's systems who won't have the same 3rd party samples I've used). That Project Folder then only needs to contain a single copy of all the samples and Software Instruments which each of the three versions of the song needs to access. This can result in a significant saving of disk space, as well as making the overall project, with all its different versions, much more portable.
    Is there any equivalent to this in GarageBand '09?
    Thanks,
    John Bertram
    Toronto

    without knowing very much about what your project is, it might be easiest to just use a couple of tracks, in a single project, for each piece. iow, tracks 1, 2, & 3 contain the bits for 1 exported creation, tracks 4, 5, & 6 the next. then solo the groups of tracks and export.
    after that, more the way you seem to want, *and i'd put this on the unsupported, and not the safest idea, list*...
    drop all 30 aiffs into a single project's timeline. then copy the regions you want and paste them into new projects. the new projects will only contain references to the original files, not the actual files. this is risky because if the other projects can't, for some reason, find the first project with all the files contained within, they will all become useless.
    (let's tag this with: Use at your own peril ... and ... Don't try this at home, kids)

  • Using spry select on multiple forms in same page

    Greetings-
    My apologies if this has already been answered but after a few searches I've not found my solution....
    I have a web page with 2 different forms (completely different open form and close form tags) that I'm trying to get the Spry Select Widget to work in.
    Both forms' Spry Select widgets interact as expected with the user with one exception; the second form continues to submit to the action page even if the user is trying to submit an invalid value (the docs suggested using the value of -1 so that's what I'm using). The appropriate error gets displayed to the user but the form continues to submit, which I don't want. Is there a limitation that I missed regarding the use of multiple forms in the same web page with the Spry Select Widget?
    FWIW, I'm running the app on ColdFusion and even the cfform/cfselect won't work with the Spry Widget.... I've named and id'd all forms and form elements and still no luck.
    Any ideas?
    Thanks in advance,
    Rich

    Hi Brad,
    The preamble looks reasonable.  I would like to make sure you are clear on the process.
    The data needs to be rendered twice (i.e. a 2 step job).  In the first step you create a trace file with the page count for each document in it...\trace"^define User:PageCountForTrans_@:TransCount. @$page.@LF."."
    In the second step, that trace file is brought back in as a preamble file.
    Please confirm that you are in fact passing the data twice.
    cheers
    Chris

  • Best way to print an image multiple times on same sheet and not lose quality when doing so

    Hello,
    I have the full subscription to Adobe Creative Suite, but am unfamiliar with almost all of the programs. I have used Photoshop a bit, but not too much.
    I have this project I do several times a year, and am sure there is a better way to do it.
    I am sent a colourful excel spreadsheet - a schedule. I print a bunch of copies full size, then need to print 8 copies on a single 8.5x11 piece of paper.
    I've tried several methods - but want to know what the best way to retain the best quality would be.
    The best I've done (and I'm not totally happy with) is to copy the image into Photoshop, save as a PDF, create 7 more copies then merge as a single PDF and print.
    I do find that the quality does suffer a bit.
    Can anyone suggest a better way?
    Thanks in advance.
    Amber

    With all the apps at your disposal, that is a long way around. Granted it is hard to not loose quality/data when scaling. But it makes sense to create the document to your liking, then create a new document that is 8.5" x 11" and place the original into it. Then using guides or alignment tools, duplicate that image.
    This allows you to have full control over the location of each image, and extra data needed like captions, names, etc. and how that data is formated.
    Luckily you have multiple programs that can accomplish this. Some are easier than others, some are more robust than others, etc. In the end it is what you are familar with and how much time you can spend on learning while getting the job done.
    Photoshop, Illustrator, Indesign are all your go to programs from creating anything for print and they can be used for other media as well. But that is their strong suite, print.
    All three apps have their own dedicated forum on this site, so go ahead and mark them as your favorites as your questions for each need to be in their respective place.
    http://forums.adobe.com/community/photoshop
    http://forums.adobe.com/community/illustrator
    http://forums.adobe.com/community/indesign

  • How can we use a pdf form multiple times for different people (students)?

    Our school created a pdf form of our report card but we are not able to "save as" the forms for use by multiple teachers for multiple students. Please advise.

    Just use Adobe Reader XI.  Adobe Reader XI allows for forms data saving but it does NOT allow for locking down that data.

  • How can I use a menu name multiple times in Muse?

    I need to use the term resource friendly in the main menu as well as a submenu for a project I am currently working on. But Muse does not allow me to repeat the term. Is there a workaround for this?

    In other words, in the menu properties change it to manual.

  • How to Print Multiples time the same psf on one sheet

    Hi,
    I'm looking for the equivalent of rectangular array tool in Autocad, to print recto/verso buisness cards so I could print multiple cards per pages.
    With the multiple tool I just get one card, it doesn't seem to work.
    Thx for your help,
    Matt.

    Thx !
    The Ctrl technique worked fined,
    I wished there was a better tool to do this, but it worked !

  • How to Print Multiples time the same pdf on one sheet

    I see many have asked this question. This can be acheived easuly in the print dialogues. It is applicable for all applications which can open the print dialogue.
    Try the following!
    With the Print window open, make sure that the “Pages per sheet” setting is set to “2 pages” and that the “Page range” value is “Pages: 1,1?
    if your document has 2 pages and you have to print 2 pages in one sheet 2 times, set the Pages per Sheet to 4 & Page Range Value as "1,2,1,2"
    i hope this helps.

    Thx !
    The Ctrl technique worked fined,
    I wished there was a better tool to do this, but it worked !

  • Using a network adapter multiple times problem

    <Microsoft Network Adapter Multiplexor Driver(Team 1) is either part of more than one virual switch or added twice as part of a single team .Make sure the physica l network adapter is used only once > this is the problem that
    is shown me
    and still i cant able to identify the problem..
    here is the hint of my digrram
    3 host
    each host: 2Nic + teamed + trunked(Team1)
    (Virtual switch) for VM   and Connected to Logical Network
                     Microsoft Network Adaptr Multiplexor driver  (which is teamed of the 2Nic) conneted to Logical Network
                     1Nic for iscsi trunked
                     1Nic for iscsi trunked
    So the problem is occur while am trying to create New Virtual switch  thinking to create Connectivity between my host  and Correct me in this point also.. i am in of need serious help of regarding steps of my progress..
    thank u
    alex

    Hi Alex,
    If you are using a standard virtual switch in SCVMM, then you should only need to add the multiplexor adapter to the virtual switch, do not add the physical adapters. 
    If you are using a logical switch then since VMM will create the team, its important that you do not team the two physical adapters in advance, instead you just add the two unteamed physical adapters directly to the logical switch and VMM will team
    them automatically according to the settings specified in the port profile.
    For the above to work you need to make sure the logical switch (in my case "Datacenter Switch") has the uplink mode set to "Team".  The uplink port profile will also need to contain the desired teaming mode and load balancing algorithm.
    Greg
    Greg Cusanza [MSFT] --Posting is provided "AS IS" with no warranties, and confers no rights.

Maybe you are looking for

  • 12.3 - 12.3  is not equal to 0??

    I am trying to calculate the result of two Numbers ((Float)f).floatValue() - ((Double)d).doubleValue(), where f is equal to d. However the result is not equal to zero. I've tried to print out (12.3f - 12.3d) the result is not equal to zero too. I thi

  • Validate xml file authenticity

    I am sending out a standalone player that uses an xml driven image gallery. I need to prevent changes to the xml file to stop images being added to the gallery. I can can password protect the xml file to prevent changes, but I also wondered if there

  • Classroon in a book ?

    I have been sitting on Elements 6 for a long time. Now that I have time to start working with it.  I can't get classroom in a book to start, on the first page shown in the book, after the Organizer page. It goes right to the organizer, and skips what

  • OTL - Hwo to change the error message

    Hi When someone submits time beyond the valids project and task dates, we get teh followign error. We want to change the text of this message to give more meaningful text. How do i change that in OTL The expenditure item date is not within the active

  • Stack picks are lost when duplicating a book - any ideas?

    Hi everyone, I've noticed that when I duplicate a book in Aperture 2, my "picked" image settings/choices from each stack are lost and i have to go back and re-pick the images I want to use. With the 100 page books this becomes very time consuming and