Adding xml to scrolling text window

The problem is, I used this tutorial to make my scroll
window. It seems to coding method isn't the best way to do it, as
it makes it a pain in the *** to update. The guy didn't even put it
in as an actionscript text, I would have to open up the text layer
every time.
I'm trying to modify it, but I'm really new at flash and
kinda stuck..
heres the tutorial (you can view the working example here):
http://www.stilva.com/smooth-scrollbar/
I think its more of a layering issue thats causing me
problems...
anyways, i want to load my text externally into the text
thats inside the mc txthold which is inside the container. How
would I approach this? Please use the link to view the sample and
see the source info.

what the ***, i never get a reply. I must have helped like 5
people on this forum...

Similar Messages

  • Problem with Java scrolling text window on Mac OS

    The Java scrolling text window created by AWT "TextArea" scrolls in the normal way from the top on Windows, whereas it scrolls from the bottom on the Mac OS. That is, the text file is first displayed from the bottom on Mac, so that the user has to scroll to the top of the file each time a new page is opened, which is a very nuisance. Have you run into this problem and do you know how to over-ride the Mac OS default? Many thanks.

    TextAreas suck in general, this has been discussed many time in the forum. As a duct-tape fix, you might play around with setCaretPosition() after inserting your new text. Good luck

  • Help finding Mac screensaver with scrolling text (Windows Marquee-esque)

    I have been searching the internet somewhat intensely for a scrolling text screensaver for my Macbook. I found an Apple download called "message", but that is wayyy too fancy for me. I can barely even see the text with all of the crazy fonts and weird zooming. The emphasis is not on the text for that screensaver.
    Something like the Windows Marquee would be fine, though I am sure somewhere out there is a tricked-out version for Mac. I would just want to be able to read the text clearly, as I intend to use the screensaver to help me to memorize some text.
    Maybe I am overlooking an obvious screensaver already loaded on the Macbook, but I am surprised that Tiger does not come with such a screensaver. Any suggestions and links? Thank you

    I think you should be able to find something that works for you using Quartz Composer. As an example, here is a link to someone else that was working on horizontal scrolling text. I don't know if their project got completed (or if it's currently included in Quartz Composer) but the .qtz file on this page will load in QuickTime so you can see the results as of this posting.
    http://www.mulle-kybernetik.com/weblog/2005/05/towardshorizontal_scrollingi.html
    You get Quartz Composer by downloading the Xcode tools. I'm looking through the example libraries now to see if there's something you could use in the current examples.

  • XML and scrolling text

    Hi,
    My flash movie contains a text field and a scrollbar, when i
    simply write the text in the text field and then publish the movie
    the scrollbar works fine. However i need to read in the text
    through XML but when i do this the scrollbar does not work. Is
    there code that i need to implement to make the scrollbar
    automatically scroll....
    All help is appreciated,
    Thanks

    Okay found this:
    [Dynamic Text Box Name].autoSize = "center";
    [Dynamic Text Box Name].wordWrap = true;
    however, the height really doesn't adjust when the copy does.
    If I start
    off with the dynamic text box at 50 pixels high, it remains
    that way
    when calculated in ActionScript using the [MovieClip]._height
    even
    though it is much taller than 50 pixels with the copy in
    there.
    So I'm back to the drawing board. I want to have an XML file
    with
    Headline, BodyCopy, and disclaimer copy. I want to call the
    nodes into
    Flash and stylize them.
    I DO NOT want to use CSS since I am using funky fonts that
    will not be
    available on all machines. Want those fonts embedded in Flash
    so it
    shows the same on any computer.
    -Kirk
    W. Kirk Lutz wrote:
    > I am brand new to XML and pulling in text to Flash from
    it. So far so
    > good. The text shows. The only thing I'm having trouble
    with is the
    > height of the text box the imported text sits in. I want
    it to
    > dynamically expand if the text is long.
    >
    > How can I go about importing text into a text Dynamic
    text box and have
    > the box expand if the text is too long for the manual
    setting?
    >
    > -Kirk

  • Adding news ticker or text scroller in a jsf page

    Can anyone please give me some clue about adding news ticker or text scroller kind of component using jsf, richfaces or icefaces in which important information like information about available jobs can be shown?
    Thanks in advance.
    Edited by: 857452 on May 18, 2011 7:06 AM
    Edited by: 857452 on May 18, 2011 7:07 AM

    this is more the realm of javascript / ajax / DHTML, not JSF. JSF is server side, what you want to do is mostly client side. Only getting the data might involve the server.

  • How do you open a picture that has had text added using software such as Windows Photo Gallery?

    How do you open a picture that has had text added using software such as Windows Photo Gallery?

    In Editor, go to File menu>open, and point to where the photo file is on disk.

  • 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>

  • Link in xml form article text to open another portal page?

    Like in all websites our intranet have pages with articles (xml forms) where it's logical for the text to include links to other articles in other areas of the portal.
    Since all iviews (km navigation in this case) are displayed as iframes, links within the text only lead to the target page being displayed within the iview/iframe. I need the complete portal page to change to also show where in the page hierachy/navigation structure the user has landed.
    I am aware of the related links iview, but this doesn't do the trick. I want the article text itself to include the links.
    A logical solution would be to find the page's navigation URL and use this as a text link, but then I would need to add a target=_top to change the whole page around. This is not possible within a xml form. (<a href="/irj/portal?NavigationTarget= navurl://cf1c773631c70d216fe3434ca4dc3a0e" target="_top")
    Ideas?
    Henning

    Thanks for answer. Points awarded.
    BUT: Still, a link to http://server/irj/portal/link added in the html editor window of an xml form only give the options of opening the link in new browser, or in the active window. The first option results in a massive amount of opened browsers, the second results in the target page being opened in the iframe (not nice!)
    Of course I could edit the xml directly adding a target=_top, but every new editing of this file would overwrite these changes.
    The best way would be to add a new option in the html editor allowing an option of "fill entire window" when adding a text link that adds target=_top in the xml.
    Ideas?
    Henning

  • Detect when user scrolls text

    Hi guys.
    I have a box wit scrollable text, and i need to know when the user starts to use the scroll bar. any idea in how to detect this?

    Hi,
    You can use 'scrollTop' to detect if the text has been scrolled. A scrolltop of 0 means it has not been scrolled.
    Try the following behavior attached to the scrolling text sprite.
    property pScrollStart
    on beginSprite me
      (sprite(me.spriteNum).member).scrollTop = 0
      pScrollStart = 0
    end
    on exitFrame me
      if pScrollStart = 0 then
        if (sprite(me.spriteNum).member).scrollTop then pScrollStart = 1
      end if
    end
    on mouseup me
      put pScrollStart
    end
    I have 'pScrollStart' as a property variable that changes to 1 as soon as the text member is scrolled down.I added the mouseUp part so you could click the sprite and see the variable value in the Message Window.
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au

  • How do you add a scroll bar to a scrolling text field in a folio?

    I've created iPhone and iPad folios with multiple pages. There are scrolling text fields on each page. The fields scroll as designed, but the scroll bars on the  text fields only appear while actually scrolling. Is there a way to have them always visible so the user knows there is more hidden info? The only bars that are constantly visible are the page scroll bars.  Thanks!

    Why is your content pane null? I thought the content pane was the top-level in all windows? If you want complete control over the location of a list box, you want to set the layout of the content pane to null... the way I almost always do this is the other way around, to create my own panel and use setContentPane instead:
    JPanel content = new JPanel(null);
    JScrollPane scroll = new JScrollPane(myListBox);
    scroll.setBounds(380, 10, 500, 500);
    content.add(scroll);
    setContentPane(content);

  • Ticker Widget  (or other scrolling text widget) - including HTML??

    We are trying to enable a scrolling ticker type widget on a dashboard using Xcelsius 4.5.  We want this to dynamically pull the text from a file and have written a method to provide the XML link to the file data.  We are wondering how to enable HTML to be interpreted in the scrolling text so that it has color, bold, etc.  It would be great to also include links in the HTML scrolling so that the observer could click to follow the link.
    I greatly appreciate any help that you can provide,,,,
    Thanks!!
    Also, if there are ways enabled in 2008 to do this, pass along the info as well....even though we would really like to do it in 4.5.

    Hi,
    To clarify, when you say "ticket type widget" do you mean the ticker component?
    If so, in order to get the change in color you will have to utilize the alert settings, which can be found by double clicking on the component and adjusting these setting in the alert tab.
    Hope this helps! 
    Xcelsius Gurus
    http://www.everythingxcelsius.com
    "Xcelsius Gurus share tips, reviews, tricks and much more!"

  • Xml report in new window

    hi all,
    actually we are generating xml document for a report and showing the content on the browser with 'response' object . we need to show that in a new window,.
    we restricted the browser buttons for security reasons , so because it was opening in the same window we cannot go back to our application . the alternative i got is that changing the xml file type association to any other editor instead of Internet browser but this is not a solution
    please help me
    thanks in advance
    with regards
    satya

    hi all,
    my problem was solved, once again many thanks to jean Francois.
    Try this:
    function newWindow() {
    window.open("", "exportWindow");
    EmployeeInfoForm.action = EmployeeInfoForm.action +
    "?command=export";
    EmployeeInfoForm.target = "exportWindow";
    EmployeeInfoForm.submit();
    Regards,
    Jean-Francois
    i made a small change to EmployeeInfoForm.action not to append "?command=export" every time when this script calls
    var act= EmployeeInfoForm.action;
    EmployeeInfoForm.action = EmployeeInfoForm.action +
    "?command=Export";
    EmployeeInfoForm.action=act;
    Apart from this solution meanwhile i tried out one alternative,
    when user chooses xml
    docName=someName
    docType=xml
    if(docType.equalsIgnoreCase("xml"))
                   response.setContentType("text/plain");
                   //docName= URLEncoder.encode("\""+"a"+".xml" + "\"");
              docName= "\""+docName+".xml" + "\"";
                   System.out.println(docName);
                   docType="txt";
              response.setHeader("Content-Disposition", "attachment; filename=" + docName + "." + docType);
    ServletOutputStream sos = response.getOutputStream();
                   sos.write(dataBytes);
    sos.close();
    just i made the filename as someName as "someName.xml.txt" with qoutes.
    so that with extension .txt makes to open in notepad rather than to browser , thus avoiding my problem of opening the content of same browser window, this worked fine, but when saving this document i expected the file name as "someName.xml" with qoutes so that the file will save with .xml but i see someName.xml withoutqoutes. when i save this, the file was saved as someName.xml .txt.
    but when user types his own file name xyz than the file was saved xyz.xml
    can any suggest me how can i save the file name with qoutes.
    and can anyone explain me whats happening when i do like this
    with regards
    satya

  • Scrolling text at an angle

    don't suppose anyone has found a work a round in DPS to have a scrolling text box at an angle, so that the text inside the scrolling are scrolls at the same angle as the text box, and not just vertically.
    ...just on the remote off chance :-)
    Cheers
    Alistair

    Hi Bob
    It's a piece of cake with edge animate, but I just want to do it in indesign for simplicity, (in that I mean OAM's can be really flakey, and the HTML files dont always perform too well on iPad1)
    May be next year we will start to see a bit more features added to DPS, if I live that long :-)
    thanks for the reply though!
    Alistair

  • Styling individual words in scrolling text interaction Captivate 7

    Does anybody know if it is possible to style only a portion of text that is being shown within the Captivate 7 scrolling text widget?
    For example, at the moment if I select a word that I'd like to make bold the entire content of the text pane is made bold, same with italic and underline.
    Any solution needs to be HTML5 compatible.
    Thanks in advance.

    Hi Sreekanth,
    It would definitely be useful if the styling worked properly, afterall, the options are shown in the editor so one can only think that it's a bug. I could even live with it if it accepted HTML markup.
    Re: your question, I put together a basic test using the Scrolling Text Interaction populated with lorem ipsum text and it seems to work as desired.
    I tested on Windows Vista Pro in Safari, IE9 and Chrome. I also tested on iPad running iOS7. I published in HTML5 only.
    The only thing (other than the styling issue mentioned above) was that the text pane seems to sit about 20px lower in the published file than it does on the Captivate stage. Not ideal when laying out individual content screens but not the end of the world to have to nudge the pane up in my working file.

  • Fading garbage mask with scrolling text

    Hello,
    I have some scrolling text which I have added a 4 point garbage mask to, I want the text to fade at the top of the screen where it disappears, instead of how it disappears now, it goes from totally visable to 100% gone, and looks unprofessional.
    To clarify a little bit more : There is an image at the top of the screen, so I want the
    text to scroll from the bottom of the screen, to the top of the screen, and fade away just as it almost hits the bottom of the image.
    Thanks for any advice on how to adjust this
    Dave.

    I would use Pixelan SpiceMaster for that. Imagine the shot below to be your scrolling text, when it gets to the top of the screen it turns transparent and disappears.
    When you combine this you can use scrolling titles like these with an increasing transparency at the top, like this one, where the top transparency was not yet added, but could very easily be made with SpiceMaster.

Maybe you are looking for

  • Move files with doubelspace in filename using CLIENT_HOST in Forms10g

    Hi, We have following code witten to move files in Forms 10g ( 10.1.2.0.2 ) - CLIENT_HOST('cmd /c move '||'"'||Source||'"'||' '||Dest); The above code works fine for files with single space in filename. For Example - "a b.txt" However fails for files

  • Sony Bravia KDL-40Z4100 - Green Ghosting on TV Picture

    My Sony Bravia KDL-40Z4100 is displaying green 'ghosting' on the TV picture(The link below, will provide an image of the ghosting) https://www.dropbox.com/s/er9zb39xy3ewej0/BraviaScreenImage.jpg?dl=0 I have tried:1.Disconnecting all external devices2

  • About RMAN backup !!!!

    Dear Friends, Let my production server running starts from 1st June . In 15 june , I take the First rman full (or level0) backup using the command : RMAN> backup database plus archivelog; In 20 June I take 2nd rman full backup using : RMAN> backup da

  • Terminate Pass/Fail Sequence Step

    Hi everyone, I have a step in my main sequence that runs an interactive dialog box to the operator.  It checks whether or not it receives communication from the slave device.  If for some reason the operator wants to "TERMINATE (ABORT" the dialog box

  • Macbook pro screen and case problems

    I have a 2ghz macbook pro 15in. I have noticed dark spots and then little lines that i would call scratches on the screen. I have applecare till next year in April so i am under applecare but i am wondering if this is covered. I have a dented case th