<?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: Newbie here! Question about a proposal using SAS! :) in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/420165#M14473</link>
    <description>&lt;P&gt;What&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13635"&gt;@Vince_SAS&lt;/a&gt;&amp;nbsp;said: Lots of amazing people in here!&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/179914"&gt;@grandpastyle13&lt;/a&gt;:&amp;nbsp;At your convenience, you can post one comment&amp;nbsp;that encapsulates the tips you used and tag the contributors. When you mark that one as the accepted solution,&amp;nbsp;everyone tagged accrues credit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can't wait till you&amp;nbsp;pop the question!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* rose picture*/
ods graphics/reset=all;
ods graphics/ imagefmt=png;
options device=png;

options nodate nonumber;

*ods graphics/ height=6.5in noborder;
ods pdf gtitle gfootnote
	file="n:\rose_card.pdf"
	 startpage=no ;
title;
ODS USEGOPT ;
%macro makecard(for=@grandpastyle13,from=SAS Community Managers);

	data Roses;
		/* the array below has a list of multipliers that make 
		pretty roses, it is temporary, so will not be saved
		with the data*/
		array klist{11} _temporary_ (4, 5, 6, 1.5, 2.5, 1.333333, 2.33333, .75, 1.25, 1.2, .8333333);

		do flower=1 to 12;
			n = ceil( 11*rand("Uniform") );

			/*pick a random number
			between 1 and 11*/
			k=klist{n}; /*assign k to be the nth multiplier*/

			/* draw the rose r=cos(k * theta) */
			do theta = 0 to 12*constant("pi") by 0.1;
				r = cos(k * theta);      /* generalized rose */
				x = r*cos(theta);        /* convert to Euclidean coords */
				y = r*sin(theta);

				/*move the rose to the right spot*/
				if flower &amp;lt;= 5 then
					do;
						cx=2*flower+1;
						cy=9;
					end;
				else if 6&amp;lt;= flower&amp;lt;=9 then
					do;
						cx=(2*flower-8);
						cy=10.5;
					end;
				else if 10&amp;lt;= flower&amp;lt;=12 then
					do;
						cx=(2*flower-15);
						cy=12;
					end;

				x=x+cx;
				y=y+cy;
				group=flower;
				output;

				/*make the stem*/
				group=-flower;
				x=cx;
				y=cy;
				output;
				x=7;
				y=3;
				output;
			end;
		end;

		/*bow*/
		do theta = constant("pi")*7.5/12 to constant("pi")*28.5/12 by 0.01;
			r = cos(2 * (theta));       /* rose */
			x = r*cos(theta);          /* convert to Euclidean coords */
			y = r*sin(theta);
			group=100;

			if y&amp;lt;abs(x) then
				do;
					x=x+7;
					y=y+3;
					output;
				end;
		end;
	run;

	proc sort data=roses;
		by group;
		title1 "Good luck, @grandpastyle13!" ;
		title2 "(These random polar roses will keep till you propose. ;-)" ;

	proc sgplot data=Roses aspect=1 noautolegend
			noborder nowall;
		styleattrs datacontrastcolors=
			( 
			green green green green
			green green green green
			green green green green
			red  bippk red purple bippk 
			blue purple  bippk red purple  blue red
			crimson 
				) datalinepatterns=(1);
		series x=x y=y /group=group;
		xaxis min=0 max=15 display=none;
		yaxis min=0 max=15 display=none;
		footnote "Best wishes, &amp;amp;from";
		footnote2 " ";
		footnote3 " ";
		footnote4 " ";
		footnote5 " Polar Roses: r = cos(k*theta)";
		footnote6 " Generated with the SAS System 9.4";
	run;
	title;
	footnote;

%mend;

    %makecard(for=@grandpastyle13,from=Your SAS Community Managers);

ods pdf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 11 Dec 2017 16:01:23 GMT</pubDate>
    <dc:creator>BeverlyBrown</dc:creator>
    <dc:date>2017-12-11T16:01:23Z</dc:date>
    <item>
      <title>Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416684#M14294</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not ever used SAS programming (my programming experience includes ladder logic and some BASIC), however, my girlfriend is taking some Biostatistics courses, and uses the program daily. I got the idea of proposing using a graph output from the SAS program, as it would&amp;nbsp;completely be a huge surprise to her. The problem is... I have absolutely no idea of how to go about writing a program that would display that, much less if it's even possible with this program? I'm really hoping that it would be possible, as this would be something I know she would find incredible that I found a way to do it!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, short version of my question - is it possible to have the SAS program display that message somehow? If yes, where would be a good place for me to go to start learning how to make it happen?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Brandon&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 13:56:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416684#M14294</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-28T13:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416691#M14295</link>
      <description>&lt;P&gt;Errm, you get the prize for weirdest question on a programming forum...ever.&amp;nbsp; Yes you can display messages in numerous ways depending on what software from SAS you use, Enterprise Guide can have promts/messages, base sas has the %window or window commands:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a000206734.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/mcrolref/61885/HTML/default/viewer.htm#a000206734.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;For example.&amp;nbsp; You could play some music:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.pharmasug.org/proceedings/2016/TT/PharmaSUG-2016-TT12.pdf" target="_blank"&gt;https://www.pharmasug.org/proceedings/2016/TT/PharmaSUG-2016-TT12.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe even plot out a graph so it looks like a hand and ring in a box&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However they all take a fair bit of knowledge of the software.&amp;nbsp; Hope that helps.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 14:06:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416691#M14295</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-11-28T14:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416692#M14296</link>
      <description>&lt;P&gt;If you haven't already done so, search in this community for subjects including "Fun with SAS ODS Graphics"; you might get some hints. If not sufficient, try to contact the author.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 14:06:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416692#M14296</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-28T14:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416698#M14297</link>
      <description>&lt;P&gt;Hahah! I'm okay with that. I know it's a weird thing to ask and want to do. But that's what's going to make it special.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the information, I appreciate it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 14:17:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416698#M14297</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-28T14:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416699#M14298</link>
      <description>&lt;P&gt;Excellent! Thank you for the information, I appreciate it. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 14:17:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416699#M14298</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-28T14:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416737#M14299</link>
      <description>&lt;P&gt;You can pretty much draw anything in SAS graphics and/or make it animated...so, I think you first should design what you want to do and then ask specific questions. Start by looking at GTL and/or SGPLOT.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can get the free version of SAS by searching SAS UE and that will support those types of features....let us know how it goes and if she says yes &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 15:56:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416737#M14299</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-28T15:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416740#M14300</link>
      <description>&lt;P&gt;Following up on &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;and others, here is an example of drawing and animating a shape.&amp;nbsp; &amp;nbsp;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/10/19/fun-ods-graphics-drawing-rotating-impossible-triangle/&amp;nbsp;" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/10/19/fun-ods-graphics-drawing-rotating-impossible-triangle/&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I found the geometry harder than the programming.&amp;nbsp; YMMV.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 16:02:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416740#M14300</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-11-28T16:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416758#M14302</link>
      <description>&lt;P&gt;Ok...here's two starting pointers that you can try. You can style the text and make it slower or have all the words appear once and can probably add images, ie ring/flowers if desired to the back ground.....like I said, you need to design it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's just the words appearing as a gif. I would suggest saying you have a friend programming in SAS who needs some help with a program. And you can pre-compile it and run it as a macro otherwise as soon as she see's the code the game is up...assuming it's a surprise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data proposal;
input order words $ x y;
cards;
1 Will 100 100
2 You  100 100
3 Marry 100 100
4 Me? 100 100
;;;;



options papersize=('5 in', '3 in') printerpath=gif animation=start 
        animduration=1 animloop=no noanimoverlay nonumber nodate;
ods printer file='C:\_localdata\temp\demo1.gif';
 
ods graphics / width=5in height=3in imagefmt=GIF;

/* Generate the graphs by year and quarter */
proc sgplot data=proposal;
by order;
text x=x y=y text=words;
xaxis values=(0 to 200 by 50) display=none;
yaxis values=(0 to 200 by 50) display=none;
run;


options printerpath=gif animation=stop;
ods printer close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Option 2:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data proposal2;
input order words $ x y;
cards;
1 Will 100 200
2 You  100 150
3 Marry 100 50
4 Me? 100 0
;;;;



options papersize=('5 in', '3 in') printerpath=gif animation=start 
        animduration=1 animloop=no noanimoverlay nonumber nodate;
ods printer file='C:\_localdata\temp\demo2.gif';
 
ods graphics / width=5in height=3in imagefmt=GIF;

/* Generate the graphs by year and quarter */
proc sgplot data=proposal2;
by order;
text x=x y=y text=words;
xaxis values=(0 to 200 by 50) display=none;
yaxis values=(0 to 200 by 50) display=none;
run;


options printerpath=gif animation=stop;
ods printer close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 16:46:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416758#M14302</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-11-28T16:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416769#M14307</link>
      <description>You guys are totally awesome! This is a great starting point. I should be able to figure things out from all of this info. I've got about a month and a half to get it all ready, so it should be fine. And yes, of course it's going to be a surprise. I will keep you posted on her answer, although I'm already sure it's a yes. Thanks so much for the help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; You made my day!&lt;BR /&gt;</description>
      <pubDate>Tue, 28 Nov 2017 17:13:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416769#M14307</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-28T17:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416831#M14312</link>
      <description>&lt;P&gt;This thread totally makes my day! If you video her reaction and she says yes (of COURSE she'll say yes!), post it here so we can celebrate with you.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 19:48:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416831#M14312</guid>
      <dc:creator>BeverlyBrown</dc:creator>
      <dc:date>2017-11-28T19:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416838#M14313</link>
      <description>&lt;P&gt;Just have to say -- I love this discussion!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might also augment with programs from here, furnished by our resident statistician (and love doctor)&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/02/11/binary-heart.html" target="_self"&gt;Binary heart in SAS&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="binaryheart.png" style="width: 160px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16884iA900664FD6A4E1DC/image-size/small?v=v2&amp;amp;px=200" role="button" title="binaryheart.png" alt="binaryheart.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2011/02/14/a-parametric-view-of-love.html" target="_self"&gt;A parametric view of love&lt;/A&gt;&amp;nbsp;(adapt for your own message - note that this particular one requires SAS/IML Studio -- probably not an option for you.&amp;nbsp; But similar programs are out there.)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="heart.png" style="width: 192px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16885iC8E6F0FC7D7AC81E/image-size/small?v=v2&amp;amp;px=200" role="button" title="heart.png" alt="heart.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2015/12/16/polar-rose.html" target="_self"&gt;Lo, how a polar rose e'er blooming&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="polarrose2.png" style="width: 150px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16886i256D1E7EDC3CD166/image-size/small?v=v2&amp;amp;px=200" role="button" title="polarrose2.png" alt="polarrose2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 20:20:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416838#M14313</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-11-28T20:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416905#M14324</link>
      <description>&lt;P&gt;Hear Hear! I’m keen to hear the outcome of this beautiful SASsy love story!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You’re a catch Brandon!&amp;nbsp;&lt;img id="robothappy" class="emoticon emoticon-robothappy" src="https://communities.sas.com/i/smilies/16x16_robot-happy.png" alt="Robot Happy" title="Robot Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 22:33:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/416905#M14324</guid>
      <dc:creator>MichelleHomes</dc:creator>
      <dc:date>2017-11-28T22:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417010#M14325</link>
      <description>&lt;P&gt;This is by far the most exciting thread I've ever seen on the communities &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Go &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/179914"&gt;@grandpastyle13&lt;/a&gt;!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 11:05:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417010#M14325</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-11-29T11:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417075#M14326</link>
      <description>&lt;P&gt;I am awe-struck by all the helpful information and support this has received in just a few hours! What a great community! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am hoping to have some time to get started on this tonight, so I'll see how my first time goes. Haha.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you everyone again, very kind of all of you! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 15:04:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417075#M14326</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-29T15:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417122#M14328</link>
      <description>&lt;P&gt;I'll definitely be following this thread to see how she responds! &lt;img id="heart" class="emoticon emoticon-heart" src="https://communities.sas.com/i/smilies/16x16_heart.png" alt="Heart" title="Heart" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 16:19:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417122#M14328</guid>
      <dc:creator>JulieGreenwood</dc:creator>
      <dc:date>2017-11-29T16:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417129#M14330</link>
      <description>Well, like I had said, it's going to be about a month or so before it happens, so I have some time to work on it. I'm also sure that I'm going to be asking for a good deal of help getting things figured out. But it should end up great. I'm excited about it!&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Nov 2017 16:23:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417129#M14330</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-11-29T16:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417705#M14357</link>
      <description>&lt;P&gt;Interesting thread&amp;nbsp;&lt;img id="smileylol" class="emoticon emoticon-smileylol" src="https://communities.sas.com/i/smilies/16x16_smiley-lol.png" alt="Smiley LOL" title="Smiley LOL" /&gt;&amp;nbsp;&amp;nbsp;&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;&lt;P&gt;Common... find a better way to propose her... &lt;img id="womanhappy" class="emoticon emoticon-womanhappy" src="https://communities.sas.com/i/smilies/16x16_woman-happy.png" alt="Woman Happy" title="Woman Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 10:07:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417705#M14357</guid>
      <dc:creator>shwetaS</dc:creator>
      <dc:date>2017-12-01T10:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417735#M14362</link>
      <description>&lt;P&gt;This has all of the ingredients for a perfect "question pop" -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- it's about her, and what she's into&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- it shows creativity and initiative -- not just a store-bought Hallmark card for any occasion&lt;/P&gt;
&lt;P&gt;&amp;nbsp;- and...you now have hundreds (maybe more) of community members rooting for you.&amp;nbsp; We probably won't (all) expect invitations to the wedding.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 12:24:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417735#M14362</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-12-01T12:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417892#M14376</link>
      <description>&lt;P&gt;Hey Reeza,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I ran both of the programs that you had given as a sample to see what they would look like. Neither of them will actually display as a .gif within the SAS program window. It shows each of the 4 cards individually, from top to bottom, instead of as a .gif. I also get the following error code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter dijitContentPaneSingleChild"&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitAlignCenter dijitContentPaneSingleChild dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane"&gt;&lt;DIV class="tabs dijitBorderContainer dijitContainer dojoDndTarget sasStudioTabsParentContainer dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasStudioTabsTabContainer sasStudioTabsTabContainerVertical sasStudioTabsTop dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer sasStudioTabsTabContainerChild dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dojoDndTarget dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasSuiteTabs dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Insufficient authorization to access /opt/sasinside/SASConfig/Lev1/SASApp/C:\_localdata\temp\demo2.gif.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;Do you have any idea of what would be causing this? I looked it up myself within the forums, and found something about how the shared folder I created when setting up the SAS utility needs to be where the program directory is. I tried changing the directory within the program text to the folder I used to setup the SAS utility, to no avail. It will still display an "Insufficient authorization to access" error.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;So, I'm a bit stuck now.&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 01 Dec 2017 23:34:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417892#M14376</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-12-01T23:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie here! Question about a proposal using SAS! :)</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417893#M14377</link>
      <description>&lt;P&gt;Those were exactly my thoughts when I got the idea to do this! Haha.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We will definitely have to see about the wedding invitations - we had both discussed wanting a small wedding! lol&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Joking aside, I greatly appreciate the positivity and support. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Dec 2017 23:40:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Newbie-here-Question-about-a-proposal-using-SAS/m-p/417893#M14377</guid>
      <dc:creator>grandpastyle13</dc:creator>
      <dc:date>2017-12-01T23:40:01Z</dc:date>
    </item>
  </channel>
</rss>

