<?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 How to write wait time in JSL as a numeric display of seconds? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737543#M91869</link>
    <description>&lt;P&gt;Specific point: I set the countdown for 20 seconds, and when there are still 5 seconds left, a window will pop up to show the remaining number of seconds, and the displayed number will be reduced by second, and the countdown window will automatically close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Wait(20);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 22 Mar 2024 07:17:25 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2024-03-22T07:17:25Z</dc:date>
    <item>
      <title>How to write wait time in JSL as a numeric display of seconds?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737543#M91869</link>
      <description>&lt;P&gt;Specific point: I set the countdown for 20 seconds, and when there are still 5 seconds left, a window will pop up to show the remaining number of seconds, and the displayed number will be reduced by second, and the countdown window will automatically close&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Wait(20);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 07:17:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737543#M91869</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-03-22T07:17:25Z</dc:date>
    </item>
    <item>
      <title>回复： How to write wait time in JSL as a numeric display of seconds?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737555#M91870</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Such a small display can be achieved, the smaller the better&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2024-03-22_15-19-40.png" style="width: 171px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/62505iF5721BE893B927C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="2024-03-22_15-19-40.png" alt="2024-03-22_15-19-40.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 07:22:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737555#M91870</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-03-22T07:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to write wait time in JSL as a numeric display of seconds?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737556#M91871</link>
      <description>&lt;P&gt;I would most likely use Caption&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

For(i = 4, i &amp;gt;= 0, i--,
	Caption(
		{100, 200},
		Char(i),
		Font("Arial Black"),
		Font Size(12)
	);
	wait(1);
);

Caption(remove);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 22 Mar 2024 07:27:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-wait-time-in-JSL-as-a-numeric-display-of-seconds/m-p/737556#M91871</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-03-22T07:27:58Z</dc:date>
    </item>
  </channel>
</rss>

