Skipping Text

I am currently working on a lower third using LiveType. I used the "Logo Third" lower third template that comes with LiveType. I expanded upon that design. I need for certain text to scroll accross the bottom, as it does in the original template. However at about 90 frames in, it skips. I can not figure out what is causing this to occur. Any ideas are greatly appreciated. Thank you.

Okay, I have discovered that it is a loop. The loop has a length of three seconds, and by adjusting the speed of the loop I affect the length of time that it takes to complete. Sorry to bother anyone.

Similar Messages

  • How to skip text files in  sql table ?

    Hi,
    I am using 10g developer suite. How to skip the record in to sql table from txt file ? Table has primary key concept.
    At present I am skipping the record via sql loader. Is there any way in the forms like plsql coding ?
    Warm regards
    vasanth.

    So I'm guessing you are loading a text file into a database table using SQL*Loader and using the skip funcionality to skip records you don't want loaded. Now you want to do something similar in PL/SQL?
    You could take a look at External Tables which will allow you to specify the text file as an external table and skip rows just the same as SQL*Loader, but you can query directly from it, or you could go the long winded way about it and use the UTL_FILE package to open the file, read lines of data and process those lines yourself choosing whether to skip lines and which ones you want to insert into a table etc.

  • In Design CS5 Spell check skipping text boxes

    I'm running Mac OSX 10.5.8 on my MacBook.
    I am working on a menu with a number of text boxes.  When I do spell check it seems to only check the box where the cursor is located.  I have tried doing Cmd+A ( to select all the boxes on a page) and it doesn't seem to help.
    I have dynamic spelling enabled, but there are words I know spellcheck dislikes that don't have red lines beneath them.
    I have all the preferences checked and Language:English:USA is in place.  Case sensitive is also checked.
    Any ideas?  I'm nervous I'm going to miss a spelling error which will doubtless subject me to endless ribbing from my coworkers.  However, selecting the actual words in each individual text box will take forever.
    Thanks!

    jeminky wrote:
    That's what I thought, but it didn't seem to be doing so.  There are a number of words I haven't added to my dictionary purposefully - such as bleu - because, while I use them a lot when doing menus, I'd hate to have the word "blue" misspelled in another doc and miss it.
    You can create a character style with the language property, such as French, and any other specific properties you like. ID uses the specified [EDIT] language's ]/EDIT] dictionary when spell-checking content, so "bleu" tagged with the French character style will pass the checker, but "bleu" tagged by default as your default language, like the overwhelming preponderance of your text, will be detected as an error.
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices.
    Message was edited by: peter at knowhowpro

  • Spell-checker digit problem

    In CS4, is there any way to make the spell-checker ignore words containing numbers?
    Having to tell the spell-checker to ignore each one manually is a real pain...

    Aeschylus123123 wrote:
    In CS4, is there any way to make the spell-checker ignore words containing numbers?
    Having to tell the spell-checker to ignore each one manually is a real pain...
    It's possible that a GREP paragraph style, or GREP find/replace, can apply a [No Language] character style to text that fits the patterns of your URLs. There are great GREPpers on this forum who may step in. InDesign's speller skips text without a specified language.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How to skip the first row in Text file (in Sql Loader)

    Hi All,
    How to say the control file to skip the first row of the text file..
    i just going this example
    this is my text file:
    01308201222455038130820122245503813082012224550382
    1090358 474661834012245503813082012 0075 0 00000000000 000000000 00000130820120000000000000000 136.84 -833.3911082012 000000 000 009035847466183 090358 47466183 0015007514300000970001430000097700BH1150274792012081320120811201208122012-08-11-22.45.50.38369899999.0075LIQJGL17
    Control file:
    OPTIONS
    DIRECT = TRUE ,
    PARALLEL = FALSE ,
    SKIP = 1,
    ERRORS = 0
    UNRECOVERABLE
    LOAD DATA
    INFILE      <"FILE_DIR">
    BADFILE <"FILE_DIR">
    INSERT
    INTO TABLE DAILY_TRANSACTION
    WHEN (1:1)='D'
    TRAILING NULLCOLS
    Above the Eaxmple text file i need to Skip the first row which is
    01308201222455038130820122245503813082012224550382
    please can anyone suggest me is this correct?
    if not please correct me please
    since two days i been serching but i didn't get any thing
    Thank's
    Edited by: Lavanya on 24-Sep-2012 00:51

    Lavanya wrote:
    Hi Jeneesh,
    Thank you for your prompt replay
    I didn't try to load this control file
    And i need one more question
    I have Text file in my Machine which Contains very huge data so i was wrote one control file for that, and i got FTP connection also as well as.
    My question is firstly I need to PUT the Text file Into Unix Server isn't?
    so when i trying to put the text file into unix it's giving an error
    ftp>put c:/abc.txt
    Not connectedYou haven't succesfully made your FTP connection to the server.
    e.g.
    c:\>ftp
    ftp> o testserver
    Connected to testserver.mycompany.com.
    220 testserver FTP server ready.
    User (testserver.mycompany.com:(none)): myuser
    331 Password required for myuser.
    Password:
    230 User myuser logged in.
    ftp>then you can use FTP to put your data to the server. Remember, if you are transferring a text file from a windows based operating system to a unix server you need to put it in ASCII mode...
    ftp> ascii
    200 Type set to A.
    ftp>which will automatically convert the windows CR/LF pairs to the single LF character used by unix.

  • Skipping Blank Lines in text File

    I am working on an assignment in which i have to read from a text file and store the strings individually. The problem i have is that the text file has blank line between each set of strings. So i figured to use "fin.nextLine();" to skip that blank line and continue with storing the values. but i get
    "Exception in thread "main" java.util.NoSuchElementException: No line found
         at java.util.Scanner.nextLine(Unknown Source)
         at processmsg.ProcessMessages.choice1(ProcessMessages.java:68)
         at processmsg.ProcessMessages.main(ProcessMessages.java:25)"
    which is where the fin.nexLine() is at. How can i just skip that blank line?
    System.out.println("Please enter the file location");
              Scanner stdin = new Scanner(System.in);
              String fileName = stdin.nextLine();
              // read the information from the file
              try {
                   Scanner fin = new Scanner(new File(fileName));
                   String tSendName = fin.nextLine();
                   while(tSendName != null)
                        String tRecieveName = fin.nextLine();
                        String tPhoneNumber = fin.nextLine();
                        String tDate = fin.nextLine();
                        String tTime = fin.nextLine();
                        String tStatus = fin.nextLine();
                        String tMessage = fin.nextLine();
                        PhoneMessage phonemessage = new PhoneMessage(tSendName, tRecieveName,
                                  tPhoneNumber, tDate, tTime, tStatus, tMessage);
                        fin.nextLine();
                        tSendName = fin.nextLine();

    don't know if you want the whole code, the whole code is kind of large and spread out over 3 different classes. and yes the text file is standard
    sender
    reciever
    phone number
    date
    time
    status
    message
    sender
    reciever
    phone number
    date
    time
    status
    message
    sender
    reciever
    phone number
    date
    time
    status
    message
    private static void choice()
              // scan the file location from the user
              System.out.println("Please enter the file location");
              Scanner stdin = new Scanner(System.in);
              String fileName = stdin.nextLine();
              // read the information from the file
              try {
                   Scanner fin = new Scanner(new File(fileName));
                   String tSendName = fin.nextLine();
                   while(tSendName != null)
                        String tRecieveName = fin.next();
                        String tPhoneNumber = fin.next();
                        String tDate = fin.nextLine();
                        String tTime = fin.nextLine();
                        String tStatus = fin.nextLine();
                        String tMessage = fin.nextLine();
                        PhoneMessage phonemessage = new PhoneMessage(tSendName, tRecieveName,
                                  tPhoneNumber, tDate, tTime, tStatus, tMessage);
                        // skip blank line between entries
                        fin.nextLine();
                        // test date string for correct format
                        int month = Integer.parseInt(tDate.substring(0,2));
                        int day = Integer.parseInt(tDate.substring(3,5));
                        int year = Integer.parseInt(tDate.substring(6,10));
                        // test time string for correct format
                        int hour = Integer.parseInt(tTime.substring(0,2));
                        int minute = Integer.parseInt(tTime.substring(3,5));
                        int second = Integer.parseInt(tTime.substring(6,8));
                        tSendName = fin.nextLine();
                        msgList.add(phonemessage);
                   fin.close();
              } catch (FileNotFoundException e) {
                   System.out.println("The file " + fileName + " was not found!");
              } catch (java.lang.NumberFormatException e) {
                   System.out.println("The date and/or time is not of the correct format");
         }

  • Output skips few line item texts

    Hi All,
    In smartform output for purchase order it displays line item and their text in main window.
    For some PO's it works fine and for some it skips few lines of some line item text.
    In debugging i could find all line items populated.
    Steps Taken:
    1) In table defination i checked no page-break. Problem is it works fine but the first page comes blank and rest is fine.
    Is there any way to resolve this?
    Thanks,
    M Mishra

    Hi All,
    In smartform output for purchase order it displays line item and their text in main window.
    For some PO's it works fine and for some it skips few lines of some line item text.
    In debugging i could find all line items populated.
    Steps Taken:
    1) In table defination i checked no page-break. Problem is it works fine but the first page comes blank and rest is fine.
    Is there any way to resolve this?
    Thanks,
    M Mishra

  • Exporting text to Word skips footnotes

    Hello all. Working in 5.5. I have to export the text from an older book to Word, so we can send to the editor to update to a 2nd edition. Calloo, callay, oh frabjous day. ANYWAY, when I export the text, it skips the footnotes! It grabs the footnote markers but skips the footnote text. My editors are going bonkers. Any ideas?
    Thankee!

    IDCS1?  ID2?  Been there, done that.  But don't rush into this.  Even if you have healthy footnotes in Word, InDesign has a nasty habit of "disappearing" a few on importing the Word file.  It doesn't happen with every file, but it happens more often than it should.  You might want to consider using separate files for body text and notes during editing to ensure you only have to cut-and-paste once.  Or maybe IDCS6, due imminently, will finally handle footnotes reliably.
    Then there's scripting.  You could see whether Peter Kahrel's tools might help.  Marc Autret also wrote a couple of scripts that can move footnotes into the body of the text and then back out again into ID footnotes.
    Good luck!
    David

  • My pixma printer skips lines/text only in black

    My pixma printer skips lines/text.  Color prints fine.  Anything printed with PGBK (5) does not.  I have cleaned the printer head by removing the carriage that holds the cartridges and using a Q-tip.   That did not work.   It seems that many people have this problem, but nobody can solve it.  Note, the problem is in the printer, not the computer, as the test sheet does not print the PGBK correctly (skips some of it).   I almost suspect that the printer prints fine when the cartridge is going in one direction, but when it comes back, it doesn't print at all as the pattern is very regular.  Like this:
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Has anyone solved this? 

    Hi, ChesterJ!
    So that the Community can help you better, we will need to know exactly which printer model you're using. That, and any other details you'd like to give will help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks and have a great day!

  • Skip a column when importing a text file into Excel 2010

    Hi,
    I have a formatted Excel 2010 spreadsheet that I want to import data from a .txt file located on my local drive. The third column of the spreadsheet is a concantenate formula that converts the second column from a Hex formatted value to a Dec formatted value.
    I want the first two columns of the text file to import into the first two columns of the spreadsheet and skip the third column then import the remaining columns from the text file to the spreadsheet. Is there an easy way to do this or do I need a VBA code
    and if so can you provide that to me?
    Thank you,
    Jennifer

    Hi Tony,
    I am sorry if I didn't express my issue more clearly. Where I need to skip a column is in the Excel spreadsheet. I want to import all the columns from the text file. I want the first two columns from the text to import to the first two columns in the Excel
    sheet A and B, skip the third column C in the spreadsheet, where I have a formula to convert the second column B values from a Hex format (imported data) to a Dec format, then continue to import columns 3, 4, and 5 from the text to spreadsheet columns D, E,
    and F. I would think the function would be in the Excel spreadsheet maybe some type of protection setting or something similar, if it can even be done. 
    Thank you for taking the time to help me out with this.
    Jennifer

  • Why do my text skip my phone and end up in my iMac?

    Why do my text messages skip my iPhone and land in my iMac?

    Why do my text messages skip my iPhone and land in my iMac?

  • Why does spell checker skip some text captions?

    I spell checked my project and found typos. But there was another typo on the very first slide, first text caption, which it left behind. Why did it do this?
    I thought, maybe this typo is in my dicitonary, so I deleted more letters from the word, and it still did not find it.
    Then, my search on this topic I found advice to export all captions to Word and spell check there, then reimport back into Captivate. Is there something I don't understand here? Why does spell check find some errors and not others?
    Please straighten me out.
    Thx!

    Hi there
    Just a WAG here, but what had focus when you kicked off the spell checker? My thought here is that many spell checkers work in "directions". For example, in some apps, you choose whether you search from the selected point forward or from the selected point backward. So assuming Captivate is programmed to work in "this point forward" mode only and you have perhaps slide three selected, that would explain why earlier slides would be skipped.
    Note that it's only a theory at this point. Either way, I'd strongly suggest you consider filing a bug report to the development team about it so they can investigate. (Link to the reporting form is in my sig)
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • My PIXMA MX472 skip printing texts

    My PIXMA MX472 skip printing words in the TEXT portion of "Directions" obtained from the MAP feature of the MSN page. I am using Internet Explorer 10.  Any suggestions please?.

    Hi, carmonsr!
    So that the Community can help you better, we will need some more information.  Are you only having problems printing these maps, whereas all other documents print okay?  Have you also tried printing your map from another web browser? That information and any other details you'd like to give will help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks and have a great day!

  • My iPhone is skipping back to the start of a song every time I unlock it, especially when I am replying to a text message, this is very frustrating and just want to know if it is a simple bug that will be dealt with in the next update?

    My iPhone is skipping back to the start of a song every time I unlock it, especially when I am replying to a text message, this is very frustrating and just want to know if it is a simple bug that will be dealt with in the next update?

    Assuming the phone isn't jailbroken, the basic steps (as needed) are:
    Restart phone (you already did this)
    Reset phone
    Restore phone in iTunes using a backup
    Restore in iTunes as new, without using a backup
    See appendix B of the User Guide for details
    http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf
    If your phone is jailbroken, this is the most frequent cause of the problems you described.  Restoring could permanently brick the phone.
    Note that your iOS is old and the current version is 4.2.8.  It's odd that it wasn't updated when your activated your phone in iTunes, being that you got it last Friday.

  • Hp Pavilion dm4 2180us keyboard skips to different place in text and starts typing there.

    Hp Pavilion dm4  2180us keyboard skips to different, apparently random, place in text and starts typing there. Rebooting does not help.

    Hello SFLENN, Thank you for posting on the HP Forums! I understand the computer is experiencing keyboard issues. I will do my best to assist you! To start with some basic troubleshooting, please try the steps in this HP document: Wireless Keyboard and Mouse Troubleshooting If these steps do not resolve the issue, please provide the operating system of the computer.  If you require assistance locating this information, please reference this website: Guide to finding your product number Thank you for choosing the HP Forums. Have a great day! Mario

Maybe you are looking for

  • "Library" Projects vs "Projects & Albums" Projects

    Hello all, I have been using Aperture for about three years. I have Aperture 3 on three different Macs. Prevously I have been using Windows XP and have been storing photos in directories on the hard drive the old fashioned way. I have some questions

  • Format Data doesn't work?

    Hi I want to see numbers in Discoverer formatted as set in Administrator, which is 999G999G990D99. The Format Data dialog box tells me that 'Default' formats numbers as they have been set up by your Discoverer manager, using the format 9999999999. On

  • D.W. CS3 on Windows 7 64bit, ok?

    I'm going to upload D.W. Cs3 that I have now on a Windows Vista 32 bit computer to a Windows 7 64 bit computer. Will that work out ok?

  • Can I open and work from Microsoft excel in numbers

    I used to work from my HP windows laptop and now I have just bought the MAC.  I want to open and continue working on my excel spreadsheets and word files.  Can I use numbers and pages or do I have to go and buy the Microsoft package again?!!

  • What are the Illustrator CS5.5 default brushes?

    I have brushes that I don't remember having before, and I'm not sure if certain things I downloaded include these brushes. I don't want to use brushes that I don't have licenses for. I have Illustrator CS5.5. If someone could tell me the list of defa