Mason,<br>Okay, I put your script to work on a different computer system and got the results you&#39;re looking for (I think, see attached image).  Here&#39;s the code that got those results:<br><br>&#39;open narr-a_221_19981218_0000_000.ctl&#39;<br>
hgt = 850<br>&#39;set lev &#39;hgt<br>&#39;set lat 34 46&#39;<br>&#39;set lon -114 -97&#39;<br>&#39;set mpdset hires&#39;<br>&#39;set display color white&#39;<br>&#39;clear&#39;<br>tt = 1<br>while (tt &lt;= 8)<br> &#39;set t &#39;tt<br>
 &#39;set cint 10&#39;<br> &#39;set ccolor 0&#39;<br> &#39;d HGTprs&#39;<br> &#39;set clab %.0f`3.`1C&#39;<br> &#39;set cint 2&#39;<br> &#39;set cstyle 2&#39;<br> &#39;set ccolor 2&#39;<br> &#39;d (TMPprs - 273)&#39;<br> &#39;set gxout barb&#39;<br>
 &#39;d skip(UGRDprs,3,3);VGRDprs;mag(UGRDprs,VGRDprs)&#39;<br> &#39;printim example_&#39;tt&#39;_&#39;hgt&#39;.png x800 y600&#39;<br> &#39;clear&#39;<br> tt = tt + 1<br>endwhile<br><br>You&#39;ll notice the only things I changed (other than the path to the files) is where I put some of the setup commands, and that I removed the &quot;set background&quot; command.  You don&#39;t need to use both &quot;set background&quot; and &quot;set display&quot; to get what you want.  In fact, I think those two commands sort of canceled each other out.  I would suggest always going with the &quot;set display color white&quot; ; &quot;clear&quot; sequence.  Changing either the background or display color messes with the color that represents the &quot;foreground&quot; and &quot;background&quot;.  When you did &quot;set background 1&quot;, you told Grads to set the color index 1 to black and 0 to white instead of the other way around, which is the default behavior.  I don&#39;t know if it matters to get much deeper than that, but just use the suggestion I provided and you&#39;ll be fine.<br>
<br>Jeff<br><br><div class="gmail_quote">On Wed, Nov 9, 2011 at 2:20 PM, Rowell, Mason D. <span dir="ltr">&lt;<a href="mailto:Mason.D.Rowell-1@ou.edu">Mason.D.Rowell-1@ou.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
All,<br>
<br>
I reduced the iterations to one, and I still cannot get these commands in the script to do the same thing when typing them one by one on the command line with a refresh load of grads. Has anyone had this happen before? Could someone run my script and tell me if you still only get a black background, despite the command?<br>

<br>
Mason<br>
________________________________________<br>
From: <a href="mailto:gradsusr-bounces@gradsusr.org">gradsusr-bounces@gradsusr.org</a> [<a href="mailto:gradsusr-bounces@gradsusr.org">gradsusr-bounces@gradsusr.org</a>] on behalf of Rowell, Mason D. [<a href="mailto:Mason.D.Rowell-1@ou.edu">Mason.D.Rowell-1@ou.edu</a>]<br>

Sent: Wednesday, November 09, 2011 1:31 PM<br>
<div class="HOEnZb"><div class="h5">To: GrADS Users Forum<br>
Subject: Re: [gradsusr] Background options failing<br>
<br>
All,<br>
<br>
Absolutely nothing will work. Even if I use white in printim the image is STILL black. This is such a huge waste of time at this point. Should it be so hard to get a script to work right?<br>
<br>
Mason<br>
________________________________________<br>
From: <a href="mailto:gradsusr-bounces@gradsusr.org">gradsusr-bounces@gradsusr.org</a> [<a href="mailto:gradsusr-bounces@gradsusr.org">gradsusr-bounces@gradsusr.org</a>] on behalf of Nick Heath [<a href="mailto:nkh09@fsu.edu">nkh09@fsu.edu</a>]<br>

Sent: Wednesday, November 09, 2011 12:51 PM<br>
To: GrADS Users Forum<br>
Subject: Re: [gradsusr] Background options failing<br>
<br>
Try moving your &#39;clear&#39; command to the line after you &#39;set display color white&#39;, e.g.,<br>
<br>
&#39;set background 1&#39;<br>
&#39;set display color white&#39;<br>
&#39;clear&#39;<br>
<br>
That might work.<br>
<br>
-Nick<br>
<br>
----- Original Message -----<br>
From: &quot;Rowell, Mason D.&quot; &lt;<a href="mailto:Mason.D.Rowell-1@ou.edu">Mason.D.Rowell-1@ou.edu</a>&gt;<br>
Date: Wednesday, November 9, 2011 6:17 pm<br>
Subject: [gradsusr] Background options failing<br>
To: &quot;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&quot; &lt;<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a>&gt;<br>
<br>
&gt; All,<br>
&gt;<br>
&gt; See the below. I cannot get the script to do the same as the<br>
&gt; command line operations, even when they are the same.<br>
&gt;<br>
&gt; Mason<br>
&gt; ________________________________________<br>
&gt; From: Rowell, Mason D.<br>
&gt; Sent: Tuesday, November 08, 2011 4:17 PM<br>
&gt; To: <a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
&gt; Subject:<br>
&gt;<br>
&gt; All,<br>
&gt;<br>
&gt; Running the above, command by command, gives me white background,<br>
&gt; with grey political boundaries and a black frame, but running the<br>
&gt; script, gives me orange boundaries and black background (with white<br>
&gt; frame). This is a complete mystery to me. In fact, I often have to<br>
&gt; completely close out of grads and reopen from scratch in order to<br>
&gt; get &#39;set background 1&#39; to work from the command line (which only<br>
&gt; shows after using clear). So I would expect at least the first<br>
&gt; image from the script to look right but it doesn&#39;t. Anyone know why<br>
&gt; grads is needing a fresh start to change this, ALONG with a clear,<br>
&gt; then never to work properly again unless I reboot it? This can&#39;t be<br>
&gt; the only problem with the script since it won&#39;t even work right for<br>
&gt; the first image running the script with a fresh grads<br>
&gt; session....Again I am using an older 2.0 version 6.<br>
&gt;<br>
&gt; Mason<br>
&gt;<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
Nick Heath<br>
Graduate Student<br>
Florida State University<br>
Department of Earth, Ocean, and Atmospheric Science<br>
Love Bldg. Rm 311<br>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
<br>
_______________________________________________<br>
gradsusr mailing list<br>
<a href="mailto:gradsusr@gradsusr.org">gradsusr@gradsusr.org</a><br>
<a href="http://gradsusr.org/mailman/listinfo/gradsusr" target="_blank">http://gradsusr.org/mailman/listinfo/gradsusr</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Jeff Duda<br>Iowa State University<br>Meteorology Graduate Student<br><a href="http://www.meteor.iastate.edu/%7Ejdduda" target="_blank">www.meteor.iastate.edu/~jdduda</a><br>