CA Service Management

  • 1.  blink element text im label

    Posted Aug 09, 2017 10:20 AM

    How can I put a blinking text in a label on a form in CA Service Catalog ?



  • 2.  Re: blink element text im label
    Best Answer

    Posted Aug 09, 2017 10:27 AM

    You could use jquery fadeToggle on the desired element. 

    setInterval(function() {
          $( ".yourClass" ).fadeToggle();
       }, 500);

     

    A Fiddler of this Edit fiddle - JSFiddle 



  • 3.  Re: blink element text im label

    Broadcom Employee
    Posted Aug 10, 2017 04:14 AM

    Good Morning Everton.
     
    In SC/Catalog/Forms/Forms, open a form.
    Add a 'Label' component on it and for this 'Label' component set:
     
    Name='Label Text' with the following 'Value':
    <marquee BEHAVIOR=SLIDE style="height:20;width:100" scrollamount="200" scrolldelay="1500">Blinking Text!</marquee>
    <marquee BEHAVIOR=SCROLL style="height:20;width:100" scrollamount="200" scrolldelay="1500">Blinking Text!</marquee>
    <marquee BEHAVIOR=ALTERNATE style="height:20;width:100" scrollamount="200" scrolldelay="1500">Blinking Text!</marquee>
    <marquee BEHAVIOR=ALTERNATE DIRECTION=LEFT style="height:20;width:100" scrollamount="200" scrolldelay="1500">Blinking Text!</marquee>
    <marquee BEHAVIOR=ALTERNATE DIRECTION=RIGHT style="height:20;width:100" scrollamount="200" scrolldelay="1500">Blinking Text!</marquee>
     
    PS1.
    The label-text of a form-component can not be set to blink, from within the 'rename' of that text.
     
    PS2.
    As googling for this, I came across the following(more than once):
    The <blink> tag was never an official standard, and is now completely abandoned by all browsers.
    Also in Google, alternatives like 'CSS' and 'SCRIPTING' can be found.
     
    Kind regards, Louis.