Preset title length

Is there anyway to preset the title length in iMovie 08?
Every time I add a title it is between 3 and 5 minutes long. Can't I set the length before I add it?
Thanks

I think you mean 3 to 5 seconds, however:-
It's impractical to set a default title duration for a number of reasons, one being that different titles take different times to read. I'm not sure whether im08 tries to adjust the title duration for a particular situation but adjusting the duration of a title manually once it is added is just something you need to do.

Similar Messages

  • Can you adjust preset title effects on Final Cut Pro X

    Im trying to play with the anchor points on a preset title effect called DRAMATICA.  The lettes LEAVE too quickly and don´t allow enough time to be read.
    Can that be done? Is it possible to adjust the titles setting?  Can the anchor point be adjusted for duration?
    Thanks!

    If you mean changing the relative duration of the various phases of the title, you'd have to open a copy in Motion; but be warned that, at least for an inexperienced user of Motion like myself, it seems to be a quite sophisticated title. There are complex behaviors involved, so it is not like some where you'd just publish another parameter and be done with it.

  • Title length in JTabbedPane tabs

    Has anyone ever written code to make JTabbedPane tab titles shorten automatically when there isn't room for all of them in one row?
    Our users like neither of the many-tabs solutions that Swing provides (scroll and multiple rows of tabs), and would prefer a style similar to Eclipse where the tab titles shorten if there isn't room for the entire text.
    All I really want to know is - did anyone do it? And if so a few hints as to how you achieved it.
    Thanks,
    Tim

    Well here is the code I developed in case it is useful to anyone else. Didn't have to do anything clever like work out the length of the text in the end - as you will see in the code:     import java.awt.BorderLayout;
         import java.awt.event.ActionEvent;
         import java.awt.event.ActionListener;
         import java.awt.event.ContainerEvent;
         import java.awt.event.ContainerListener;
         import java.util.Random;
         import javax.swing.JButton;
         import javax.swing.JFrame;
         import javax.swing.JPanel;
         import javax.swing.JTabbedPane;
         import nz.co.timryan.components.CentredButtonPanel;
         import nz.co.timryan.components.FixedWidthButton;
          * Automatically shorten the tab selector titles if necessary to fit them
          * into the width of the space available without scrolling.
          * <br><br>Created on 10/07/2005 by Tim Ryan
         public class BTTTabbedPane extends JTabbedPane implements ContainerListener {
              static BTTTabbedPane instance;
              BTTTabbedPane() {
                   setTabPlacement(JTabbedPane.BOTTOM);
                   setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
                   addContainerListener(this);
                   instance = this;
               * @param args
              public static void main(String[] args) {
                   JFrame frame = new JFrame("TabbedPane test");
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   JPanel main = new JPanel(new BorderLayout());
                   main.add(new BTTTabbedPane(), BorderLayout.CENTER);
                   JPanel buttonPanel = new CentredButtonPanel();
                   JButton addButton = new FixedWidthButton("Add");
                   addButton.addActionListener(new ActionListener() {
                        Random random = new Random();
                        public void actionPerformed(ActionEvent e) {
                             String text = "MARY AND JANE SMITH AND MICHAEL".substring(0, random.nextInt(30) + 1);
                             instance.addTab(text, null, new JPanel(), text);
                   JButton removeButton = new FixedWidthButton("Remove");
                   removeButton.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             instance.remove(instance.getTabCount() - 1);
                   buttonPanel.add(addButton);
                   buttonPanel.add(removeButton);
                   main.add(buttonPanel, BorderLayout.SOUTH);
                   frame.add(main);
                   frame.setBounds(100, 100, 800, 500);
                   frame.setVisible(true);
              public void componentAdded(ContainerEvent e) {
                   recalculateTitleWidths();
              public void componentRemoved(ContainerEvent e) {
                   recalculateTitleWidths();
               * Shorten the titles of the tabs as necessary to fit the selectors across
               * the width of the available space without scrolling (if possible).
               * Whenever a title is shortened, "..." is appended to the text to show that
               * this has occurred.
               * The full length titles are held in the tooltip text so that the text can
               * be restored if other tabs are deleted, and also so that the user can see
               * the full text by mousing over the title.
              private void recalculateTitleWidths() {
                   int tabCount = getTabCount();
                   int[] tabWidth = new int[tabCount];
                   int availableWidth = getBounds().width - 4;
                   //  Reset the titles to their full text
                   for (int j = 0; j < tabCount; j++) {
                        setTitleAt(j, getToolTipTextAt(j));
                        tabWidth[j] = getBoundsAt(j).width;
                   int totalWidth = getTotalWidth(tabWidth, tabCount);
                   boolean wasShortened = true;
                   // Loop around, shortening titles until all the selectors fit across
                   // the screen, or the titles are too short to be shortened further.
                   while ((totalWidth > availableWidth) && wasShortened) {
                        int longestTab = -1;
                        int longestTabWidth = 0;
                        int longestText = 0;
                        wasShortened = false;
                        // Find the longest tab
                        for (int j = 0; j < tabCount; j++) {
                             if (tabWidth[j] >= longestTabWidth) {
                                  longestTab = j;
                                  longestTabWidth = tabWidth[j];
                                  longestText = getTitleAt(j).length();
                        // Shorten its text (adding "..." if not already done)
                        // and then determine the new tab width and total tab width
                        String title = getTitleAt(longestTab);
                        if (title.length() > 4) {
                             if (title.endsWith("...")) {
                                  title = title.substring(0, title.length() - 4);
                             } else {
                                  title = title.substring(0, title.length() - 2);
                             setTitleAt(longestTab, title + "...");
                             tabWidth[longestTab] = getBoundsAt(longestTab).width;
                             wasShortened = true;
                             totalWidth = getTotalWidth(tabWidth, tabCount);
               * Calculate the total width of the tab selectors.
               * @param  tabWidth the individual widths of the tab selectors
               *         (held in an array for performance reasons)
               * @param  tabCount the count of tabs
               * @return the total width of all tab selectors
              private int getTotalWidth(int[] tabWidth, int tabCount) {
                   int totalWidth = 0;
                   for (int j = 0; j < tabCount; j++) {
                        totalWidth += tabWidth[j];
                   return totalWidth;
    }Regards,
    Tim

  • Creating a preset title with animation

    Hello all,
    I'm trying to create a title (or lower 3rd/name strap to be precise) which can be set up for use on other machines running PPro CS5.
    I designed and created everything in After Effects, thinking I could save this as a title preset for Premiere (just like you can with Motion to FCP). I've since learnt that this can't be done (is this right? Am I missing something?). I've almost worked out how to recreate the same animation etc. in Premiere. My question is how do I package or collect the layers and assets into one simple title preset? One which I can save onto other machines for other users without them having to do any fiddly recreation of my animation? Unfortunately I need the text to remain editable, otherwise I'd just hand over a movie or image sequence with an alpha embedded.
    I thought this would be a relatively simple job seeing as Motion and FCP have it working so smoothly — After Effects is infinitely better than Motion and Dynamic Link seems too powerful a tool to not be able to make animated title presets somehow possible for Premiere. Hopefully I'm missing something.
    I also have no preset titles from Adobe. We downloaded the production premium trail then brought the serials — could this be why I don't have the presets installed? Is it worth reinstalling form the same download link?
    Thanks in advance.

    The artwork started out as an exported frame from AE, so the positioning, scale and resolution were all perfectly set before coming into PrPro.
    I tried a PSD, TIF and PNG, all gave much the same (very poor) results when imported as a logo. I realise I could have tried to create my elements in the titler to start with but the tools seem very limited.
    My workaround was to create layered artwork in Photoshop and import them all one by one into the titler as logos, and edit the opacity there. The end product seems ok, with a few tiny alterations to the design, but such an incredibly laborious and seemingly stupid process to get there.
    My original brief was to create title templates for non-editors (journalists throwing video clips together) to use without any fiddly workarounds, so I couldn't rely on them to import logos or animations to overlay onto the strap text or anything similar — it all had to be contained in the titler and saved as a preset.
    The job's done now, but I find it hard to believe Adobe are so far behind Apple with this kind of thing. As I think I've mentioned previously in this thread, you can save Motion projects as templates for FCP, animations, imported assets and all. I assumed something similar would exist between AE and PrPro, but it either does not or it's very well hidden. That aside (maybe AE, being so much better than Motion, is just too complex to save as a title preset), I find it remarkable that the titler tool is so clunky and limited in what it can do — I can't even get it to import movie files, this is video editing software! I know AE can do everything, I've been working with it for years and I still learn something everyday, but that's no good if you need to make a PrPro title template for someone who doesn't use or even have AE.
    I know all my moaning and whinging is useless until I make a feature request, but I'd be very grateful if someone can categorically confirm such features just aren't possible yet or whether I'm at fault and just haven't worked it out properly.
    Many thanks for such quick and helpful responses.

  • Adusting Title Length

    I'm stumped...I can adjust the title length as long as I have a clip in the project window but then I am as yet unable to move the beginning of the clip to the end of the adjusted title. If I try to adjust the title length before I put the clip into the project window IMovie will not change the title length.
    What am I missing?

    I've got it fixed. I don't know exactly why buy during my efforts to lengthen the title clip there were some 2s incremental changes that were made to the original 29s title clip. These changes evidently blocked me from making the change I was going for. By putting the title length back to the original 20s I was then able to adjust the proper length.
    Thanks

  • Changing title lengths in iMovie on iPad

    How do I change the length of titles added to clips in iMovie on iPad?

    Dangit... I was actually hoping I was wrong! lol 
    I'd like to find a way to do this.  After using iMovie (just got my iPad 4 days ago) and ReelDirector, I can say iMovie needs some serious updating to be any kind of feasible video editor / authoring solution.

  • Can't Edit Print Preset Titles

    This used to work, but now I can't edit the titles of the print presets in my Aperture print dialog. I can duplicate and delete them, but can't edit their titles.
    Has anyone else seen this or solved this?
    Bob
    Aperture 3.1.2, Mac OS 10.6.7

    talking about here:
    When I duplicated the preset the title of the new preset came up in edit mode. If this is what you're talking about you could try moving the Aperture preferences plist file to the desktop and restarting Aperture.

  • Setting Title Length

    I can't seem to find a way to set the length of titles. When I create a title it spans the length of the entire clip. Is there currently a way to set length? Also, is it possible to put titles on pictures added to the timeline?

    #1 - The Titles are set to the same duration as the video clip.
    #2 - Titles can only be applied to video clips, not photos.
    Now back to your first question... I found a tricky work around for controlling my Title duration, by adding the same video clip twice.
    _ Add the video clip you want to the Timeline
    _ Trim the first clip 5 seconds (or as long as you want your Title to be)
    _ Add your Title
    _ Re-add the same clip to the Timeline and Trim off the first 5 seconds of the clip
    _ Double Tap the Transition and select "None"
    When you playback, you will see one video clip with a 5 seconds Title.

  • Photoshop CC layer title length work around for generator?

    Hi
    I am using generator to export assets at a number of different sizes. I have found that there is a pretty small character limit on the layer title field which means I cannot export all the assets I need from that layer. I have to duplicate the layer a few times and then add the other asset sizes into the new layer titles. I discovered the issue as I constructed my export syntax in notepad and tried to paste it into the layer title field and it was not accepted - was like I could not paste into it at all. It was only when I grokked that there was a character limit (why so short?) in the layer title that I realised what was happening.
    Does anyone know of a work around to this?
    Thanks in advance for any pointers!

    Hi,
    Do you have 14.1.1 or 14.2.1 installed? We increased the layer name limit to 255 characters in 14.2.1, but maybe that's still too low for your needs?
    If you have 14.1.1, and don't want to update to 14.2.1 just yet, you can use the Duplicate Layer command, as the character limit for that input field is 255. See this blog for more info (Blog | Working Around Photoshop’s Layer Name Limit | Uncorked Studios)
    regards,
    steve

  • JFrame pack() seems to ignor title length?

    Hi,
    I have a simple warning that my client displays in a dialog whose parent is JFrame with a Title..
    I contains a few JLables and a JButton.
    pack() always resizes the JFrame to accomodate its contents.
    But if I have short lables and a long Title, pack () ignores the Title and cuts it off.
    I can't seem to find where to get a hook into the title.
    I'd like to control the font in the Title too.
    Can any one tell me where to look?
    Thanks
    glb

    this might work for the font, if it's what you want
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public Testing()
        JFrame.setDefaultLookAndFeelDecorated(true);
        JFrame frame = new JFrame("Testing");
        frame.getLayeredPane().getComponent(1).setFont(new Font("Lucida",Font.ITALIC,24));
        frame.setSize(300,100);
        frame.setLocation(400,200);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
      public static void main(String[] args){new Testing();}
    }

  • Title length

    some of my song/video titles are too long and it appears as songname...... is there any way i can make the title scroll.

    some of my song/video titles are too long and it appears as songname...... is there any way i can make the title scroll.

  • How can I use two single-dimensional arrays-one for the titles and array

    I want to Use two single-dimensional arrays-one for the titles and one for the ID
    Could everyone help me how can i write the code for it?
    Flower
    public class Video
    public static void main(String[] args) throws Exception
    int[][] ID =
    { {145,147,148},
    {146,149, 150} };
    String[][] Titles=
    { {"Barney","True Grit","The night before Christmas"},
    {"Lalla", "Jacke Chan", "Metal"} };
    int x, y;
    int r, c;
    System.out.println("List before Sort");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);
    System.out.println("\nAfter Sort:");
    for(c =0; c< 3; ++c)
    for(r=0; r< 3; ++ r)
    System.out.println("ID:" + ID[c][r]+ "\tTitle: " + Titles[c][r]);

    This is one of the most bizarre questions I have seen here:
    public class Video
    public static void main(String[] args) throws Exception
    int[] ID = {145,147,148, 146,149, 150};
    String[] Titles= {"Barney","True Grit","The night before Christmas", "Lalla", "Jacke Chan", "Metal"};
    System.out.println("List before Sort");
    for(int i = 0; i < Titles.length; i++)
       System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles);
    System.out.println("\nAfter Sort:");
    for(int i = 0; c < Titles.length; i++)
    System.out.println("ID:" + ID[i]+ "\tTitle: " + Titles[i]);
    Generally you don't use prefix (++c) operators in you for loop. Use postfix (c++).
    Prefix means that it will increment the variable before the loop body is executed. Postfix will cause it to increment after.

  • Looking for a simple way to convert a string to title case

    New to LiveCycle and Javascript.  Looking for a simple way to convert a string to title case, except acronyms.  Currently using the the following, it converts acronyms to lower case:
    var str  =  this.rawValue;
    var upCase = str.split(" ");
    for(i=0; i < upCase.length; i++) {
    upCase[i] = upCase[i].substr(0,1).toUpperCase() + upCase[i].substr(1).toLowerCase();
    this.rawValue = upCase.join(' ');

    Thanks for the reply.
    Found the following script in a forum, which works fine as a "custom validation script" in the.pdf version of my form.  However, it will not work in LiveCycle?  The problem seems to be with
    "return str.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g"
    function toTitleCase(str) {
    var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i;
        return str.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, function(match, index, title){
    if (index > 0 && index + match.length !== title.length &&
      match.search(smallWords) > -1 && title.charAt(index - 2) !== ":" &&
    (title.charAt(index + match.length) !== '-' || title.charAt(index - 1) === '-') &&
    title.charAt(index - 1).search(/[^\s-]/) < 0) {
    return match.toLowerCase();
    if (match.substr(1).search(/[A-Z]|\../) > -1) {
      return match;
      return match.charAt(0).toUpperCase() + match.substr(1);
    event.value = toTitleCase(event.value);

  • Typing Text in Titles is r..e..a..l..l..y s..l..o..w

    I have an 8 core 22GB Mac Pro.  I am using proxy video.  I have audio waveforms turned off.  I have a lot of titles to update, but I cannot update the text in a reasonable amount of time because there is a 1.5 second delay per character when I try to type text into any title.  I believe this has always been like this, but it hasn't bothered so much because I normally only have 1 or 2 titles per project anyway.  Now I am editing some projects that are very title intensive so it is almost impossible to do this.
    -Nathan

    Try these steps:
    1) create a gap at the end of your project and place the title effect over the gap (it's okay if the title length "hangs off the end") - a Gap is literally nothing. A gap won't contribute to FCPX trying to render the text in the canvas.
    2) use the Text Tab > Text area to edit your text (forgoing the onscreen "convenience") [however, I think you'll find that most "easy" titles will respond quite well on the canvas]
    3) move the title to its final position
    One last thing: turn off background rendering if you need to. (That includes background transcoding which can go on for quite awhile and affect FCPX performance quite a bit. To turn off background Transcoding if needed, click the dial to the left of the playhead position indicator under the canvas, or type Command-9 and click on the X to stop completely or || to pause.) Background rendering can also be turned off from the Preferences > Playback dialog.

  • Changing title background?

    PRE 7
    If I start off by dragging title generic1_title to the timeline (as a blue swirly background), I get a title added to my project as expected.
    Question: If I don't like the background behind the title text, can I change it somehow? I can't seem to find a way to modify the background of the included titles.
    Bruce.

    Bruce,
    I do not know of any way to change the
    i Background
    image in a preset Title. Unfortunately, I have never found any way to edit a PRTL (Title) file - Photoshop (and nothing else that I have found) will not do it.
    However, the best way to do this is to find a a "blank" Title, where you like the style of the text and use it over any "background" image that you want, thus creating the same effect.
    Using the same principle, you can go to the menu bar and choose Title>Default Still, then work on your text, adding treatments to it. Place it over the image of your choice and you have the same thing.
    For Ed, this is how I'd recommend creating your CC Titles. In the Titler, you can create various Shapes below your text to get what I think you are asking for.
    For heavy Style application, one could create a Title as an Image in Photoshop. Choose the appropriate File>New preset for your Project's preset. You can bring in any other image as your "background," and then add the text with the Type Tool. There, you can do any number of Style modifications to the Type Layer. You can also add any number of Shapes and other graphic effects. Save your PSD (with all Layers intact), then Save_As and choose TIFF, unless you need transparency. For that, I'd probably go with PNG, but TGA should give you what you want. Import that into PE. You could also "punch holes" in the TIFF (not really using transparency), by doing something with the Track Matte Effect.
    PE's Titler is nice, but lacks some power. P-Pro's is not that much different, or better. The "library" Titles, etc., are often good starting points, but one can do so very much more in Photoshop (even the PSE version), that I find it to be a better tool, when doing anything out of the ordinary.
    There are also 3rd party Titlers, like Bluff Titler and ProDAD's Heroglyph Titler. These really come into their own when one is animating the Titles. For general purpose Titles, I always go to Photoshop. These can also have a little animation, just nothing quite like the 3rd party apps. Actually, PE's text-animation tools do more than P-Pro can do without a lot of manually placed Keyframes.
    Hunt

Maybe you are looking for

  • Search doesn't find control panel entries

    In Windows 7 when I pressed Win + 'KEYB' or Win + 'UPDATE' I get a bunch of entries from Control Panel. But in Windows 8.1 I get nothing even thou I have enabled search everywhere. ps. The answer here does NOT fix my problem: http://social.technet.mi

  • Trying to see the whole picture

    On my movies and home movies, I am trying to see the whole picture on my plasma TV. The setting on the tv will not let me get rid of the black parts. And I don't think the settings on the apple tv does not let me get rid of it either. Can somebody he

  • Device malfunctioned

    When I plug my iPod Nano 3rd generation into my computer it says; "One of the USB devices attached to this computer has malfunctioned, and windows does not recognise it. Also the screen it black and restarting it doesn't work. When I turn on iTunes n

  • MP4 Merge or Join Files Problem. MP4 Maximum File Size?

    I just came back from vacation with my girlfriend, and shot a bunch of home movies with my Canon 5d Mark II. The files created by the camera are MP4's. There are a dozen of files in total and each one is around 1 GB at 720p. What I want to do now is

  • IBP 4.0 FP1 Excel Add-in in Mac

    Hi, In Mac OS X Yosemite, I'm running a windows VM, which has Office '13 PRO installed on it. When I try to install my IBP 4.0 FP1 excel add-in on to the VM, the installation fails with the attached error: Any idea on how to resolve this? Regards, Ch