<?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/419853#M14467</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alright, so I now have the program and image set to what I had had in mind from the start! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; Hooray!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, I would like to thank each and every person that was involved with this, and has helped me along the way. I know I would not have been able to get this done if it weren't for everyone's help. This is a truly incredible community, with clearly great people in it, and I'm so grateful to have come up with the idea and found this forum! A truly heart-felt thank you to everyone, I greatly appreciate it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, I have one question that came to mind - within the forum, am I able to select more than one post as "Accept as solution"? If I can only select one post as the "solution", then I think the biggest credit needs to go to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16777"&gt;@WarrenKuhfeld&lt;/a&gt; , as he created almost exactly what I had pictured in mind. Thank you again, Warren! Also, I would like to thank &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; for help with the pathing issues I ran into with SAS UE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lastly, it is still going to be a few weeks before the big day actually happens, as I have to wait on her ring to be completed. We are having it custom-made, we picked out the design together, and tweaked some things about it (and I had them add "Leo" diamonds to it &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; ). She knows that it's still in the process, but she doesn't know that I'm going to go get it when it's complete and that will be the day I surprise her with everything. So, I will absolutely keep everyone posted as to how things go!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, here is the image that I used for the final program, I decided to take&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13635"&gt;@Vince_SAS&lt;/a&gt; advice, and have everything obfuscated, even the name of the final .gif output, and the image name. The image name I use within the program is "image1jpg"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="image1jpg.jpg" style="width: 200px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17119i7D279DA97FE689F0/image-size/small?v=v2&amp;amp;px=200" role="button" title="image1jpg.jpg" alt="image1jpg.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the final SAS code that will be used, I love how this works using the hex to hide the message!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods _all_ close;

title;
footnote;

data work.words;
input line $hex40.;
datalines;
 436872697374696E612C206D79206C6F76652C20
 57696C6C20202020202020202020202020202020
 596F752020202020202020202020202020202020
 4D61727279202020202020202020202020202020
 4D653F2020202020202020202020202020202020
;
run;

data work.message(drop=i line inc max);
length draw $ 20;
set words;
x = 5; inc = 2.0; max = 11;
do i = 1 to length(line);
  order + 1; y = max;
  do j = 1 to _n_ - 1;
    set work.words(rename=(line=draw)) point=j; y + -inc; k + 1; output;
  end;
  draw = substr(line, 1, i);
  y = max - _n_ * inc;
  k + 1; output;
end;
call symputx('MAXORDER', order);
run;

data _null_;
set work.message(where=(order=&amp;amp;maxorder)) nobs=n1;
call symputx('MINO', k);
call symputx('MAXO', n1);
stop;
run;   

data work.message(drop=j k); /* Pause */
set work.message end=eof;
output;
if eof then do j = 1 to 5;
  do i = &amp;amp;MINO to &amp;amp;MAXO; 
    set work.message point=i; 
    order + j; 
    output; 
  end;
end;
run;

data work.annoImage;
function  = 'image'; 
height    = 100; 
width     = 100; 
drawspace = 'GraphPercent';
image     = '/folders/myfolders/image1jpg.jpg'; 
layer     = 'back';
run;

options papersize=('10 in', '9 in') printerpath=gif animation=start
        animduration=.3 animloop=1 noanimoverlay nonumber nodate nobyline;

ods printer file='/folders/myfolders/sasdemo1.gif';

ods graphics / width=10in height=9in imagefmt=gif;

proc sgplot data=message nowall noborder noautolegend sganno=annoimage;
  by order;
  text    x=x y=y text=draw / textattrs=(size=38 weight=bold color=white style=italic);
  xaxis values=(0 to 10) min=0 max=10 display=none;
  yaxis values=(0 to 10) min=0 max=10 display=none;
run; quit;

options animation=stop byline;

ods printer close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now it's just a matter of time until I get the call that her ring is complete!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once again, thank you everyone for ALL of the support, insight, and help that I've received here! Truly an awe-inspiring experience! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brandon&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Editor's note: some readers have been curious about the final product of the program.&amp;nbsp; While not an exact replica of the proposal image that this program creates, we've created a generic version of the output that should give you a pretty good idea of how it comes across.&amp;nbsp; Imagine clicking the little "running man" icon and then seeing this pop up!&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="valentine.gif" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/18030iFC0F30FE0D6A0B89/image-size/medium?v=v2&amp;amp;px=400" role="button" title="valentine.gif" alt="valentine.gif" /&gt;&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Jan 2018 18:50:32 GMT</pubDate>
    <dc:creator>grandpastyle13</dc:creator>
    <dc:date>2018-01-22T18:50:32Z</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>

