Scrolling text font question

Is it possible to use more than one font size in one clip of scrolling text?
I would like some things a bit larger than others, but I think If I make multiple clips, I will have a hard time syncing them up.
Thanks in advance.
john

If you mean Title 3D, no, it does not do centering like Scrolling Text. Title 3D will only center 1 column nicely, not 2 columns with even spacing between the columns like you often see in feature films. You have to use Scrolling Text to do that, and it works like a charm, but you don't have the control over fonts, etc. like you do in Title 3D. <Sigh>, I wish Title 3D would do it ...

Similar Messages

  • Scrolling Text Box question

    I'm changing a site for a friend. She wants to add a scrolling text box with a bio of herself on the grid we're already using on her page. The problems I'm having are it's difficult to resize the box once on the grid (you can't) and I keep missing anything that looks like the ability to scroll up and down on the text box. I'm sure I'm missing something which is why I'm here. :-)
    Thanks in advance! :-)

    check out the overflow:scroll command in the css - I'm not sure how this works with grids, however - but it could be a starting point....
    hope this helps
    steve

  • Specifying text font in a scroll pane

    Below is a fragment of code that attempts to display text in a scroll pane. Basically this works OK, except for the following:
    1. Changing the font doesn't seem to make any difference. I tried "Arial", as shown, and "Curier", the display looks identical in both cases.
    2. Multiple blank spaces are replaced by a single blank space. So that "Baa baa" is displayed as "Baa baa".
    I would like to be able to display messages with many lines of text in a scroll pane preserving the format if possible, which relies on the blank spaces. I hope you can suggest how to do this better.
    Thans for you help.
    Miguel
        JLabel label = new JLabel(text);
        Font font = new Font("Arial",Font.PLAIN,12);
        label.setFont(font);
        JScrollPane scrollPane = new JScrollPane(label);

    try using a textArea instead of a label and include tabs for your multiple spaces.
    import java.awt.Font;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class FontTest extends JFrame {
         public FontTest() {
              super("Font Testing");
              String text = "This is \t a \t test";
              JTextArea text3 = new JTextArea();
              text3.setText(text);
              Font font = new Font("Courier",Font.PLAIN,12);   
              text3.setFont(font);   
              JScrollPane scrollPane = new JScrollPane(text3);
              getContentPane().add(scrollPane);
              setSize(400, 200);
              setVisible(true);
         public static void main(String[] args) {
              FontTest app = new FontTest();
    }

  • Quick question about scrolling text....

    Doing quick credits (scrolling). Trying to figure out how to get the (last line of the) text to stop in the middle of the screen, so I can then do a fade....
    I'm sure it's easy, and will keep plugging away here, but if anyone can quickly fire off a note, I'd be grateful...thanks!
    (tried to create a Freeze Frame on this, but it appears it does not recognize Scrolling Text as a clip it can extract from - eg. the freeze frame is just blank.)
    (also can't seem to do a ramp up/down or a Time Remap, etc.)

    I've found the easiest way to do this is to create the text in Photoshop. Start a new PS document ... say 720 x 3000 and create or paste your text. If the document is too long, you can crop off the unneeded part when you're finished with the text.
    Import the PS file into FCP and use the Centering controls to animate it as needed. Use the smooth or Ease In/Ease Out command on the ending keyframe so the stop isn't too abrupt.
    -DH

  • Scrolling Text horizontally (Ticker)

    Hello, I would like to develop a scrolling ticker which scrolls text horizontally from right to left. I also want it to be scrollable (i.e. while the text is scrolling I would like to be able to scroll to the beginning or end of the scrolling text using the horizontal scrollbar, to view the history of trades etc.)
    The scrolling text could be up to 6 lines each like this
    Coffee.......Coffee...........Sugar.........<<<<More Scrolling<<<<
    JAN04........JAN04............SEP04.........<<<<More Scrolling<<<<
    AA...........RFQ..............AA............<<<<More Scrolling<<<<
    30...........50...............100...........<<<<More Scrolling<<<<
    444..........222..............90............<<<<More Scrolling<<<<
    10:00:55.....10:05:00.........10:10:03......<<<<More Scrolling<<<<
    ----------->>>ScrollBar Here<<<-----------------------------------My question is does anyone know what would be the best way to do this? Should I use java.awt.Canvas or is there a swing Class that I can use.
    Thanks, any help would be much appreciated

    Thanks very much dchsw! This will definetley point me in the right direction.
    Here's your 5 duke dollars!
    Phil
    A JTable with a a custom model would probably be best,
    but take a look at this using a JScrollPane over a
    JPanel that JLabels get added to every time a new
    "tick" comes in.
    Obviously there are many problems with using this in
    the real world, but it may give you some ideas.
    Enjoy!
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    public class Pharron1
         static class ApplicationPanel
              extends JPanel
              private ScrollingTicker mTicker;
              public ApplicationPanel()
                   mTicker= new ScrollingTicker();
                   setLayout(new BorderLayout());
                   add(mTicker, BorderLayout.CENTER);
    final Runnable task= new Runnable() { public void
    id run() { append(); } };
                   new Thread() {
                        public void run() {
                             while (true) {
    try {
    try {
    sleep((long)((Math.max(0.5,Math.random()*2.0))*1000.0))
                                  catch (InterruptedException e) {}
                                  SwingUtilities.invokeLater(task);
                   }.start();
                   append();
                   append();
                   append();
                   append();
                   append();
    private SimpleDateFormat mFormat= new
    w SimpleDateFormat("HH:mm:ss");
              public void append()
                   mTicker.append(
                        "<html>Coffee<br>" +
                        "<font color=\"0000ff\">Jan04</font><br>" +
                        "<font color=\"ff0000\">RFQ</font><br>" +
                        (int)(Math.random()*50.0) +"<br>222<br>" +
                        "<font color=\"ffff99\">" +
                        mFormat.format(new Date()) +
                        "</font></html>");
         static class ScrollingTicker
              extends JPanel
              private JPanel mPanel;
              private JScrollPane mPane;
              public ScrollingTicker()
                   mPanel= new JPanel();
                   mPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
                   mPane= new JScrollPane(mPanel);
                   mPane.setVerticalScrollBarPolicy(
                        JScrollPane.VERTICAL_SCROLLBAR_NEVER);
                   mPane.setHorizontalScrollBarPolicy(
                        JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
                   setLayout(new BorderLayout());
                   add(mPane);
              public void append(String str)
                   mPanel.add(new JLabel(str));
                   mPanel.getLayout().layoutContainer(mPanel);
                   mPane.getViewport().setViewSize(mPanel.getPreferredS
    ze());
                   mPane.getHorizontalScrollBar().setValue(
                        mPane.getHorizontalScrollBar().getMaximum());
         public static void main(String[] argv)
              JFrame frame= new JFrame("Scrolling Ticker");
              frame.getContentPane().add(new ApplicationPanel());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setResizable(false);
              frame.setVisible(true);

  • Scrolling text is jumpy/pulsing when compressed

    I'm making end credits using the scroll up text animation behavior in Motion 2.1.2. Whenever I compress it for DVD Studio Pro and insert it the text looks terrible. It is pulsing in and out and is hardly readable. I found a few other people who have had this problem, but no solutions that have helped.
    I have done credits using the scrolling text in Final Cut without much problem, but for this project I need motion in order to use text of different sizes.
    Here are my specs:
    Project Properties - NTSC DV; 720x480; Pixel Aspect Ratio: NTSC D1/DV - 0.90; Field Order: Lower First (Even); Frame Rate: 29.97; Background color is black (0%)
    Render Settings - Motion Blur Samples: 8; Shutter Angle: 360; Output Antialiasing Method: Best
    I used Export using Compressor: DVD Best Quality 90 minutes 4:3; I tried using the Color+Alpha and just Color in the Output options. Premultiply alpha and Use field render are both checked. Use motion blur is not checked.
    Most of the text is Geneva Regular 14 pt font. I have tried completely white as well as setting the RGB sliders all at 235 with no difference. I also tried using a black outline with no difference. The scroll up behavior has a rate of 52.
    Please help! It took me forever to put these credits together and I don't want to start from scratch with another program. Making the text bigger helps a little bit but I would really like to keep it the same size for timing and format sake. However, I can't keep it like this because it looks terrible both on an Apple Cinema display and on a tv after burned to DVD.
    Thanks!

    My first guess would be the font itself. Geneva is a pretty thin font and it's not likely to look good interlaced and on a TV. Can you try a thicker font?
    I'd also turn off Field Rendering. It looked much worse with it on than off. Keep Frame Blending though.
    Andy

  • How to add a scrolling text to display in a web part?

    Hi,
    I have 3 files in a doc library that is been referenced by a web part xml viewer in a page. I am referring only  the xml file.
    WarningMessage.xml
    <script type="text/javascript" src="http://icare/sites/IT/tst/XmlWebParts/WarningMessage/WarningMessage.js"></script>
    WarningMessage.js
    <script type="text/javascript">
    <
    //set the marquee parameters
    function init() { rtl_marquee.start(); }
    var rtl_marquee_Text = 'JavaScript scrolling text';
    var rtl_marquee_Direction = 'left';
    var rtl_marquee_Contents='<span style="font-family:Comic Sans MS;font-size:12pt;white-space:nowrap;">' + rtl_marquee_Text + '</span>';
    rtl_marquee = new xbMarquee('rtl_marquee', '19px', '90%', 6, 100, rtl_marquee_Direction, 'scroll', rtl_marquee_Contents);
    window.setTimeout( init, 200);
    </script>
    and
    xbMarquee.js
    document.writeln('<style type="text/css">');
    document.writeln(' div.marqueecenter1 { text-align: center; }');
    document.writeln(' div.marqueecenter2 { margin- margin-right: auto; }');
    document.writeln(' div.marqueeleft1 { text-align: left; }');
    document.writeln(' div.marqueeleft2 { margin- margin-right: auto; }');
    document.writeln(' div.marqueeright1 { text-align: right; }');
    document.writeln(' div.marqueeright2 { margin- margin-right: 0; }');
    document.writeln('</style>');
    function xbMarquee(id, height, width, scrollAmount, scrollDelay, direction, behavior, html)
      this.id            = id;
      this.scrollAmount  = scrollAmount ? scrollAmount : 6;
      this.scrollDelay   = scrollDelay ? scrollDelay : 85;
      this.direction     = direction ? direction.toLowerCase() : 'left';  
      this.behavior      = behavior ? behavior.toLowerCase() : 'scroll';  
    //  this.name          = 'xbMarquee_' + (++xbMarquee._name);
      this.name          = id;
      this.runId         = null;
      this.html          = html;
      this.isHorizontal = ('up,down'.indexOf(this.direction) == -1);
      if (typeof(height) == 'number')
        this.height = height;
        this.heightUnit = 'px';
      else if (typeof(height) == 'string')
        this.height = parseInt('0' + height, 10);
        this.heightUnit = height.toLowerCase().replace(/^[0-9]+/, '');
      else
        this.height = 100;
        this.heightUnit = 'px';
      if (typeof(width) == 'number')
        this.width = width;
        this.widthUnit = 'px';
      else if (typeof(width) == 'string')
        this.width = parseInt('0' + width, 10);
        this.widthUnit = width.toLowerCase().replace(/^[0-9]+/, '');
      else
        this.width = 100;
        this.widthUnit = 'px';
      // xbMarquee UI events
      this.onmouseover   = null;
      this.onmouseout    = null;
      this.onclick       = null;
      // xbMarquee state events
      this.onstart       = null;
      this.onbounce      = null;
      var markup = '';
      if (document.layers)
        markup = '<ilayer id="' + this.id + 'container" name="' + this.id + 'container" ' +
                 'height="' + height + '" ' +
                 'width="' + width + '"  ' +
                 'clip="' + width + ', ' + height + '" ' +
                 '>' + 
                 '<\/ilayer>';            
      else if (document.body && typeof(document.body.innerHTML) != 'string')
        markup = '<div id="' + this.id + 'container" name="' + this.id + 'container" ' +
                 'style=" ' + 
                 'height: ' + this.height + this.heightUnit + '; ' +
                 'width: ' + this.width + this.widthUnit + '; ' +
                 'clip: rect(0px, ' + this.width + this.widthUnit + ', ' + this.height + this.heightUnit + ', 0px); ' +
                 '">' + 
                 '<div id="' + this.id + '" style="' + 
                 (this.isHorizontal ? 'width:0px;' : '') + // if we scroll horizontally, make the text container as small as possible
                 '">' +
                 (this.isHorizontal ? '<nobr>' : '') +
                 this.html +
                 (this.isHorizontal ? '<\/nobr>' : '') +
                 '<\/div>' +
                 '<\/div>';             
      else 
        markup = '<div id="' + this.id + 'container" name="' + 
                 this.id + 'container" ' +
                 'style=" overflowY: visible; ' + 
                 'height: ' + this.height + this.heightUnit + '; ' +
                 'width: ' + this.width + this.widthUnit + '; ' +
                 'clip: rect(0px, ' + this.width + this.widthUnit + ', ' + this.height + this.heightUnit + ', 0px); ' +
                '">' + 
                 '<\/div>';             
      document.write(markup);  
      window[this.name] = this;
    // Class Properties/Methods
    xbMarquee._name = -1;
    xbMarquee._getInnerSize = function(elm, propName)
      var val = 0;
      if (document.layers)
        // navigator 4
        val = elm.document[propName];    
      else if (elm.style && typeof(elm.style[propName]) == 'number')
        // opera
        // bug in Opera 6 width/offsetWidth. Use clientWidth
        if (propName == 'width' && typeof(elm.clientWidth) == 'number')
          val = elm.clientWidth;
        else
          val =  elm.style[propName];
      else
        //mozilla and IE
        switch (propName)
        case 'height':
           if (typeof(elm.offsetHeight) == 'number')
             val =  elm.offsetHeight;
           break;
        case 'width':
           if (typeof(elm.offsetWidth) == 'number')
             val = elm.offsetWidth;                  
           break;
      return val;
    xbMarquee.getElm = function(id)
      var elm = null;
      if (document.getElementById)
        elm = document.getElementById(id);
      else
        elm = document.all[id];
      return elm;
    xbMarquee.dispatchUIEvent = function (event, marqueeName, eventName)
      var marquee = window[marqueeName];
      var eventAttr = 'on' + eventName;
      if (!marquee)
        return false;
      if (!event && window.event)
        event = window.event;
      switch (eventName)
      case 'mouseover':
      case 'mouseout':
      case 'click':
        if (marquee[eventAttr])
          return marquee['on' + eventName](event);
      return false;
    xbMarquee.createDispatchEventAttr = function (marqueeName, eventName)
      return 'on' + eventName + '="xbMarquee.dispatchUIEvent(event, \'' + marqueeName + '\', \'' + eventName + '\')" ';
    // Instance properties/methods
    xbMarquee.prototype.start = function ()
      var markup = '';
      this.stop();
      if (!this.dirsign)
        if (!document.layers)
          this.containerDiv = xbMarquee.getElm(this.id + 'container')
          if (typeof(this.containerDiv.innerHTML) != 'string')
            return;
          // adjust the container size before inner div is filled in
          // so IE will not hork the size of percentage units 
          var parentNode    = null;
          if (this.containerDiv.parentNode)
            parentNode = this.containerDiv.parentNode;
          else if (this.containerDiv.parentElement)
            parentNode = this.containerDiv.parentElement;
          if (parentNode && 
              typeof(parentNode.offsetHeight) == 'number' && 
              typeof(parentNode.offsetWidth) == 'number')
            if (this.heightUnit == '%')
              this.containerDiv.style.height = 
              parentNode.offsetHeight * (this.height/100) + 'px';
            if (this.widthUnit == '%')
              this.containerDiv.style.width = 
              parentNode.offsetWidth * (this.width/100) + 'px';
          markup += '<div id="' + this.id + '" name="' + this.id + '" ' +
            'style=" ' +
            //(this.isHorizontal ? 'width:0px;' : '') + // if we scroll horizontally, make the text container as small as possible
            '" ' +
            xbMarquee.createDispatchEventAttr(this.name, 'mouseover') +
            xbMarquee.createDispatchEventAttr(this.name, 'mouseout') +
            xbMarquee.createDispatchEventAttr(this.name, 'click') +
            '>' +
            (this.isHorizontal ? '<nobr>' : '') +
            this.html +
            (this.isHorizontal ? '<\/nobr>' : '') +
            '<\/div>';
          this.containerDiv.innerHTML = markup;
          this.div                    = xbMarquee.getElm(this.id);
          this.styleObj     = this.div.style;      
        else /* if (document.layers) */
          this.containerDiv = document.layers[this.id + 'container'];
          markup = 
            '<layer id="' + this.id + '" name="' + this.id + '" top="0" left="0" ' +
            xbMarquee.createDispatchEventAttr(this.name, 'mouseover') +
            xbMarquee.createDispatchEventAttr(this.name, 'mouseout') +
            xbMarquee.createDispatchEventAttr(this.name, 'click') +
            '>' +
            (this.isHorizontal ? '<nobr>' : '') + 
            this.html +
            (this.isHorizontal ? '<\/nobr>' : '') +
            '<\/layer>';
          this.containerDiv.document.write(markup);
          this.containerDiv.document.close();
          this.div          = this.containerDiv.document.layers[this.id];
          this.styleObj     = this.div;
        if (this.isHorizontal && this.height < xbMarquee._getInnerSize(this.div, 'height') )
          this.height = xbMarquee._getInnerSize(this.div, 'height')
          this.containerDiv.style.height = this.height + this.heightUnit;
          this.containerDiv.style.clip = 'rect(0px, ' + this.width + this.widthUnit + ', ' + this.height + this.heightUnit + ', 0px)';
        // Start must not run until the page load event has fired
        // due to Internet Explorer not setting the height and width of 
        // the dynamically written content until then
        switch (this.direction)
        case 'down':
          this.dirsign = 1;
          this.startAt = -xbMarquee._getInnerSize(this.div, 'height');
          this._setTop(this.startAt);
          if (this.heightUnit == '%')
            this.stopAt = this.height * xbMarquee._getInnerSize(this.containerDiv, 'height') / 100;
          else
            this.stopAt  = this.height;
          break;
        case 'up':
          this.dirsign = -1;
          if (this.heightUnit == '%')
            this.startAt = this.height * xbMarquee._getInnerSize(this.containerDiv, 'height') / 100;
          else     
            this.startAt = this.height;
          this._setTop(this.startAt);
          this.stopAt  = -xbMarquee._getInnerSize(this.div, 'height');      
          break;
        case 'right':
          this.dirsign = 1;
          this.startAt = -xbMarquee._getInnerSize(this.div, 'width');
          this._setLeft(this.startAt);
          if (this.widthUnit == '%')
            this.stopAt = this.width * xbMarquee._getInnerSize(this.containerDiv, 'width') / 100;
          else    
            this.stopAt  = this.width;
          break;
        case 'left':
        default:
          this.dirsign = -1;
    if (this.widthUnit == '%')
    this.startAt = this.width * xbMarquee._getInnerSize(this.containerDiv, 'width') / 100;
    else  
    this.startAt = this.width        
    this._setLeft(this.startAt);
    // this.stopAt  = -xbMarquee._getInnerSize(this.div,'width')*2;
    // this method does not work very well with FireFox.  offsetWidth property used in this function returns the absolute width of the div container
    // instead of the new offsetWidth when innerHTML is added or when the div becomes wider. To overcome this a new span element is added to 
    // the document body to measure the new offsetwidth and then it is removed.
    var temp_span = document.createElement('span');     
    temp_span.id = 'span_' + this.div.id;
    temp_span.innerHTML = this.html;
    document.body.appendChild(temp_span);                
    this.stopAt = - temp_span.firstChild.firstChild.offsetWidth;
    document.body.removeChild(temp_span);            
          break;
        this.newPosition          = this.startAt;
        this.styleObj.visibility = 'visible'; 
      this.newPosition += this.dirsign * this.scrollAmount;
      if ( (this.dirsign == 1  && this.newPosition > this.stopAt) ||
           (this.dirsign == -1 && this.newPosition < this.stopAt) )
        if (this.behavior == 'alternate')
          if (this.onbounce)
            // fire bounce when alternate changes directions
            this.onbounce();
          this.dirsign = -this.dirsign;
          var temp     = this.stopAt;
          this.stopAt  = this.startAt;
          this.startAt = temp;
        else
          // fire start when position is a start
          if (this.onstart)
            this.onstart();
          this.newPosition = this.startAt;
      switch(this.direction)
        case 'up': 
        case 'down':
          this._setTop(this.newPosition);
          break;
        case 'left': 
        case 'right':
        default:
          this._setLeft(this.newPosition);
          break;
      this.runId = setTimeout(this.name + '.start()', this.scrollDelay);
    xbMarquee.prototype.stop = function ()
      if (this.runId)
        clearTimeout(this.runId);
      this.runId = null;
    xbMarquee.prototype.setInnerHTML = function (html)
      if (typeof(this.div.innerHTML) != 'string')
        return;
      var running = false;
      if (this.runId)
        running = true;
        this.stop();
      this.html = html;
      this.dirsign = null;
      if (running)
        this.start();
    // fixes standards mode in gecko
    // since units are required
    if (document.layers)
      xbMarquee.prototype._setLeft = function (left)
        this.styleObj.left = left;    
      xbMarquee.prototype._setTop = function (top)
        this.styleObj.top = top;    
    else
      xbMarquee.prototype._setLeft = function (left)
        this.styleObj.left = left + 'px';    
      xbMarquee.prototype._setTop = function (top)
        this.styleObj.top = top + 'px';    
    I have nothing displaying in the web-part. How can I make this to work?

    This is how i was able to do it. Edit html source.
    <div align="center"><marquee id='scroll_news4' bgcolor=#ff9966 "><font color="#000000" size="+1" ><strong>Outlook is down! IT is working on it! </strong></font></marquee></div>
    <input type='Button' value='Stop' id ='b1' onClick='button_click()';>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function button_click()
    if(document.getElementById('b1').value=="Start"){
    document.getElementById('b1').value="Stop";
    document.getElementById('scroll_news4').start();
    }else{
    document.getElementById('b1').value="Start";
    document.getElementById('scroll_news4').stop();
    // End -->
    </script>

  • How to add a scrolling text in portrait with iMovie

    how to add a scrolling text in portrait with iMovie

    This is how i was able to do it. Edit html source.
    <div align="center"><marquee id='scroll_news4' bgcolor=#ff9966 "><font color="#000000" size="+1" ><strong>Outlook is down! IT is working on it! </strong></font></marquee></div>
    <input type='Button' value='Stop' id ='b1' onClick='button_click()';>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function button_click()
    if(document.getElementById('b1').value=="Start"){
    document.getElementById('b1').value="Stop";
    document.getElementById('scroll_news4').start();
    }else{
    document.getElementById('b1').value="Start";
    document.getElementById('scroll_news4').stop();
    // End -->
    </script>

  • Scrolling Text box - won't work in IE

    Hey everyone. I'll admit right off the bat that I'm very new
    to web design, so I'm sure I've been making some mistakes. I'm much
    more of a designer than a coder, but I'm doing the best I can.
    I'm wanting to have a scrolling text box embedded on some of
    my pages, and have figured out how to do it, thanks largely to
    these forums. I've made a CSS tag that has gotten it working
    correctly - sort of.
    You can see the page in question at
    http://www.kylehamrick.com/testing.html
    It appears to be working correctly in Firefox. However, in
    IE, the text just keeps flowing down onto the page, outside of the
    allotted area. What am I doing wrong?
    Also, is there a way to make this look correct in
    Dreamweaver? Once I add text that exceeds the table height, it
    breaks up my page, though it still looks fine in the browser. Is
    there something I can do to correct this?
    Thanks in advance for any assistance with this. I sincerely
    appreciate it.
    Any other advice in regards to the page is welcome! Please
    keep in mind that I'm very new to this, and it's still under
    construction, so don't be TOO harsh... =)
    Also, is this all I have to do? It seems that you all have a
    way to examine my code and such just by having me post the url, is
    that right? Is there anything else you need from me?

    Anyone? Sorry, had to give this a bump. Seems it got buried
    VERY quickly.
    Again, I'd appreciate any guidance you can provide!

  • CS6 Mouse Wheel Scrolling for Fonts in Character Panel

    in Illustrator CS6 I can no longer use my mouse wheel to scroll the list of fonts [which appear when you click the down arrow next to the font family] in the Character control panel. I could do this in CS5.
    Anyone know how to fix this? I think it dos not work in Photoshop CS6 either.

    Thanks Ivan for the quick response.
    Yes, if I simply hover my mouse over the Font drop down it allows me to scroll through fonts [but only shows the single, selected font]. This is quite helpful, if I have text selected, scrolling through fonts quickly changes my selected text to the scrolled to font, allowing me to preview fonts fast.
    While I do love and use the feature, I still often like to pull up the "full drop down list" of fonts like I've previously mentioned and use the mouse wheel to scroll through the list quickly. This enables me to see many fonts at once, instead of just a single one at a time. But again, this is where the mouse scroll wheel does not seem to scroll the list. I was able to scroll though the list in older versions of Illustrator CS.
    I've attached screenshots to show the specific "list" i'm referring to, just so you fully understand what i'm talking about (which I think you already do).

  • Scroll through fonts (using arrow keys) in CS3?

    I've searched a couple dozen blogs and this forum, but I cannot seem to find a way to scroll through fonts using the arrow keys in CS3.  The tips I've been able to find are for older versions of PS and don't seem to work with CS3.  Am I missing something?  Am I crazy?
    Many thanks!
    - An addled designer

    Okie Dokie.
    So, on the left, I have the type tool selected.
    In the middle is the drop down font family panel.
    On the right, you'll see that I have the text layer selected.
    Oh, and you can see in the top that my text is not in editing mode (hence the lack of the green check/red "no" symbol).
    Am I doing this correctly?
    Oh and if I trash my preferences will I lose keyboard short cuts I've set up?
    THanks again!

  • Creating scrolling text on an iWeb page

    I came across Old Toad's Test site and was suitably impressed by the enhancements detailed on his home page. (I did not post the link as I did not want to breach any confidentiality).
    Q) How do I get scrolling text on an iweb page? By way of an experiment, I have copied the html code from old toads site into a html widget and then selected apply however the text simply displays, it does not scroll.
    I have no html experience apart from cutting and pasting code into the widget box and then selecting apply. What am I doing wrong, please can anyone help? Thanks

    The scrolling box is on this demo page. As I mentioned it will work with a text, pdf and Word document. I've not been able to get an rtf document to display nor a Pages document. But you can create pdf files from each of those applications and use the pdf version.
    If you can live with the default text that comes with using a .txt file it will not have toolbar at the top that a Word or PDF document will and be a lot cleaner. There may be a way to set the font to be displayed in the page but it can't be done in the text document itself. I've not figured out how do to that as yet.
    OT
    Message was edited by: Old Toad

  • Text / Font Preview

    This may have been mentioned before, but I wanted to get it out of my head before I forgot it.
    Dream: A font preview system within illustrator.
    1. Type in your sample text within a dialog and preview typed characters on all the fonts of your system.
    2. The ability to save your fonts within illustrator in sets
    These two features would save so much time scrolling thru font selections.
    Robert Good.

    I don't recall a setting that would cause that behavior, but does anyone really know all the many, many settings?
    What operating system are you running?
    What has changed on your computer since it last worked?
    Does the text have any layer style effects?
    This could be a situation where Photoshop CS3 is falling out of date with functionality of modern video drivers, though more often it is something that's been installed or configured.
    Some things to try:
    Try resetting the Character tool by making the Character panel visible then using the menu at the upper-right:
    Try resetting your Photoshop overall preferences to defaults (Ctrl - Shift - Alt immediately after starting Photoshop from its icon or menu item) just to be sure it's not a heretofore undiscovered setting or an invalid combination of settings.
    Make sure you have the latest video drivers, or in some case a driver that's been rolled back to an older version (might be more applicable in this situation).  Experimentation may be in order.
    -Noel

  • Set text font string indicator

    Hi!
    Is there a way to change the font in a string indicator?
    and is there a font in LabVIEW that has equal spacing for every caracter?
    Solved!
    Go to Solution.

    That means you want to change the font programmatically.
    Well... here is a twist..  Typically, this is done using the Caption for the indicator, because it also allow you to be able to change the text (string).
    The shortcut way to do this is to:
    1. within the block diagram, right-click the indicator and select create property node
    2. use the selector to choose the Caption > text > font  (It could be Caption.text.font)
    Now I do not remember if it is a numeric value that is put in for the font... 
    Change to Write (right-click on property node and select "Change All to Write"  (simply because my memory is not that good  + no LabVIEW with me)
    Then right click on the bottom box, where it displays the Caption.text.font and select create constant.  It should then allow you to select the font.  Otherwise, you can click on the question mark ar the upper right corner (Context Help) which will guide you.  Context Help can also be found under the Help Menu.
    Hope this helps.

  • Is it possible to have a scrolling text field in a quiz slide?

    I'm trying to build a quiz, and there is too much text that I need to display for the question. Is there any way to implement a scroll-able text field in a quiz slide?

    I suppose you don't want to use the default question slides but are creating custom question slides? Which version do you use? Since CP7 there is a Scrolling Text Interaction that you could use, compatible with both SWF and  HTML output.

Maybe you are looking for

  • OSX 10.8.2 made battery life on macbook pro early 2010 even worse

    After upgrading to mountain lion, like everyone else I noticed that my battery took a hit but from what I could tell I lost about an hour's worth of time at the most when I used to almost 6 - 7 hours. Now that I have upgraded to 10.8.2 my battery lif

  • Keyboard and mouse don't work at all in 1 on 2 times!

    When my computer has already been started up once and I start it up again, then the PS2 keyboard and mouse will not work, but only 1 on 2 times precisely! So one time the keyboard and mouse are working, the other time keyboard and mouse are not worki

  • Circle fish help

    hey i have a project and i need help with coding some parts. im supposed t oadd a CircleFish to the Marine Bio case study. this fish will always try to move up, then diagonally to the right, eventually moving in a circle. Rules for Circle Fish Moveme

  • Add customer fields using BBP_CUF_BADI

    Hi, I am trying to add my own subscreen to PO Item screen. In order to do that I created a Function Group and assigned my screen to it. the screen contains a push button. In order to display my screen at the PO item I used the PUT_DATA method of badi

  • Tips on managing Activity Monitor?

    I'm getting a new MacBook Pro next week. Until then, I'm running my current machine off an external hard drive. However, it's very hard keeping it going. It sometimes works fine for a while, but it always freezes eventually, apparently a victim of in