Scrolling dynamic text in a "movie credits"style

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Scrolling dynamic text in a "movie credits"style

    I'm creating a kiosk that will be displayed on 30 inch LCD displays in our
    corporate headquarters. A list of names will be pulled from a database and
    scrolled vertically across the screen, looping ad infinitum. Here are my
    problems

    1) The length of the list will vary from day to day. There may be thousands
    of names, or there may be only a dozen names. How can I make the height of the
    text field reflect these variations

    2) The list needs to scroll until the last name goes past the top of the
    screen, and then start over again from the bottom. How can I program for this
    when the height of the text field is unknown? The rate of speed also needs to
    be constant, regardless of the length of the list

    I appreciate any help that can be offered

    SuperPope Guest

  2. Similar Questions and Discussions

    1. Nested Style to exact "Word" or "Small Phrase"
      Ok, this question is for all you nested style experts - I use and love nested styles, but there's one trick I haven't figured out. As background, I...
    2. dynamic text field & "paging" content
      I have a dynamic text field that gets populated from the backend with free form text (can be any text really). I want to be able to populate the...
    3. New Text Frames Default to "Endnote Reference" Char Style!
      Can't understand why everytime I drag the text tool to create a text frame and then start to type, that it's so small you can hardly see it. Then I...
    4. help: Duplicate "Normal Text" Style
      Dear Judy and Curt: I ran into the same problem with the duplicated normal text error recently, upon investigation found this thread in the...
    5. Dynamic text box won't scroll when "render text as HTML" is clicked
      I'm using FLASH MX and I'm trying to create a dynamic text box that loads an external text file, contains clickable links and scrolls. I've...
  3. #2

    Default Re: Scrolling dynamic text in a "moviecredits" s

    1) textfield.autoSize = "center"

    2) Loop over 2 or more frames, decrementing the _y property of the textfield
    on each loop. (move it up
    When the _y property == _height * -1 (when it's off the screen), reset the _y
    property to it's initial state

    Karim N Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139