<?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 Re: Variations of the SILENT IGNORE Trap in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934443#M109037</link>
    <description>&lt;P&gt;Move Table Script: 1st argument must NOT be a variable&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

script_name = "test";
dt &amp;lt;&amp;lt; New Script( script_name, "1" );  //no issue with the variable&lt;BR /&gt;
myGroupName = dt &amp;lt;&amp;lt; group scripts( today_str, script_name );&lt;BR /&gt;// No issue with the variable - even without a list&lt;BR /&gt;
dt &amp;lt;&amp;lt; Move Selected scripts( script_name, after( "Distribution" ) );&lt;BR /&gt;//doesn't&amp;nbsp;understand the&amp;nbsp;variable&amp;nbsp;-&amp;gt;&amp;nbsp;silent&amp;nbsp;ignore&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Mar 2026 05:21:48 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2026-03-10T05:21:48Z</dc:date>
    <item>
      <title>Variations of the SILENT IGNORE Trap</title>
      <link>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934387#M109031</link>
      <description>&lt;P&gt;In some cases, JMP makes it very hard for a user (or AI) to debug the code.&lt;BR /&gt;&lt;BR /&gt;from:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/AI-scripting-misleading-log/m-p/929994/highlight/true#M108698" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discussions/AI-scripting-misleading-log/m-p/929994/highlight/true#M108698&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;objects ignore messages they don't understand&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;UL&gt;
&lt;LI&gt;Here is a wish to remove the issue:&amp;nbsp;&lt;LI-MESSAGE title="chatty mode() for AI debugging" uid="930004" url="https://community.jmp.com/t5/JMP-Wish-List/chatty-mode-for-AI-debugging/m-p/930004#U930004" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;and here are some examples:&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Mon, 09 Mar 2026 22:14:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934387#M109031</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-09T22:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Variations of the SILENT IGNORE Trap</title>
      <link>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934389#M109032</link>
      <description>&lt;P&gt;From the original post:&amp;nbsp;&lt;LI-MESSAGE title="AI scripting - misleading log ..." uid="929962" url="https://community.jmp.com/t5/Discussions/AI-scripting-misleading-log/m-p/929962#U929962" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open("$SAMPLE_DATA/Big Class.jmp");
kd = dt &amp;lt;&amp;lt; KDTable("hello");
result = kd &amp;lt;&amp;lt; K Nearest Rows(1, 3);print("finished");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;JMP complains about line 3 :&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Object 'Data Table' does not recognize the message 'K Nearest Rows'&lt;/PRE&gt;
&lt;P&gt;the actual error in line 2 is silently ignored.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 19:13:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934389#M109032</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-09T19:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Variations of the SILENT IGNORE Trap</title>
      <link>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934443#M109037</link>
      <description>&lt;P&gt;Move Table Script: 1st argument must NOT be a variable&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

script_name = "test";
dt &amp;lt;&amp;lt; New Script( script_name, "1" );  //no issue with the variable&lt;BR /&gt;
myGroupName = dt &amp;lt;&amp;lt; group scripts( today_str, script_name );&lt;BR /&gt;// No issue with the variable - even without a list&lt;BR /&gt;
dt &amp;lt;&amp;lt; Move Selected scripts( script_name, after( "Distribution" ) );&lt;BR /&gt;//doesn't&amp;nbsp;understand the&amp;nbsp;variable&amp;nbsp;-&amp;gt;&amp;nbsp;silent&amp;nbsp;ignore&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 05:21:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Variations-of-the-SILENT-IGNORE-Trap/m-p/934443#M109037</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-10T05:21:48Z</dc:date>
    </item>
  </channel>
</rss>

