How can I produce a title card with multiple lines of text?

When I drag "title, multiple lines" to my timeline, the second line appears in a smaller font. When I type all my text on a single line, the title appears in a teeny-tiny font. I want to be able to produce four or five lines of text, all in a readable font. Help!

2 solutions:
Costs money and takes work:
Look for a title plug-in on geethree.com. There are free ones out there too.
OR.
Works right now:
Type your title into the 'scrolling block' title.
Drop it in and let it render.
Play it back and pause it when the text is in the middle (or where ever you want it). Choose 'create still clip' from the edit menu. And blamo! You've got multiple lines of the same sized text.
This might take some experimenting to find what font works best. Some get a little jaggy in the rendering process and look bit-mapped a bit when changed into a still.
Give it a shot!

Similar Messages

  • How Can I Create One Entry Sheet For Multiple Line Items of A PO

    Please Tell Me How Can I Create One Entry Sheet For Multiple Line Items of A PO

    hi,
    It is not possible to create single Service Entry sheet for multiple PO line items. It is 1 to 1 relation.
    you have to make different service entry sheets for different item of service master.
    regards
    Manish Joshi

  • How to make an editable bulleted list with multiple lines and custom bullets?

    How do I create an editable bulleted list in Acrobat Pro? I've figured out how to add text fields with multiple lines, and how to add a list box, but I don't see the check box for multiple lines in the list box or how to add bullet points. Can someone please give me step by step instructions? Also is it possible to use custom bullet points?

    Is it a text field or a list box field? The two are not the same...
    The bullets are something that the user will have to enter manually (into a text field, they can only select values in a list-box).
    They can use any unicode character, or special characters if the font used for that field allows for it. You can't use images for the bullets, if that's what you mean.

  • How can I create a XMP List with multiple selection

    Hello,
    I try to build my own XMP custom panel. Herefore I need a couple of lists with the possibility for multiple selections (e.g. the choice for one language or multiple languages).
    But how is it possible to integrate a list into a panel? There is no XMPList inside the custom folder. I have experimented with the standard mx:list and an array collection for data binding into the list. But how can I write the user selection into an XMP field? Example: In the List the user choose three languages (DE, EN, FR). Is it possible to collect the choice into a string and to write the result into an XMP standard field (e.g. dc:description)?
    A further question is, if it's possible to use the "HTTPService" to bind an external xml-file with the languages and other informations into the panel or is it only possible to work with an array collection inside the code?
    Here is my code:
    <?xml version="1.0" encoding="utf-8"?>
    <fi:XMPForm
              xmlns:mx="http://www.adobe.com/2006/mxml"
              xmlns:fi="com.adobe.xmp.components.*" width="100%" height="100%"
              xmlns:Iptc4xmpCore ="http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"
              label="XMP-Custom Panel"
              initialize="ds.send()"
              >
         <!-- Each namespace prefix that is used within an xmpPath-attribute,
               MUST BE registered at the top of EACH panel where it is referenced -->
         <fi:XMPNamespaces>
              <fi:XMPNamespace prefix="dc" value="http://purl.org/dc/elements/1.1/"/>
         </fi:XMPNamespaces>
         <fi:XMPForm>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Allgemeine Metadaten" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Titel"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Druckkennzeichen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Verfasser"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Versionsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%"/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Enthaltene Sprachen" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <!-- Beginn der Auswahl-Liste für die Sprachen -->
                 <mx:Script>
            <![CDATA[
                import flash.events.MouseEvent;
                import mx.controls.Alert;
                import mx.collections.ArrayCollection;
                private const NL:String = "\r";
                // A data provider created by using ActionScript
                [Bindable]
                private var subscriptions:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"Deutsch"},
                            {data:1, label:"Englisch"},
                            {data:2, label:"Französisch"},
                            {data:3, label:"Italienisch"}
                [Bindable]
                private var market:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Marktversion auswählen)"},
                            {data:1, label:"Marktversion Deutsch (M_DE)"},
                            {data:2, label:"Marktversion Englisch (M_EN)"},
                            {data:3, label:"Marktversion Frankreich (M_FR)"},
                            {data:4, label:"Marktversion Italien (M_IT)"}
                [Bindable]
                private var documenttyp:ArrayCollection =
                    new ArrayCollection
                            {data:0, label:"(Bitte Dokumenttyp auswählen)"},
                                  {data:1, label:"Gebrauchsanweisung"},
                            {data:2, label:"Ersatzteilkatalog"},
                            {data:3, label:"Service-Anleitung"},
                            {data:4, label:"Etikett"}
            ]]>
        </mx:Script>
                    <fi:XMPFormItem label="Sprachauswahl" width="100%">
                    <mx:List
                        id="userSubscriptions" rowCount="4"
                        allowMultipleSelection="true" width="100%"
                        dataProvider="{subscriptions}"
                    />
                </fi:XMPFormItem>
                    <mx:Text text="* Mehrfachauswahl möglich." fontWeight="normal" fontSize="10"/>
                <!-- Ende der Liste für die Auswahl von Sprachen -->
              <fi:XMPFormItem
                        label="Marktvariante"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{market}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Dokumenttyp"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%">
                   <fi:XMPComboBox xmpPath="dc:creator" width="100%" dataProvider="{documenttyp}"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Stichworte"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:HBox width="100%" height="26" verticalAlign="middle">
                   <mx:HRule width="50%"/>
                   <mx:Label text="Metadaten Photoshop" fontSize="12" fontWeight="bold"/>
                   <fi:XMPSeparator width="50%"/>
              </mx:HBox>
              <fi:XMPFormItem
                        label="Originalname FA"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS1">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Fotoauftragsnummer"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Dateiname" fontSize="11" width="100%" id="PS2">
                   <fi:XMPTextInput xmpPath="dc:title" xmpType="Localized" width="100%"/>
              </fi:XMPFormItem>
              <fi:XMPFormItem
                        label="Interne Anmerkungen"
                        labelTooltip="$$$/xmp/sdk/custompanels/Test/TitleToolTip=Erzeuger des Dokumentes" fontSize="11" width="100%" id="PS3">
                   <fi:XMPTextArea/>
              </fi:XMPFormItem>
              <mx:Text text="* hier steht eine kleine Erläuterung" fontWeight="normal" fontSize="10"/>
         </fi:XMPForm>
    </fi:XMPForm>
    Any suggestions?
    Thank you in advance.
    Markus

    Hi Markus,
    the FileInfo SDK does not offer a ready-made list component allowing for multi-selection.
    So you would need to implement one using the FileInfo SDK API. Your component "XMPList" would inherit from mx:list and would need to implement the XMPRead and XMPWrite events and talk to the XMP using the IXMPAccess interface within those event handlers.
    Please have a look at the Programmer's Guide, section "XMP Flex components" and at the API description available in "docs" for further guidanc.
    Hope this helps
    Kind Regards
    Jörg
    Adobe XMP

  • How can I share a gift card on multiple devices under the same Apple id

    how can I use the same gift card on multiple devices using the same Apple ID?

    Redeem it on any one; it'll be available to the others automatically.
    (119212)

  • How can I convert video for iPhone with multiple audio/subtitle? (I am using Windows)

    Handbreak is available on Windows platform, however its conversion speed is too slow!
    I hope there are some tools that can combine my converted video together with my audio track and subtitle, and I can select between audio or subtitle inside my iPhone 4.
    Anybody can help me??

    Hi,
    Have you found a solution for this? Can anyone help with this?
    If I have a video track with multiple alternate audio tracks how can you play this on iOS?
    Thanks,
    Apurva

  • How can i create a zip-file with multiple volumes

    Hi,
    i've to zip a large file (250 MB and more). But the zip file shouldn't be greater than 5 MB, because i have to send the file via E-Mail. So i've thought, that the solution of this problem can be to zip the large file in smaller zip-files, which are multiple volumes of a zip-archive. I've searched very long in WWW, but didn't find something. Perhaps you can help.
    Sorry, about the bad english. :-)
    Timo Bunger

    Hi
    Who said your english is bad ?. OK, are you looking for compressing the 250 MB file in to multiple versions using a java program ?. If not, there is a shareware you can download and split the file into multiple parts by specifying size of each part. You can send these parts via email and the other person can combine these parts into a single file again.
    Find this @
    http://www.freedownloadscenter.com/Utilities/File_Splitting_Utilities/EzSplit.html
    You may need to read a bit about it on how to use.
    Thanks
    Srinivas

  • "Create Comment Summary" not showing in Pro 10.1.7?? How can I print document and comments with connector lines on single page?

    Adobe's instructions for Acrobat X Pro say that to print the document with connector lines on the same page, I should go from the menu to "Print With Comments Summary." I'm using version 10.1.7 and that option doesn't show up. My menu bar looks like this:
    and my print dialog box looks like this:
    And if I go to Commenting under Preferences I get this:
    I don't see any of the comment printing options Adobe refers to in their instructions. Am I looking in the wrong place for the option to print comments on the same page as the document? Or is there some reason this is not available?

    Hey Dan,
    With this call:
    DAQmxErrChk ( DAQmxCreateDOChan( taskhandle, "Dev1/PFI0:7","", DAQmx_Val_ChanForAllLines ) );
    You're trying to write to the PFI lines, which are part of port 1. Only the 8 lines on port 0 "Dev1/port0" support clocked/correlated DIO, port 1 only supports static/SW timed DIO (which is what you are using) and counter timer opperations. To do buffered output, check out the Cont Write Dig Port-Ext Clk shipping example at:
    C:\Documents and Settings\All Users\Documents\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Digital\Generate Values\Cont Write Dig Port-Ext Clk
    when you use this, you'll need to specify an external clock - M-Series DIO does not have its own timing engine so it has to get its clock signal from somewhere else. Most just use an onboard counter to generate a clocking signal, so the Dig-Pulse Train Cont example under counters can be combined with this.
    Most of this is covered in the M-Series user manual, though I realize its not exactly lite reading
    Hope this gets you started,
    Andrew S
    Message Edited by stilly32 on 03-26-2008 05:28 PM
    Getting Started with NI-DAQmx
    Measurement Fundamentals

  • How can I modify a Landed Costs with multiple vendors

    Normally, you just open a new Landed Costs, select same vendor as the original, and choose Copy From > Landed Costs, select original and modify!.
    With multiple vendors the "Copy from" lists just turns out empty.
    I have searched similar cases but the newest post i found was from 2009 and was not resolved.
    I'm using SAP B1 9.0

    Hi,
    Tested in 8.81 version PL10.
    1. If there is no landed cost for both vendors, the list of land cost is empty. Make sure vendors that selected in landed cost should have landed cost
    2. If you add multiple vendor, system will show landed cost document for second vendor not for first vendor.
    Thanks & Regards,
    Nagarajan

  • How do I allow a user to enter multiple lines of text within a Text Entry Box?

    I need a text entry box that allows for multiple lines to be inputted with in a Text Entry Box.  How can I make this possible?

    Go to the Options accordion and check 'Show scrollbar'.
    Lilybiri

  • How can I use a gift card with AppleTV?

    Orange (the UK mobile phone company) have a promotion called 'Orange Thursday' or 'Orange FilmToGo' where they offer a free iTunes rental of a particular film each Thursday.  I can get this to work on my iPad, on my iPhone and on my Mac - but not, sadly, on my AppleTV (and the TV is where I like to watch films).
    So my question is - how does one redeem an iTunes Gift Card on the AppleTV.  I'm using the original, Mac based, AppleTV - but I guess that this would be of equal interest to version 2 AppleTV owners.

    To be honest I'm not sure you can do do that from the Apple TV, but if you can you'd need to redeem in iTunes prior to rental, so it may be just as easy to rent your movie in iTunes too, then transfer it to the Apple TV 1.
    Transferring Rentals

  • How Can I produce a Pro_Res files with 5.1 (6 channels of audio)

    I need to screen a feature film in a digital Theater and I want to make sure the Dolby Digital Mix is heard the way the film was mixed and not the way FCP does a 2 channel mix down.
    I have the timeline setup with the 6 channels but when I go to export the file to deliver one QT to the exhibitor, it won't let me export the 5.1 mix.
    I've read several post, Exported the file with Compressor but when I check the channels my audio was not exported the right way.
    Any ideas?

    there is this tutorial online @ Creative Cow from Shane Ross:
    http://library.creativecow.net/articles/ross_shane/multi-audio/video-tutorial
    Are they screening from the QT or from tape?

  • How can I create a "master" document with multiple variations?

    I designed a map that will be posted at a few dozen junctions with a "you are here" symbol.  Every one will be identical with the exception of this symbol.  I don't know if there is any way to do this while preserving a "master" map that can be edited all at once.  For example, I may need to change the location of the paths and it would be a real time saver if I didn't have to edit 20+ files (each with an arrow in a different spot but otherwise the same) separately.  Also, I will be sending the file over email to a professional printer, so I am very uncertain about what would be a standard way to format something like this and really wouldn't want to clog their email.
    I haven't been able to figure out an easy way to do this.  I'm wondering if it involves using multiple artboards, a feature that I'm not very familiar with, or if the easiest way is to have a layer for each symbol location and just save twenty files (whew) and send them to the printer as separate documents - which seems super clumsy.
    I have tried copying the artboard multiple times.  This was my best attempt at editing all at once: I created whatever I needed on one artboard, then dragged it to the symbols panel, then cut, then went to edit > paste on all artboards.  However, this doesn't allow me to simply fiddle with a path or object that already exists and I can't figure out how I would delete the same object from all artboards.
    If anyone has some thoughts, I'm pretty novice, so please keep it in simple terms. Also, I am in a bit of a time crunch, so speedy answers are much appreciated!  Thank you!

    Alright, that makes sense.  And yep...I've never worked with a professional printer so I wasn't sure if it is standard to have something that will require that much involvement in the set-up on their part, but I guess it's preferable to sending a bunch of separate documents.  Thanks so much for your help, Larry!

  • How Can I Use a Gmail Account with Multiple Email Addresses in iPhone Mail?

    So I have a Gmail account with 4 POP accounts that it checks...  Is there a way to get "Reply From" from multiple addresses?
    I've tried the following sites...  No luck with iOS 5...
    http://email.about.com/od/iphonemailtips/qt/gmail_multiaddr.htm
    http://modernerd.com/post/535350679/solved-gmail-ipad-iphone-and-multiple-from

    By setting up your GMail account to forward emails to your iCloud email account address.
    You won't be able to reply from your Gmail address from within iCloud though.

  • Having trouble with multiple lines of text in a JTable

    Hello,
    I am trying to use a JTable rather like a table in Word so that as I type text into a cell that row of cells grows in height to accomodate the text typed.
    I used custom cell editors and renderers to put a JTextField (I think it was) into each cell. These allow the entry of more than one line but the row height is still wrong. So I interceot every key press and work out the height of the custom editor, and set the row height to the max of the cells in the row on each key depression. However, this is a very clunky solution and also does not cope with cell resizing.
    I can't believe that it is this hard to get cells/rows that resize in response to typing. So I'd be grateful if someone knows of a better way of doing this.
    Many thanks in advance...
    Gary

    I've never tried it buy you can read the Swing tutorial on "How to Use HTML is Swing Components":
    http://java.sun.com/docs/books/tutorial/uiswing/TOC.html

Maybe you are looking for

  • [bash] Console resolution issues

    Hi everyone! I`m a Debian user who recently converted into Arch. I am really happy with the functionalty and way the system operates(hello up to date kernel ), but I have an issue with one thing. I built an old pc from leftovers and got an old 9" crt

  • Reg logic required for selection-screen.

    Hi, i have one requirement on selection screen 2 radio button 1 for service 2 for account Parameter      FILE     LOCALFILE     Filename If the radiobutton ACCOUNT is selected the default name for file will be:      ‘Rev_acc_com_&system_time_stamp&.d

  • MIRO document number range

    Hello all, We have different company codes in single client and we want each company code have diffrent set of Invoice document number. and seprate number range assignment i.e internal or external But SAP standard support Invoice document number assi

  • Why is restoring iphone from back up taking so long?

    why is restoring iphone from back up taking so long?  i'm updating the software on my iphone 4 and started it yesterday... then my imac goes to sleep and not sure if the update is continuing... it says time remaining 31 minutes... then 33... 35... 37

  • Cant see JTable content

    Hi,     private DefaultTableModel spieleTableModel = new DefaultTableModel();     private DefaultTableModel teilnehmerTableModel = new DefaultTableModel();         //SpieleTable         spieleTableModel.addColumn("  Nr.");         spieleTableModel.ad