<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Blinking in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843246#M10298</link>
    <description>Hi guys that's me again.&lt;BR /&gt;&lt;BR /&gt;Q: How can I make, from inside a command procedure, some text to blink on the screen?&lt;BR /&gt;&lt;BR /&gt;Thks guys.</description>
    <pubDate>Mon, 14 Aug 2006 18:30:17 GMT</pubDate>
    <dc:creator>jpaulino05</dc:creator>
    <dc:date>2006-08-14T18:30:17Z</dc:date>
    <item>
      <title>Blinking</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843246#M10298</link>
      <description>Hi guys that's me again.&lt;BR /&gt;&lt;BR /&gt;Q: How can I make, from inside a command procedure, some text to blink on the screen?&lt;BR /&gt;&lt;BR /&gt;Thks guys.</description>
      <pubDate>Mon, 14 Aug 2006 18:30:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843246#M10298</guid>
      <dc:creator>jpaulino05</dc:creator>
      <dc:date>2006-08-14T18:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Blinking</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843247#M10299</link>
      <description>It depends on the screen, but most likely:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://vms.tuwien.ac.at/info/openvms_beginners_faq.html" target="_blank"&gt;http://vms.tuwien.ac.at/info/openvms_beginners_faq.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://vt100.net/docs/vt100-ug/" target="_blank"&gt;http://vt100.net/docs/vt100-ug/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;A Google search for keywords like "vt100",&lt;BR /&gt;"blinking", and "dcl" will probably find more.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Aug 2006 18:44:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843247#M10299</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-08-14T18:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Blinking</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843248#M10300</link>
      <description>Assuming an ANSI standard terminal, you can send escape sequences to change the text attributes (bold, reverse, blink etc...)&lt;BR /&gt;&lt;BR /&gt;$ esc[0,7]=27&lt;BR /&gt;$ off=esc+"[m"&lt;BR /&gt;$ bold=esc+"[1m"&lt;BR /&gt;$ rev=esc+"[7m"&lt;BR /&gt;$ blink=esc+"[5m"&lt;BR /&gt;$ WRITE SYS$OUTPUT blink,"this will blink",off&lt;BR /&gt;$ WRITE SYS$OUTPUT bold,"bolded",off&lt;BR /&gt;$ WRITE SYS$OUTPUT rev,"reverse",off&lt;BR /&gt;&lt;BR /&gt;You can add them together&lt;BR /&gt;&lt;BR /&gt;$ WRITE SYS$OUTPUT bold,rev,"reverse bold",off&lt;BR /&gt;&lt;BR /&gt;or, if you want to save on output define multiple attributes in one sequence&lt;BR /&gt;&lt;BR /&gt;boldrev=esc+"[1;7m"&lt;BR /&gt;boldrevblink=esc+"[1;5;7m"&lt;BR /&gt;&lt;BR /&gt;Warning! Be sure to send the "off" sequence, otherwise all subsequent output will have the last set attribute.</description>
      <pubDate>Mon, 14 Aug 2006 18:55:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843248#M10300</guid>
      <dc:creator>John Gillings</dc:creator>
      <dc:date>2006-08-14T18:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Blinking</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843249#M10301</link>
      <description>Here is a list of some of the more used esc sequences in .COM format. Hope that helps a bit.  (Watch the wrap - all lines start with $)&lt;BR /&gt;&lt;BR /&gt;$!&lt;BR /&gt;$ esc[0,8] = 27&lt;BR /&gt;$ sdc_off       == "''esc'[0m"   !all attributes off&lt;BR /&gt;$ sdc_bold1     == "''esc'[1m"   !bold on&lt;BR /&gt;$ sdc_bold0     == "''esc'[22m"  !bold off&lt;BR /&gt;$ sdc_undl1     == "''esc'[4m"   !underline on&lt;BR /&gt;$ sdc_undl0     == "''esc'[24m"  !underline off&lt;BR /&gt;$ sdc_blnk1     == "''esc'[5m"   !blinking on&lt;BR /&gt;$ sdc_blnk0     == "''esc'[25m"  !blinking off&lt;BR /&gt;$ sdc_rvrs1     == "''esc'[7m"   !reverse video on&lt;BR /&gt;$ sdc_rvrs0     == "''esc'[27m"  !reverse video off&lt;BR /&gt;$ sdc_DECSWL    == "''esc'[5m"   !single-width, single-height line&lt;BR /&gt;$ sdc_DECDWL    == "''esc'[6m"   !double-width, single-height line&lt;BR /&gt;$ sdc_DECDHL0   == "''esc'#3"    !double-width, double-height line (top half)&lt;BR /&gt;$ sdc_DECDHL1   == "''esc'#4"    !double-width, double-height line (bottom half)&lt;BR /&gt;$ sdc_DECKPAM   == "''esc'="     !application&lt;BR /&gt;$ sdc_DECKPNM   == "''esc'&amp;gt;"     !numeric&lt;BR /&gt;$ sdc_RIS       == "''esc'c"     !hard terminal reset - not recommended&lt;BR /&gt;$ sdc_DECALN    == "''esc'#8"    !screen alignment pattern&lt;BR /&gt;$!&lt;BR /&gt;$ prompt = sdc_bold1 + nodename + "::" + username + "&amp;gt; " + sdc_bold0&lt;BR /&gt;$ set prompt="''prompt'"&lt;BR /&gt;$!</description>
      <pubDate>Wed, 16 Aug 2006 05:22:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/blinking/m-p/3843249#M10301</guid>
      <dc:creator>Paul Beaudoin</dc:creator>
      <dc:date>2006-08-16T05:22:56Z</dc:date>
    </item>
  </channel>
</rss>

