Importing Text and Animating

Hi,
I've got an excel file with a list of 200 names. I need to end up with these 200 names randomly fading in and out (over the course of 1-2 minutes) and possibly with some type of random animation or behavior to make the whole effect appear interesting.
Please share any ideas about how to achieve this, other than dealing with each name individually. I don't understand Motion enough to know if there is some way to import the list and have this all happen automatically.
Do I really need to deal with each name separately?
Thanks for any help?
Matt

If you arranged it to have one name per frame, you could do a clone layer of that, then use a replicator on the clone layer with a random fill and use the Sequence behavior to fade the names in and out...
Patrick

Similar Messages

  • Placing Illustrator and InDesign Files, Importing text and forms into Library

    Firstly, is there any way at all to maintain the working elements of an Illustrator or Indesign file if placing in Muse, is it even possible?
    Example: I have a fully created website layout with text boxes and vector images saved in Illustrator.
    I'm wondering, can this be bumped to Muse using the 'Library' feature as a whole, as elements like the contact form were in the Katie's Cafe tutorial?
    I understand how that works for singular images, but is it at all possible with a complex image that contains both text and vector, or does this image need to be sliced up and saved as individual elements. Is there anyway to extract the text boxes from Illustrator or InDesign as they are? How are working text boxes created in InDesign as mentioned in the Katie's Cafe tutorial?
    Thanks so much in advance, and sorry if this is totally obvious!

    Hm, okay.
    How would I know if the file is corrupt?
    Well, you often don't, until it crashes and is unrecoverable. Then it's too late. But "insanely swollen file size" is a symptom. However, I can't know if your file size is reasonable or not, depends on the content, and it sounds like your content is pretty heavyweight. For instance - I thought it was possilbe to strip out custom brushes when saving AI files to bring file size down. I've never touched an AI file that was too large because of the number of swatches. So, depending on how much you have in there, then maybe your two-gig file isn't on the verge of crashing and burning.
    I did inherit it, but have since used it as a template and "saved as" various versions. I'm not really sure if it started in 5 or not.
    Cool trick: Click on Help, then hold down Control when you click on About. This will take you to a "Component Information" screen, and in the lower-left-hand corner you can see the Document History. So you can learn if you inherited a file that started in CS5. Or in CS3, or in PageMaker.
    General best-practices as recommended by forum regulars is to finish a file in the format in which it started. If a file has to be moved from an older version to a newer version, then exporting IDML or INX before moving is advised. This is because of a lot of anecdotal evidence that opening up old files in newer versions and then doing a bunch of work is correlated with file corruption.
    I have not tried to export-to-IDML-and-reopen, but I certainly will. What does this do exactly?
    Well, it'll do a bunch of different things. It'll reinterpret the file format, which can strip out corruption. It'll strip out all image previews. If there is cruft in your file, then this will probably remove it.

  • Importing Text and Viewing Proxies

    Hello, for H.W. for I class I'am taking I have to ask a question on Apple's LT or FCP Forumns, so I have 3 "dumb" questions.
    1. Can you import new textures and fonts into Livetype?
    2. Can you make a bug in livetype the transfer into FCP?
    3. Can you view proxies without installing the additional content from the DVD CD?
    So, if u would please answer by questions for my HW I would appreciate it.
    Thank You so Much!

    Yes, i know all of this you mentioned. The thing is that I dont know how the source files will be styled, if they are gonna be styled at all.
    I hoped that there is some way that I dont know and that I can use, but it seems that there is no way to do it other than the ones you mentioned.
    And thats the hard way
    Easiest would be to just replace the styles from the source file to the ones applied in indesign, but if there are no styles in source file than copy paste is the easiest way I think. Cause copy pasting retains the style of the indesign document.
    Or some advanced Find/Replace method can provide good results.
    Thanx anyway

  • Dynamic text and animated masking problem?

    Hi
    Can anyone suggest to me what might be happening here. I will
    try and explain step by step... I am using flash MX
    I have dynamically created a movieclip which I want to mask -
    _root.createEmptyMovieClip("myMovie", 1);
    I dynamically add a movieclip into it which I then load a jpg
    into -
    _root.myMovie.createEmptyMovieClip("image1", 0);
    _root.myMovie.image1.createEmptyMovieClip("newFile", 0);
    _root.myMovie.image1.newFile.loadMovie("http:...");
    I dynamically create another movieclip called myNormalText1
    insde the first movie -
    _root.myMovie.createEmptyMovieClip("myNormalText1", 2);
    this holds a dynamically created text box called mytext -
    _root.myMovie.myNormalText1.createTextField("mytext",1,0,0,0,10);
    // the text box formating is dynamic, uses devise fonts,
    arial and is red ect.
    I have then attach a movieclip and use it as a mask to create
    a transition effect over _root.myMovie (which holds the image and
    text)
    _root.attachMovie("mask","mask",5);
    _root.myMovie.setMask("mask");
    the mask movieclip is what is causing me the problem!!!
    method one
    when the mask movieclip contains this -
    a phisically drawn box that fills the whole page
    I use a shape tween to make the box transform into a thin
    rectangle down the left hand side of the screen
    I get a transition effect which makes _root.mymovie disapear
    to the left which is what I want!
    The image and text are masked correctly!
    *** Please note I am aware that dynamic text boxes using
    devise fonts are not displayed correctly under a mask layor when
    they are not embeded, in flash MX. I am able to view my movie in a
    browser window which uses flash player 8 that now allows dynamic
    devise fonts to be masked!
    method two
    I then wanted to create a different transition effect like
    venitian blinds,
    so, in my mask movieclip I created several rectangles that
    fill the page
    again I used a shape tween so they get thinner,
    when I tested my movie the same way in the browser,
    the mask did not work correctly over my text in
    _root.mymovie???
    yet the image in _root.mymovie was masked correctly???
    the only differance between the two methods is the shape
    tween in method one uses one box shape, and the shape tween in
    method two uses several rectangler box shapes.
    I was wondering if anyone knows why the text is correctly
    masked in case one and is not correctly masked in case 2
    I want to do other transition effects using masks in this way
    and I am having no luck :-(
    Thanks for any advice
    Claire Wall

    Hi
    I have been researching this ALOT and found some info that
    basically tells me when I use setMask() over dynamic device fonts,
    the mask uses its bounding box (the rectangular outside edge of the
    whole mask movieclip) as the mask.
    In case 1 the mask moviclips bounding box shrinks when the
    shape tween plays because there is one rectangular box being
    tweened. It appears to mask the text correctly.
    In case 2 I have variouse different shape tweens going on
    inside the mask movieclip so the bounding box stays the same size
    across the whole screen and it wont appear to mask my text
    correctly.
    I think I have answered my own question, but this still
    leaves me stuck! I want to create this venitian blind effect using
    masks over devise fonts.
    I came up with the idea of using for example 4 different
    masks over the one movieclip but again flash doesnt like this and I
    guess I can only use one setMask() per movieclip?
    Can anyone suggest a way I can use multiple dynamically
    created masks on one movieclip or cant it be done?
    Thanks
    Claire x

  • Import document text and subtotal lines

    Hello,
    Is it possible to import text and subtotal lines in documents with DTW?
    I can't find any template to do that.
    Thank you !
    Thibault

    Hi Thibault Romieu
    Unfortunatly you can't. The DI API does not have the facility for this. The DTW uses the DI API so it will not be able to do it. You can try making a item that is a sales and purchase item and change the description as you feel, but make sure no one writes values in the price column.
    Hope this helps

  • Did I lose my texts and photos

    On Friday the 10th I restored my phone to factory settings.  On Saturday I added my contacts back in and I received some important texts and took some important photos.  On Sunday when I attached my phone to my laptop iTunes gave me 2 choices....start as new phone or restore to 10/10? I chose the latter b/c I had just restored as factory (new phone) and didn't want to do that again but what really happened was it restored everything to the way it was before I restored it to factory settings.  So my question is are those important texts and photos that I received and took on Saturday gone forever or is there a way to get them?  I did not sync my phone in between and when I log on to iCloud.com there are no photos but I'm not sure if that's b/c of something I did or b/c of IOS8.

    You shouldn't lose these by changing the Apple ID on your phone.  However, you should be importing your photos and videos to your computer (see http://support.apple.com/kb/HT4083) and backing up your contacts by syncing them with iCloud (Settings>iCloud>Contact>On), with a supported program using iTunes (such as Outlook, Windows Contacts or mac Address Book), or by using an app like My Contacts Backup.
    Also, even after changing the Apple ID on your phone in Settings>Store you will still have to enter the password for his ID when updating apps purchased with this ID.  (Apps and their updates are permanently tied to the Apple ID used to purchase them originally.)

  • Importing text file into search and redact window.

    I am in the search window under the search and redact tool.  I
    am trying to import a file that was originally an excel to populate the
    search multiple words window.  I read that text files can be imported.  I saved the file as a text file but it does not import.  I can import an adobe file but this gives me a list with a bunch of junk.  What am I missing?

    The dialog imports text files.
    Make sure that the file you are importing is a text file and has one word in every line.

  • Importing Text file in to iTunes with song and artist names

    A friend made a compilation CD for me. He exported the artist and song names in to a text file from iTunes. I am having trouble importing the information in to my itunes. The people at the apple store said that it was not possible and that I would have to import his whole iTunes library.
    Thanks.
    imac    

    Hi Dennis,
    In order to import flat files into MDM do the following. This solution is specific to MS Windows:
    I. Set up ODBC for *.txt or *.csv files
    1. Open Data Sources (ODBC) interface:
    Start> Settings> Control Panel--> Administrative Tools -->Data Sources (ODBC).
    2. Select System DSN Tab in Data Sources (ODBC) interface.
    3. Click on [Add]. Select the Microsoft Text Driver. Click Finish.
    4. Write a Data Source Name
    5. Uncheck Use Current Directory to enable the [Select Directory…] button.
    6. Click on [Select directory…] to determine the source directory.
    7. Select the source file.
    8. Click [OK] and return to the ODBC Text Setup screen.
    9. Click [OK].
    10. Return to the ODBC Data Source Administrator dialog and click [OK].
    II. Importing from Flat file
    1. Run MDM Import Manager.
    2. Select ODBC from the Type drop-down field of the Connect To Source dialog.
    3. Enter the DSN name from the Setup ODBC Connection dialog above.
    4. Select the file name with extension (.csv or .txt) in the Tables panel of MDM Import Manager and the file content in the Records panel.
    Hope this solved your problem.Please mark helpful answers
    Regards,
    Santosh.

  • When importing text into a slide and it overflows how do you see what is not on the screen

    When using keynote and importing text that overflows the slide how do you see the text not on the slide so that you can cut and paste to next slide

    Reduce the canvas to a smaller size:

  • I have a acrobat reader, can I import text delimited data format to a PDF Form so that it can auto fill into forms that was created? If not, what about FDF and XML data

    I have a acrobat reader, can I import text delimited data format to a PDF Form so that it can auto fill into forms that was created? If not, what about FDF and XML data

    Yes, you can do all of that via Tools - Forms - More Form Options - Import Data, if you have Acrobat.
    If you only have the free Reader then you can still do it, but it requires a script.

  • Selecting and importing text from Word

    Hi..
    I am interested in importing text from Microsoft Word into labview.
    The text will be identified by a particular 'style'. I have seen examples of reading text marked by 'bookmarks' however this doesn't appear to be sufficient or flexible enough for this application.
    I have tried adapting the 'bookmark' code (using different property/invoke nodes) but can't seem to find something that works in a similar way.
    Just wondering if anyone has already tried something similar.
    Any help is much appreciated.
    Regards,
    Mike
    (Labview 8.2.1 + Report Generation Toolkits)

    Hi Mark,
    The plan was to be able to sift through text in a Word document for blocks of text that match a particular 'style' (determined by us) and import the text into Labview to populate VI descriptions/free labels etc.
    I have adapted some code I have found to be able to cycle through table rows/columns and be able to match text/string patterns, however matching the 'style' property should make this operation a little cleaner or perhaps give us more control over what strings are matched.
    Mike

  • FM 8 and getting Workgroups to import text blocks from server?

    Via the FM 8 Workgroups feature, I am trying to implement importing text blocks on a server (by reference), with auto-update so if the text block on the server changes the Workgroups-linked text block in my local file updates when I open the local file.
    Although I followed the Workgroups setup instructions in FM 8 Help, I get a Network Failure. Unable to access server message when I select the file to import and select Import by reference. (I did try the Import/Copy and Open options but got the same error message.) The Workgroups Import dialog box does access the server, as the .fm files on that server are available for selection. Also, the files on the server have the appropriate permission/access privileges set.
    Any suggestions?
    Thanks.

    Unfortunately the Workgroups part of FM is not very widely used -- nor very well documented, as you've found -- so there aren't many users who can provide any suggestions. Most user comments that I've read about it are pretty much that it's at best a half-baked implementation, pretty much in parallel with the way the HTML export is quite limited an thus there are several other 3rd party options that provide much more thorough functionality.
    Also, with the switchover in forum software on this forum the readership here has been greatly reduced, so I'd say your best bet might be to post on the FrameUsers list, at http://www.frameusers.com because your query will reach a more diverse audience.
    You might also check Scott Prentice's tools list at http://www.leximation.com to see if there are any 3rd party workgroup-specific tools available.
    Personally, though, I'd also check out using FrameScript instead of Workgroups, as I think it would offer much more flexibility and scope. The Framescript group can be found at
    http://groups.yahoo.com/group/framescript-users/

  • I imported the info from my phone to my wife's phone by mistake.                          She lost her contacts, texts, and photos. Is there any way to get that stuff back?  Could it be stored on our Mac somewhere?

    I imported info from my phone to my wife's phone by mistake.  She lost her photos, texts, and contacts.  Basically my phone is her phone now.  Is there any way I can get her stuff back on her phone?  We also have a Mac computer.  Could that info be saved on it?

    If there's no backup, then there is nothing to restore.
    In iTunes, under Edit > Preferences > Backups it should list the name that was assigned to the device.

  • Import Html text and convert to InDesign tags

    Hello everybody,
    The script receives a JSON with text (html markup: headers <h1>, <b></b>, new line characters, ...).
    I have to save the converted text into a temp text file and then do .place() into a text frame. That's the only way it can recognise new tags.
    //text and contentArea are defined previously.
    var convertedText = convertTags(text);
    var convertedTextFile = new File (FILE_PATH + "/Temp/convertedTextFile.txt");
    convertedTextFile.open('wr');
    convertedTextFile.write(convertedText);
    convertedTextFile.close();
    contentArea.place(convertedTextFile);
    function convertTags(htmlTaggedText){              
         var inDesignTaggedText = "<ASCII-MAC>\n" + htmlTaggedText.replace("<h1>", "<ParaStyle:Heading 1>").replace("</h1>", "");
         return inDesignTaggedText;
    General question is, whether there is any more elegant solution to this?
    Thanks in advance

    Hello everybody,
    The script receives a JSON with text (html markup: headers <h1>, <b></b>, new line characters, ...).
    I have to save the converted text into a temp text file and then do .place() into a text frame. That's the only way it can recognise new tags.
    //text and contentArea are defined previously.
    var convertedText = convertTags(text);
    var convertedTextFile = new File (FILE_PATH + "/Temp/convertedTextFile.txt");
    convertedTextFile.open('wr');
    convertedTextFile.write(convertedText);
    convertedTextFile.close();
    contentArea.place(convertedTextFile);
    function convertTags(htmlTaggedText){              
         var inDesignTaggedText = "<ASCII-MAC>\n" + htmlTaggedText.replace("<h1>", "<ParaStyle:Heading 1>").replace("</h1>", "");
         return inDesignTaggedText;
    General question is, whether there is any more elegant solution to this?
    Thanks in advance

  • How does Captivate 4 function once imported into and now within Flash 4 (AS3 environment)?

    I have a specific need to try to get a handle on a certain section of the timeline to add a textbox with certain text in it.  if (label.name == "Slide_3") {then... display the textbox and the text } does not work.  I am trying to use the addChild method to display the textbox and its text in the displayList during the Slide_3 section of the timeline.  This may not be the way to go as I can't seem to get it to work...
    My Goal: 
    Using AS3, working from within Frame1 coding area (Timeline scripting area), have some text appear in a textbox but only while Slide_3 is playing.
    I already have written the code that pulls text in from an XML document, stuffs it into a dynamically created textboxand, and  am trying to take some of the text and have that text only appear during a certain part of the timeline. 
    Assumptions:
    The standard/native way that a Captivate.cp file is imported into Flash CS4 results in a timeline that has labels (Slide_1, Slide_2, Slide_3, etc.)
    I don't want to manually create a textbox and manually put the text into it on the Actions frame of the Slide_3 label, but instead would like to put the text into the text property of the textField programatically from Frame1 (Action frame in Frame1 + F9)
    I have tried using the addChild method but that adds the textbox to the WHOLE timeline. (Creating a textbox is not a problem, but instead getting some text into the textbox only during Slide_3 is the issue)
    The Problem:
    How can I get the text to only appear during the playing of the Slide_3 label frames? (But NOT display during the rest of the timeline)
    When I run code on the Action frame of Slide_3 that outputs the displayList, I get the following:
    root1 [object MainTimeline]
         info_txt [object TextField]
    // this is a textfield that i created
          instance3 [object TextField]
          Slide_3 [object Slide_3_7]
               instance15 [object Shape]
               instance16 [object MovieClip]
                    instance17 [object Shape]
               instance18 [object clickbox4_9]
                    click_zone [object SimpleButton]
                    instance19 [object Shape]
               instance20 [object Shape]
               instance21 [object Shape]
               instance22 [object Shape]
          SlideClip3 [object MovieClip]
    Yet, when I trace the keyword *this* (from within the Action frame in Slide_3) Flash outputs [Global Object].
    I am wondering how I can display the specific text for Slide_3 only during the playback of Slide_3. I'm guessing that, if I could only find what the Global Object is, I could addChild to its display list property.
    I also tried using some of the Static variables to no avail (that were automatically created when the import occurred) such as:
    var ref=this;
    var nCurSlideIndex:Number;
    var currentSlide_mc:MovieClip;
    var quizPlaybackController;
    var scrubberChanged:Boolean;
    var slideNewFrame:Number;
    var mcLoader:Loader = new Loader();
    var loading_sub_mc:MovieClip;
    var m_preloaderLoaded:Boolean = false;
    Any guidance, suggestions, ideas, that you have would be very welcomed! 
    Some Things that I've Tried:
    Incidentally, when I write code in the main timeline (Frame1 and press F9) I get some of the following behavior:
    //this.Slide_1.addChild(info_txt); //displays the textbox with text but only during "slide 1"
    //this.addChild(info_txt); //displays textbox and text during the whole timeline
    //SlideClip1.addChild(info_txt); //displays textbox and text only during "slide 1"
    //SlideClip3.addChild(info_txt); //nothing displays --TypeError: Error #1009: Cannot access a property or method of a null object reference.
    //ref.addChild(info_txt); //displays textbox and text all the time
    //addChild(info_txt); //displays textbox and text all the time
    //ref["Slide_3"].addChild //no luck here either

    I don't have any insights into this particular problem. But we are having strange things happen with Captivate and imported AS3 animations. never had problems witht he AS2 animations. so, we are having to recreate and everything and republish as as2.

Maybe you are looking for

  • Create External Window in Webdynpro for Abap

    I am creating an external window using method CREATE_EXTERNAL_WINDOW.  The componentcontroller context and the assistance class attributes are not available in the Handledefault method of the external window.    Is there a way to pass data to the ext

  • E63 + Nokia Messaging + IMAP = Not Syncing Sent

    **I originally posted this in the E Series forum, and decided to repost it here as it was more appropriate**  I recently downloaded Nokia Email Messaging, and I am loving the push email.  However, I realised today that none of the emails I am sending

  • V Cast Manager

    Has anyone used the V Cast Manager?  I'm not sure why or how this keeps popping up when i plug my computer into my PC, but it seems to feel a little like maybe the ITUNES account for IPHONE?  Has anyone used it, what are your thoughts? Merry Christma

  • Adobe Revel 2.3.2 installation issue

    Dear Revel users: We are aware of the installation issues people are experiencing with the latest iOS version release, and we are very sorry for the inconvenience it has caused. We do rigorous testing prior to all releases, but unfortunately an unexp

  • Cut and paste with Fascinate

    Anybody know how to cut and paste text with Fascinate?