<?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 Prevent window scrolling when adding display boxes in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75229#M35908</link>
    <description>&lt;P&gt;Is there a way to prevent a window from scrolling to the location of added boxes?&amp;nbsp; In the following example script, pressing the "Add Spline" button will add a new spline with half the lambda value from the one before, and after pressing the button 6 or so times, the window scrolls away from the graph to the location of the newly added control spline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example -- the solution IS NOT to simply remove the other control charts from the display.&amp;nbsp; In my actual code, I remove the control chart with the biv &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 )) command, but it scrolls nonetheless.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
n = 100;
New Window( "test",
    V List Box(
        b = Button Box( "Add Spline",
            n = n / 2;
            obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
        ),
        dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
        obj = Bivariate( Y( :Weight ), X( :Height ) );
        obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
    )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 22 Sep 2018 22:27:02 GMT</pubDate>
    <dc:creator>LaserRasin</dc:creator>
    <dc:date>2018-09-22T22:27:02Z</dc:date>
    <item>
      <title>Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75229#M35908</link>
      <description>&lt;P&gt;Is there a way to prevent a window from scrolling to the location of added boxes?&amp;nbsp; In the following example script, pressing the "Add Spline" button will add a new spline with half the lambda value from the one before, and after pressing the button 6 or so times, the window scrolls away from the graph to the location of the newly added control spline.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example -- the solution IS NOT to simply remove the other control charts from the display.&amp;nbsp; In my actual code, I remove the control chart with the biv &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 )) command, but it scrolls nonetheless.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
n = 100;
New Window( "test",
    V List Box(
        b = Button Box( "Add Spline",
            n = n / 2;
            obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
        ),
        dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
        obj = Bivariate( Y( :Weight ), X( :Height ) );
        obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
    )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 22 Sep 2018 22:27:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75229#M35908</guid>
      <dc:creator>LaserRasin</dc:creator>
      <dc:date>2018-09-22T22:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75288#M35910</link>
      <description>&lt;P&gt;From an interactive UI standpoint scrolling to to the fit summary makes sense.&amp;nbsp; This script employs two useful JMP display box functions/methods: Visibility() and Scroll Window(). Scroll Window() is used to always return to the top of the display, and visibility is used to "Collapse" the outline boxes associated with the splines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note, for simplicilty, this script uses the outline box count.&amp;nbsp; However, Xpath to find the kth Outline Box with helpKey starting with Bivar Spline, would be more direct.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
n = 100;
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
xp = Expr(report(obj)[OutlineBox(cnt)] &amp;lt;&amp;lt;Visibility("Collapse") );
New Window( "test",
 vlb =  V List Box(
        b = Button Box( "Add Spline",
            n = n / 2;
            obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
            cnt++;
            xp;
            wait(0);
            vlb &amp;lt;&amp;lt; scroll window(b);
        ),
        obj = dt &amp;lt;&amp;lt;  Bivariate( Y( :Weight ), X( :Height ) );
        obj &amp;lt;&amp;lt; Fit Spline( n, Standardized );
        cnt = 2;
        xp;
    )
);

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Sep 2018 08:15:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75288#M35910</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-23T08:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75320#M35916</link>
      <description>&lt;P&gt;Thanks for your help!&amp;nbsp; However, my issue is that I don't want any part of the summary to be shown, I simply want the spline to be drawn.&amp;nbsp; To this end, I employ the Visibility( "Collapse" ) and (Curve[x] &amp;lt;&amp;lt; Report(0)) commands, which successfully keeps the reports from showing.&amp;nbsp; However, the screen still moves as if they were shown.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've included a more complete example here.&amp;nbsp; Clicking the button to add the spline immediately scrolls to the point where the graph is no longer visible, even though (in the end) no new content is displayed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report that is used in my company that has many graphs in a page like this example, and having the ability to interactively add splines is quite useful, but when the graph of interest moves off screen as a result, it makes it too much of an annoyance to deal with.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
n = 100;
New Window( "test",
    V List Box(
        Outline Box( "a display",
            a1 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a1++;
                    obj1 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a1] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj1 = Bivariate( Y( :Weight ), X( :Height ) );
                obj1 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj1 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj1 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a2 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a2++;
                    obj2 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a2] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj2 = Bivariate( Y( :Weight ), X( :Height ) );
                obj2 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj2 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj2 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a3 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a3++;
                    obj3 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a3] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj3 = Bivariate( Y( :Weight ), X( :Height ) );
                obj3 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj3 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj3 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a4 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a4++;
                    obj4 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a4] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj4 = Bivariate( Y( :Weight ), X( :Height ) );
                obj4 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj4 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj4 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a5 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a5++;
                    obj5 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a5] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj5 = Bivariate( Y( :Weight ), X( :Height ) );
                obj5 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj5 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj5 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a6 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a6++;
                    obj6 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a6] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj6 = Bivariate( Y( :Weight ), X( :Height ) );
                obj6 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj6 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj6 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a7 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a7++;
                    obj7 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a7] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj7 = Bivariate( Y( :Weight ), X( :Height ) );
                obj7 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj7 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj7 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a8 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a8++;
                    obj8 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a8] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj8 = Bivariate( Y( :Weight ), X( :Height ) );
                obj8 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj8 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj8 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        ),
        Outline Box( "a display",
            a9 = 1;
            V List Box(
                b = Button Box( "Add Spline",
                    n = n / 2;
                    a9++;
                    obj9 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[a9] &amp;lt;&amp;lt; Report( 0 ));
                ),
                dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
                obj9 = Bivariate( Y( :Weight ), X( :Height ) );
                obj9 &amp;lt;&amp;lt; Fit Spline( n, Standardized ) &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Report( 0 ));
                (obj9 &amp;lt;&amp;lt; Report())[List Box( 5 )] &amp;lt;&amp;lt; Visibility( "Collapse" );
                (obj9 &amp;lt;&amp;lt; Report())[Picture Box( 2 )] &amp;lt;&amp;lt; Visibility( "Collapse" )
            );
        )
    )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 23 Sep 2018 17:47:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75320#M35916</guid>
      <dc:creator>LaserRasin</dc:creator>
      <dc:date>2018-09-23T17:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75398#M35922</link>
      <description>&lt;P&gt;Which version of JMP are you using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached are 2 scripts: &lt;STRONG&gt;scrollers_ob.jsl&lt;/STRONG&gt; and &lt;STRONG&gt;scrollers.jsl&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Both are essentially the same script, except for the scroll action.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;scrollers_ob.jsl&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;uses just a VListBox(), vlb, and Scroll Window() to the outline box that contains the button the user just pressed. If a user scrolls to the 6th display, however, a portion of display 5 is showing it pops display 6 to the top. The user is is still seeing the graph of interest and the scroll action is smoooth.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;scrollers0.jsl&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;uses a ScrollBox() wrapper, sb, for vlb.&amp;nbsp; A ScrollBox has a nice function &amp;lt;&amp;lt; get scroll position. Using that function, to set the scroll position, the user will see the exact same position, however, the display is jumpy, not smooth.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both scripts use expressions to eliminate "cookie cutter" code that can be dificult to read and to maintain. Note, it creates handles/references to each button box, each bivariate and each "display" outline box.&amp;nbsp; Right click on any button &amp;gt; select edit &amp;gt; select set script to see the reference to bivariate, etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As an FYI to to the JSL masters, I did try using Set Function() for the ButtonBox(), and using its parent and sibling. However,&amp;nbsp; I was surprised, vlb &amp;lt;&amp;lt; Scroll Window(this) did not work for me.&amp;nbsp; &amp;nbsp;It could have been a coding error. I didn't spend much time on it since I thought the code might be too obtuse to be informative.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 06:22:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75398#M35922</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-24T06:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75585#M35951</link>
      <description>&lt;P&gt;Thanks for the help!&amp;nbsp; I will see if I can make this work, but I think that this method will in the end not work for me -- I am modifying a function that is called by various reports to generate the graphs -- I cannot add a scroll box to the reports.&amp;nbsp; The only solution that I can think of that would work for me is to simply prevent the new content from triggering the scroll mechanism.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 17:44:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75585#M35951</guid>
      <dc:creator>LaserRasin</dc:creator>
      <dc:date>2018-09-24T17:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75593#M35957</link>
      <description>&lt;P&gt;Have you considered using a tabbed report with a selector?&amp;nbsp; See the picture below.&amp;nbsp; Or are you creating a page with multiple graphs, for example, side-by-side, for each view.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also,&amp;nbsp; other alternatives are:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create your Bivariate with two splines with collapsed (hidden) boxes. Until the user selects a value or the button, set the 2nd spline's line width to 0 so it would not be visible. Allow the user to select what the second spline's value should be. In other words, you are not adding a ton of splines, just send a message to change the smoothing factor of one. That would eliminate any jumping.&lt;/LI&gt;&lt;LI&gt;Change the behavior of your Add Spline button to add a curve using Add Graphics Script, instead of using the UI messgae Fit Spline.&amp;nbsp; This would take extra scripting: using functions to get coefficients, evaluate, chose a color, add the graphics script,&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Option #1 would be the easiest&lt;/P&gt;&lt;P&gt;The JMP UI slider anticipates what you are trying to emulate, the user can adjust the smoothing factor.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Figure10_7_fs.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/12572i7771E8419BBD4497/image-size/large?v=v2&amp;amp;px=999" role="button" title="Figure10_7_fs.png" alt="Figure10_7_fs.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Sep 2018 18:30:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/75593#M35957</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-09-24T18:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Prevent window scrolling when adding display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/78675#M36500</link>
      <description>Option #2 of adding the spline by hand did the trick. JMP has a handy function to calculate splines, so this made it very easy.</description>
      <pubDate>Thu, 11 Oct 2018 00:59:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Prevent-window-scrolling-when-adding-display-boxes/m-p/78675#M36500</guid>
      <dc:creator>LaserRasin</dc:creator>
      <dc:date>2018-10-11T00:59:39Z</dc:date>
    </item>
  </channel>
</rss>

