<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
    <title>Second Life at Case</title>
    <link>http://blog.case.edu/sl/</link>
    <description></description>
    <language>en-us</language>
    <pubDate>Mon, 30 Jun 2008 16:26:15 EST</pubDate>
    <lastBuildDate>Mon, 30 Jun 2008 16:26:15 EST</lastBuildDate>
    <managingEditor>mario.castaneda@case.edu</managingEditor>
    <webMaster>mario.castaneda@case.edu</webMaster>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>Movable Type v3.121</generator>

    
    <item>
      <title>Creating Skins</title>
      <link>http://blog.case.edu/sl/#021410</link>
      <description>Tired with the plain skin editor Second Life lets you modify as default? Then make your own skins as textures...</description>
      <guid>http://blog.case.edu/sl/#021410</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Mon, 30 Jun 2008 16:26:15 EST</pubDate>
      <content:encoded><![CDATA[<p>Tired with the plain skin editor Second Life lets you modify as default? Then make your own skins as textures and slap 'em on your avatar. It's easy and pretty fun. Through some experimentation, this reptile skin was made in photoshop using a free face template found on the Second Life website. You can also change the design of your eyes entirely. The changes don't just stop at the face either; you can modify the skin of your avatar's entire body!</p>

<p><img alt="reptile skin.jpg" src="http://blog.case.edu/sl/2008/06/30/reptile skin.jpg" width="603" height="317" /><br />
</p>]]></content:encoded>
	  <enclosure url="http://blog.case.edu/sl/2008/06/30/reptile skin.jpg" length="38788" type="image/jpeg" />
    </item>

    <item>
      <title>A Greeter for the Library Exhibits</title>
      <link>http://blog.case.edu/sl/objects/index#021402</link>
      <description>Buildings can be rather lonely, and very intimidating when they are large and full of strange, foreign and unexplained objects....</description>
      <guid>http://blog.case.edu/sl/objects/index#021402</guid>
      
        <category domain="http://blog.case.edu/sl/objects/index">Objects</category>
      
        <category domain="http://blog.case.edu/sl/scripting/index">Scripting</category>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Mon, 30 Jun 2008 12:15:01 EST</pubDate>
      <content:encoded><![CDATA[<p>Buildings can be rather lonely, and very intimidating when they are large and full of strange, foreign and unexplained objects. Thanks to the <code>llSensorRepeat()</code> function that comes packaged with Second Life's Linden Scripting Language (LSL) anyone can make a custom greeter. The <a href="http://www.slexchange.com">Second Life Exchange</a> website has several different greeter models, all available for a reasonable price (averaging around 200L depending on how complicated the model is), and all offering slightly different feature sets. However, with a little patience, some scripting skills and a few test subjects, a homemade greeter script is a free and rewarding way to add a little comfort to an otherwise inauspicious parcel of land.</p>

<p>And that's exactly what has been done for the Cuyahoga County Public Library (CCPL) building in <a href="http://slurl.com/secondlife/ClevelandPlus%20II/113/217/23">ClevelandPlus II</a>. The CCPL greeter has different settings for new and returning visitors, and keeps track of some basic statistics. One innovative feature is the greeter's ability to recognize multiple allowed users. This feature is useful for public places where more than one person administrates the land (or when one person makes the object and another needs control, but the first person needs to be able to fix bugs or add features). Another feature is the use of a configuration notecard, which allows for giving clear instructions and for the script to be kept private.</p>

<p>Though the script for the CCPL greeter is homemade, its contents are proprietary and secret. For the sake of education though, the basic code needed to make a greeter script is included below.<br />
<pre><br />
default<br />
{<br />
  state_entry()<br />
  {<br />
    llSensorRepeat("", "", AGENT, 36.0, PI, 5.0);<br />
  }</p>

<p>  sensor(integer detected)<br />
  {<br />
    integer i;<br />
    for(i = 0; i < detected; i++)<br />
    {<br />
       llInstantMessage(llDetectedKey(i), "Welcome! " + llDetectedName(i));<br />
    }<br />
  }<br />
}<br />
</pre></p>

<p>The <code>llSensorRepeat()</code> function is comprised of six arguments, the first two of which identify the name and key of the person/object to look for, and when left blank allow for sensing all objects and avatars. The third argument, however, describes what to look for, in this instance <code>AVATAR</code>. The remaining three arguments describe how the sensing radius, shape and how often to fire the <code>sensor</code> event.</p>

<p>Given the basics for a greeter script, it should be fairly simple to add features and to customize it to fit the needs of a particular space. And if not, the greeters available commercially are very good... who knows, the one currently in use at the CCPL might eventually make its way to SL Exchange.</p>]]></content:encoded>
	  
    </item>

    <item>
      <title>Custom Animations</title>
      <link>http://blog.case.edu/sl/#021336</link>
      <description>Have you ever wondered if you can make your own animations in Second Life? Perhaps you wanted to make a...</description>
      <guid>http://blog.case.edu/sl/#021336</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Wed, 25 Jun 2008 09:56:42 EST</pubDate>
      <content:encoded><![CDATA[<p>Have you ever wondered if you can make your own animations in Second Life?  Perhaps you wanted to make a custom walk, or wanted your avatar to realistically interact with an object you made.  Luckily, there is an open source (free) program called <a href="http://www.qavimator.org/">QAvimator</a> that lets you make your own animations! It was designed specifically for Second Life avatar animations, </p>

<center><a href="http://blog.case.edu/sl/2008/06/25/Qavimator.jpg"><img alt="Qavimator.jpg" src="http://blog.case.edu/sl/2008/06/25/Qavimator-thumb.jpg" width="400" height="354" /></a><br>QAvimator Screenshot</center>

<p>If you've worked with any 3D animation software before, the interface should be self-explanatory. For those new to animation, Torley Linden made a nice tutorial explaining all the basics.</p>

<center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/h_-3c_aC-O4&hl=en&rel=0"></param><embed src="http://www.youtube.com/v/h_-3c_aC-O4&hl=en&rel=0" type="application/x-shockwave-flash" width="425" height="344"></embed></object></center>

<p>I created a dance (the Macarena) using QAvimator, uploaded it, and added it to a poseball. I then made a speaker system to play the Macarena.  It is a very simple demonstration, but it shows the creative potential that this program has.</p>

<center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Rd36xAZD_VU&hl=en&rel=0"></param><embed src="http://www.youtube.com/v/Rd36xAZD_VU&hl=en&rel=0" type="application/x-shockwave-flash" width="425" height="344"></embed></object></center>

<p>We are working with the Cleveland Clinic on a project to help train doctors who will be interacting with patients.  We hope to recreate these meetings in Second Life to help them prepare for the real thing.  In order to do this, we need to create animations that make avatars behave the way real patients do.  For example, a patient with schizophrenia could "exhibit purposeless agitation" (Wikipedia).</p>

<p>QAvimator can be downloaded <a href="http://www.qavimator.org/#download">here</a>.</p>]]></content:encoded>
	  <enclosure url="http://blog.case.edu/sl/2008/06/25/Qavimator-thumb.jpg" length="19131" type="image/jpeg" /><enclosure url="http://blog.case.edu/sl/2008/06/25/Qavimator.jpg" length="67889" type="image/jpeg" />
    </item>

    <item>
      <title>It&apos;s Digital Story Time at Case...</title>
      <link>http://blog.case.edu/sl/events/index#018506</link>
      <description>Fifteen students from Case Western Reserve University will present their digital stories on Friday, November 30th and Tuesday, December 4th...</description>
      <guid>http://blog.case.edu/sl/events/index#018506</guid>
      
        <category domain="http://blog.case.edu/sl/events/index">Events</category>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Fri, 30 Nov 2007 14:00:57 EST</pubDate>
      <content:encoded><![CDATA[<p>Fifteen students from Case Western Reserve University will present their digital stories on Friday, November 30th and Tuesday, December 4th in Second Life on the ClevelandPlus Island. These projects represent a semester-long effort in writing, recording, creating and producing personal digital stories.<br />
The presentations are the culminating experience of a writing intensive seminar entitled “Digital Storytelling: Creating Meaning with Sight, Sound & Language”. Students will be in Second Life alongside their digital stories explaining what they did, how they did it and its educational value.</p>

<p>When: Friday, November 30th 7:30am - 10:00am SLT/PST (<a href="http://www.timeanddate.com/worldclock/fixedtime.html?month=12&day=4&year=2007&hour=11&min=0&sec=0&p1=224">check local time</a>) and 12:00pm - 2:00pm SLT/PST (<a href="http://www.timeanddate.com/worldclock/fixedtime.html?month=12&day=4&year=2007&hour=11&min=0&sec=0&p1=224">check local time</a>) and Tuesday, December 4th 11:00am – 1:00pm SLT/PST (<a href="http://www.timeanddate.com/worldclock/fixedtime.html?month=12&day=4&year=2007&hour=11&min=0&sec=0&p1=224">check local time</a>)</p>

<p>Where: <a href="http://slurl.com/secondlife/ClevelandPlus/121/21/35">ClevelandPlus (121, 21, 35)</a></p>

<p>The digital stories will remain up through December 7, 2007.</p>]]></content:encoded>
	  
    </item>

    <item>
      <title>Case&apos;s Virtual Worlds Lab in Second Life</title>
      <link>http://blog.case.edu/sl/#018303</link>
      <description>&amp;nbsp&amp;nbsp&amp;nbsp In case you didn&apos;t know, Case Western Reserve University created a very accurate replica of the Virtual Worlds Lab...</description>
      <guid>http://blog.case.edu/sl/#018303</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Wed, 14 Nov 2007 11:17:44 EST</pubDate>
      <content:encoded><![CDATA[<p>&nbsp&nbsp&nbsp In case you didn't know, Case Western Reserve University created a very accurate replica of the Virtual Worlds Lab located in the Olin Building...in real life... inside the Kelvin Smith Library on our Second Life campus.  The purpose of this recreation is to help prospective students get a better sense of what CWRU might have to offer them without actually visiting campus.<br />
Before reading the interview you might want to listen to Dr. Marc Buchner, Director of the Virtual World Lab discuss the reasons for the build.</p>

<p><br />
<embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docid=-5487433451478899148&hl=en" flashvars=""> </embed></p>

<p><br />
<br><br />
Here are a few images from within Second Life<br />
<a href="https://filer.case.edu/mxs312/virtualworldslab_003.bmp"><br />
<img height=190 width=320 src="https://filer.case.edu/mxs312/virtualworldslab_003.bmp"><br />
</a><br><br />
Come see it in Second Life at <a href="http://slurl.com/secondlife/ClevelandPlus/181/150/37">http://slurl.com/secondlife/ClevelandPlus/181/150/37</a></p>

<p>&nbsp&nbsp&nbsp The following interview was conducted by Mir Benelli while the build was taking place.  Two students, one from Case and the other from Kent did all the modeling, building and scripting. <br />
  </p>

<p>- - - - - - - - - - - - - - - - - - - </p>

<p>Today I had the pleasure of getting the chance to interview two of the programmers working on ClevelandPlus. I got a tour of the computer lab facilities (on Second Life of course!) and Ian Dash (Hye Binder) and Logan Rogers (Newmanizzl Voom) had all the answers, even to things I hadn't thought to ask.</p>

<p>So first up was Logan, who is the modeler. Which means he made all the prims and such that you can find in the Second Life Computer Lab. According to Logan<br />
<strong><br />
Newmanizzl Voom</strong>: If you don't already know, I'm the modeler, he is more of the brains behind the operation.(referring to Hye Binder)<br />
<strong>Mir Benelli:</strong> So you're the one making all the prims and such? Impressive.<br />
<strong>Mir Benelli:</strong> I've been up here before and seen all the computers, but what's with the little planes?<br />
<strong>Newmanizzl Voom:</strong> Haha, well, this isn't where they go, but they are for the last room on your right in the hallway, they are going to help represent the Immersion Room, which has a 3d projector.<br />
<strong>Mir Benelli:</strong> Huh. Interesting. So they'll be what's being projected?<br />
Or will you actually make a 3D projector in here?<br />
<strong>Newmanizzl Voom:</strong> They will represent the projection, by making them somewhat transparent it will give relatively the same effect as a 3d projector. <br />
<strong>Mir Benelli:</strong> Smart. So what are the other rooms along here?<br />
<strong>Newmanizzl Voom:</strong> This is the music room. It's also not finished, and missing some prims, but it represents the room in the lab where students can come and use music equipment along with technology to produce...well...music. <br />
<strong>Mir Benelli:</strong> Haha. But in here you can only play pre-programmed music I assume?<br />
<strong>Newmanizzl Voom:</strong> Sadly, yes.<br />
<strong>Mir Benelli:</strong> That's too bad.<br />
<strong>Mir Benelli:</strong> So do all of the rooms in here actually exist in the Real KSL as well?<br />
<strong>Newmanizzl Voom:</strong> Well, no. The lab is actually in another building. (Olin) But they have chosen to place it here in SL.<br />
<strong>Mir Benelli:</strong> Ah. Haha. Where is it, in Real Life, and if students came here is there a notecard that tells them where or something?<br />
<strong>Newmanizzl Voom:</strong> Yes, there will be, we haven't completed the welcome station yet. But it will give a lot of information about the Virtual Worlds Lab and where it is located in real life.<br />
<strong>Mir Benelli:</strong> Awesome. =)<br />
<strong>Newmanizzl Voom:</strong> The way we are doing the tour is with this craft....<br />
<strong>Newmanizzl Voom:</strong> Visitors are going to be able to board this, and the monitor by the handlebars there will give them a visual and audio guide, through the voice of Professor Buchner. <br />
<strong>Mir Benelli:</strong> Wow. That's impressive. Do you have it up and running or is it just a prototype?</p>]]></content:encoded>
	  
    </item>

    <item>
      <title>Showing off our Showcase</title>
      <link>http://blog.case.edu/sl/simulcast/index#018155</link>
      <description>For those around the world who did not get to attend Case’s Faculty Technology Showcase in person in the Thwing...</description>
      <guid>http://blog.case.edu/sl/simulcast/index#018155</guid>
      
        <category domain="http://blog.case.edu/sl/simulcast/index">Simulcast</category>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Tue, 06 Nov 2007 16:03:56 EST</pubDate>
      <content:encoded><![CDATA[<p>For those around the world who did not get to attend Case’s Faculty Technology Showcase in person in the Thwing Ballroom last Tuesday we held the Showcase in Second Life.  NMC kindly promoted the event for us.  We were pleased and to be honest a little surprised at how many avatars were able to join us in ClevelandPlus.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_cICJV8o0pHY/RzDDyU2768I/AAAAAAAAAFA/W0FOKvBMyKE/s1600-h/ftsimage1.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_cICJV8o0pHY/RzDDyU2768I/AAAAAAAAAFA/W0FOKvBMyKE/s400/ftsimage1.jpg" alt="" id="BLOGGER_PHOTO_ID_5129815244934998978" border="0" /></a></p>

<p>Susanne Patrono ( Sue Shick’s avatar) reports that she spoke with many avatars from across the country… mostly from higher ed institutes, although some of the avatars appeared to have stumbled upon the event becuase we opened the island for “Public Access” during the Showcase.<br />
We do not have Thwing Center built out on ClevelandPlus, but we do have Adelbert Hall.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_cICJV8o0pHY/RzDVSk276_I/AAAAAAAAAFY/ou63Ucs2CVA/s1600-h/adelbert.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_cICJV8o0pHY/RzDVSk276_I/AAAAAAAAAFY/ou63Ucs2CVA/s400/adelbert.jpg" alt="" id="BLOGGER_PHOTO_ID_5129834490683452402" border="0" /></a><br />
On the second floor of Adelbert(SL) is a beautiful, large area created for events like these.  So we recreated the layout from Thwing Ballroom on the second floor of Adelbert.  For me the most interesting part of the event in Second Life was the simulcast of the faculty presentations and of course the Keynote by Dr. Lev Gonick.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_cICJV8o0pHY/RzDU2k276-I/AAAAAAAAAFQ/3L_MHNfryTs/s1600-h/ftsimage2.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_cICJV8o0pHY/RzDU2k276-I/AAAAAAAAAFQ/3L_MHNfryTs/s400/ftsimage2.jpg" alt="" id="BLOGGER_PHOTO_ID_5129834009647115234" border="0" /></a></p>

<p>At some points during the day we even had more avatars in second life watching the presentation then we did in real life.  The speakers were even able to take questions from the avatar attendees.<br />
<a href="http://blog.case.edu/sl/2007/11/09/lev_keynote_machinima_clip.mov">CLick here for video clip</a><br />
We learned a lot about hosting an event like this... in real life as well as Second Life and want to make the Faculty Technology Showcase an annual event.  Next year we want to have faculty participants come in to Second Life so they can discuss their posters and presentations with avatar attendees.</p>]]></content:encoded>
	  <enclosure url="http://blog.case.edu/sl/2007/11/09/lev_keynote_machinima_clip.mov" length="38348925" type="video/quicktime" /><enclosure url="http://bp2.blogger.com/_cICJV8o0pHY/RzDDyU2768I/AAAAAAAAAFA/W0FOKvBMyKE/s400/ftsimage1.jpg" length="33887" type="image/jpeg" /><enclosure url="http://bp3.blogger.com/_cICJV8o0pHY/RzDU2k276-I/AAAAAAAAAFQ/3L_MHNfryTs/s400/ftsimage2.jpg" length="30962" type="image/jpeg" /><enclosure url="http://bp3.blogger.com/_cICJV8o0pHY/RzDVSk276_I/AAAAAAAAAFY/ou63Ucs2CVA/s400/adelbert.jpg" length="31093" type="image/jpeg" />
    </item>

    <item>
      <title>Pardon Our Dust...</title>
      <link>http://blog.case.edu/sl/#017893</link>
      <description>We’re expanding! Things are hopping on ClevelandPlus. With the addition of two more full islands and 4 voids we have...</description>
      <guid>http://blog.case.edu/sl/#017893</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Thu, 18 Oct 2007 10:45:43 EST</pubDate>
      <content:encoded><![CDATA[<p>We’re expanding! Things are hopping on ClevelandPlus. With the addition of two more full islands and 4 voids we have been able to relocate the Rock and Roll Hall of Fame and the Cleveland Clinic Heart Center. This leaves us with some extra wiggle room we desperately needed on our original island. When you visit us you will also see some new builds that are very impressive; the Terminal Tower and Public Square, Euclid Avenue, Cleveland Trust, a Cuyahoga County Public Library, the Everett Mansion, Western Reserve Historical Society, the Botanical Gardens, one of the Cleveland Municipal Public Schools (John Hay High School) and about 5 of the Cultural Gardens. </p>

<p>It has been fascinating to watch the builders from the New Media Consortium do their thing. They are able to create incredible 3D representations just from “2D” photographs. They also make use of Google Earth images where possible. </p>

<p>Below are some snapshots we took to document the building process </p>

<p><img alt="CPIII.jpg" src="http://blog.case.edu/sl/2007/10/18/CPIII.jpg" width="500" height="403" /></p>

<p>Aerial View of ClevelandPlus III... the new home of the Rock Hall<br />
As you can see the Terminal Tower build is awesome!</p>

<p><img alt="CPII_layout.jpg" src="http://blog.case.edu/sl/2007/10/18/CPII_layout.jpg" width="500" height="294" /></p>

<p>Early picture of ClevelandPlus II while the layout map was still on the ground.  It reminds me of a Monopoly Board.</p>

<p><img alt="viewfromKSL.jpg" src="http://blog.case.edu/sl/2007/10/18/viewfromKSL.jpg" width="500" height="389" /></p>

<p>Here is a view of ClevelandPlus II from the top of the Kelvin Smith Library on ClevelandPlus I.  You can see the Terminal Tower on the horizon.</p>

<p><img alt="viewfromtt.jpg" src="http://blog.case.edu/sl/2007/10/18/viewfromtt.jpg" width="500" height="378" /></p>

<p>Here we are looking back on ClevelandPlus II from the Terminal Tower.  In the distance you can see some of the buildings on ClevelandPlus I.</p>

<p><br />
Next… The Case Western Reserve University Faculty Technology Showcase in Second Life….</p>]]></content:encoded>
	  <enclosure url="http://blog.case.edu/sl/2007/10/18/CPIII.jpg" length="118760" type="image/jpeg" /><enclosure url="http://blog.case.edu/sl/2007/10/18/CPII_layout.jpg" length="69657" type="image/jpeg" /><enclosure url="http://blog.case.edu/sl/2007/10/18/viewfromKSL.jpg" length="110876" type="image/jpeg" /><enclosure url="http://blog.case.edu/sl/2007/10/18/viewfromtt.jpg" length="125398" type="image/jpeg" />
    </item>

    <item>
      <title>New Avatars Seen on Campus</title>
      <link>http://blog.case.edu/sl/#017857</link>
      <description>by Michael Slattery (SL Avatar CWRU Tomorrow) note: names used in article are SL Avatar names &amp;nbsp&amp;nbsp&amp;nbsp A lot of...</description>
      <guid>http://blog.case.edu/sl/#017857</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Mon, 15 Oct 2007 20:19:29 EST</pubDate>
      <content:encoded><![CDATA[<p><strong>by Michael Slattery</strong> (SL Avatar CWRU Tomorrow)<br />
note: names used in article are SL Avatar names</p>

<p>&nbsp&nbsp&nbsp A lot of new faces have been seen lately working on Case's very own Second Life experience.  Although the time spent on the project has been relatively short for everybody, there have been a lot of good things going on.</p>

<p>&nbsp&nbsp&nbsp Paul Carpool has brought in a new aspect of mapping texture with the use of Blender Importer.  The packages he used along with Second Life can be found<a href="http://sourceforge.net/projects/primdotblender/ ">here</a>.  <a href="http://groups.google.com/group/case-sl/web/pauls-work">Detailed instructions on his work</a> </p>

<p><br />
&nbsp&nbsp&nbsp CraigR Becker's main focus has been on a working scoreboard for a soccer field and scripting and building new items for the upcoming Halloween Party(November 2nd 9:00 - 11:00 pm).  The scoreboard changes on the fly as a goal is scored for either team and counts up to 9. </p>

<center><a href="http://filer.case.edu/mxs312/scoreboard.bmp"><img src="http://filer.case.edu/mxs312/scoreboard.bmp" width="500" height="294"></a></center>

<p>&nbsp&nbsp&nbsp He has also been busy working on Halloween costumes.  He created this "candle" lighting effect for the inside of a carved pumpkin.</p>

<center><a href="http://filer.case.edu/mxs312/scoreboard.bmp"><img src="http://filer.case.edu/mxs312/pumpkin.bmp" width="500" height="294"></a></center>

<p>&nbsp&nbsp&nbsp Ghoti Stenvaag's focus has also been on creating Halloween costumes.  With the use of invisiprims, he was able to manipulate the physical appearance of an avatar by "hiding" normal prims with the invisiprims.</p>

<p><br />
<center><a href="http://filer.case.edu/mxs312/invisiprims_high.jpg"><img src="http://filer.case.edu/mxs312/invisiprims.jpg"</a></center></p>

<p>&nbsp&nbsp&nbsp Fraiser Cale is currently in the progress of implementing a lab for Chem 113 students which could be taken through Second Life.  Actual lab instructions that will be seen in a thinkbook in SL will be up once they are approved.</p>

<p>&nbsp&nbsp&nbsp Of course Kazarko Kasei is busy as well.  She is spending time making a prim cape which will flow fluidly with movement.  An inventory script has also been created which is much easier to newcomers in SL.  In this script, when the object of focus is touched, all of the contents will be moved automatically into the user's inventory.</p>

<p>Come back soon to learn more about the exciting things being accomplished!</p>

<p>-Case Second Life Team</p>]]></content:encoded>
	  <enclosure url="http://filer.case.edu/mxs312/invisiprims.jpg" length="60041" type="image/jpeg" /><enclosure url="http://filer.case.edu/mxs312/invisiprims_high.jpg" length="130352" type="image/jpeg" />
    </item>

    <item>
      <title>Creating your own Clothes</title>
      <link>http://blog.case.edu/sl/#017816</link>
      <description>by Mir Bear-Johnson (SL Avatar Mir Benelli) &apos;m excited. I made my first shirt in SL today. Well, not my...</description>
      <guid>http://blog.case.edu/sl/#017816</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Fri, 12 Oct 2007 14:22:51 EST</pubDate>
      <content:encoded><![CDATA[<p><strong>by Mir Bear-Johnson (SL Avatar Mir Benelli)</strong><br />
'm excited. I made my first shirt in SL today. Well, not my first<br />
shirt because I've been able to do that for a while, but my first<br />
shirt with invisible spots and such. It's nothing fancy but man am I<br />
proud of it. (Image) It took me a while to find an explanation on how<br />
to do the invisible thing that made sense. (Mostly because I'm running<br />
Photoshop CS2 and apparently the instructions for that are different<br />
then any of the other photoshops. Who knew.)</p>

<p>Anyways, making shirts themselves isn't hard. I just hopped over to<br />
the Second Life Wiki (<a href="https://wiki.secondlife.com/">https://wiki.secondlife.com</a>) and stumbled across<br />
this gem, <a href="http://nicolaescher.com/tutorials/clothing-in-second-life.php">http://nicolaescher.com/tutorials/clothing-in-second-life.php</a>,<br />
which gave me the bases I needed to be able to orient words and such<br />
on my clothing.</p>

<p><br />
Then going to another article,<br />
<a href="http://nicolaescher.com/tutorials/creating-your-first-shirt.php">http://nicolaescher.com/tutorials/creating-your-first-shirt.php</a>,  from the<br />
same person I made my first shirt!<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cICJV8o0pHY/Rw--109VKgI/AAAAAAAAAEI/qVk1zt0in0Y/s1600-h/Simple+shirt.jpg"><img style="cursor: pointer; width: 267px; height: 209px;" src="http://bp1.blogger.com/_cICJV8o0pHY/Rw--109VKgI/AAAAAAAAAEI/qVk1zt0in0Y/s400/Simple+shirt.jpg" alt="" id="BLOGGER_PHOTO_ID_5120521133301770754" border="0" /></a><br />
Clearly it wasn't much more interesting then what I could've made<br />
without paying the 10$L to uploadthe texture.</p>

<p>I was honestly a little bummed -- then I started trying to play around<br />
with alpha channels. Those are the things that make it possible to<br />
have invisibility and transparency in textures. I tried using the same<br />
person's tutorials as helped me figure out the shirt,<br />
<a href="http://nicolaescher.com/tutorials/alpha-channel-primer.php">http://nicolaescher.com/tutorials/alpha-channel-primer.php</a>, but they<br />
just didn't work for me. So I ended up finding<br />
<a href="http://www.sltutorials.net/magazine/%20">http://www.sltutorials.net/magazine/ </a><br />
and this Quicktime video<br />
<a href="http://www.robinwood.com/Catalog/Technical/SL-Tuts/SLPages/TranspSL.html">http://www.robinwood.com/Catalog/Technical/SL-Tuts/SLPages/TranspSL.html</a>.<br />
And from there I was able to figure it out.<br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_f09VKiI/AAAAAAAAAEY/GLwLBHhB86g/s1600-h/Star+Shirt1.jpg"><img style="cursor: pointer; width: 252px; height: 197px;" src="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_f09VKiI/AAAAAAAAAEY/GLwLBHhB86g/s400/Star+Shirt1.jpg" alt="" id="BLOGGER_PHOTO_ID_5120521854856276514" border="0" /></a><br />
<span style="font-weight: bold;">Front</p>

<p></span><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_z09VKkI/AAAAAAAAAEo/QGZrD9tNv-M/s1600-h/Star+Shirt+2.jpg"><img style="cursor: pointer; width: 257px; height: 201px;" src="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_z09VKkI/AAAAAAAAAEo/QGZrD9tNv-M/s400/Star+Shirt+2.jpg" alt="" id="BLOGGER_PHOTO_ID_5120522198453660226" border="0" /></a><br />
<span style="font-weight: bold;">Back</p>

<p></span>I'm going to need to make more Linden dollars camping to support this<br />
new habit of mine!</p>

<p>But still, I'm mad proud of my shirt.</p>]]></content:encoded>
	  <enclosure url="http://bp1.blogger.com/_cICJV8o0pHY/Rw--109VKgI/AAAAAAAAAEI/qVk1zt0in0Y/s400/Simple+shirt.jpg" length="32636" type="image/jpeg" /><enclosure url="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_f09VKiI/AAAAAAAAAEY/GLwLBHhB86g/s400/Star+Shirt1.jpg" length="34137" type="image/jpeg" /><enclosure url="http://bp1.blogger.com/_cICJV8o0pHY/Rw-_z09VKkI/AAAAAAAAAEo/QGZrD9tNv-M/s400/Star+Shirt+2.jpg" length="29669" type="image/jpeg" />
    </item>

    <item>
      <title>Shopping and Freebies!!!!!</title>
      <link>http://blog.case.edu/sl/#017533</link>
      <description>by Mir Bear-Johnson (SL Avatar Mir Benelli) So, I think I may have developed a bit of a shopping addiction...</description>
      <guid>http://blog.case.edu/sl/#017533</guid>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Tue, 25 Sep 2007 10:45:53 EST</pubDate>
      <content:encoded><![CDATA[<p><strong>by Mir Bear-Johnson (SL Avatar Mir Benelli)</strong><br />
So, I think I may have developed a bit of a shopping addiction in SL.<br />
I suppose I could have worse addictions, but still. I'm pretty sure<br />
the fact that there are so many darn freebie shops around just makes<br />
my habit worse. Because if you're buying outfits for free or for only<br />
1$L it really doesn't seem like much, at least, until you open up your<br />
inventory and wonder what the hell you could possibly need that much<br />
stuff for. (look for blog entry to come on arranging your inventory)</p>

<p>But I guess all of my obsessive type shopping does have a purpose. I<br />
can give useful advice and suggestions on where to shop now.</p>

<p>And given my new shopping hobby I suppose it's understandable how much<br />
I avoid spending my $L. Which has a lot to do with the fact that I<br />
don't actually want to spend any real money in SL if I can help it.<br />
Not because I don't think it's safe or something -- It's way too<br />
widespread not to be safe. But mostly because I'm a working girl and<br />
prefer to spend my money in the real world, not the virtual one.</p>

<p>Sorry for the baby rant. Anyways, where was I? Ah right, me being<br />
unwilling to spend very much for things. Before I knew better, of<br />
course, I spent too much on too little. But I've learned since then.</p>

<p>So one thing to keep in mind is, if you're new to SL, there are a lot<br />
of places that will offer really nice deals to people 4 weeks 'old' or<br />
younger so get on that!</p>

<p>GuRLyWood 111, 113, 21 (PG) - Month old discount<br />
ETD Isle 251, 251, 26 (Mature) - 2Month Old discount<br />
Nantli Xolal 196, 142, 22 (Mature) - Month old Discount<br />
Angel Haven 194, 234, 22 (PG) - 2Month Old Discount<br />
Pazazz 89, 90, 22 (PG) - Month Old Discount</p>

<p>Also, there are a ton of nice people who offer free stuff! Yay! Free<br />
stuff! Some of my favorites are</p>

<p>Freebie Jeebies in Boom County 81, 74, 23 (Mature)<br />
Longbranch Freebies in Badly Moor 37, 109, 55 (Mature)<br />
Freebie Freebie Freebie Freebie in Mount Curl 118, 245, 104 (PG)<br />
Odds&amp;Ends in Wagaland 115, 74, 29 (Mature)<br />
No Covenant in Nedben 218, 16, 99 (PG)<br />
Freebie in Bunyip 47, 170, 78. (PG)</p>

<p>Right. Well I'll probably add more to this later, but for now...I'm off to shop!</p>

<p>If you still feel a little uneasy about the whole thing then watch this YouTube video...</p>

<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/gT7IxHc-BOQ"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gT7IxHc-BOQ" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br />
</p>]]></content:encoded>
	  
    </item>

    <item>
      <title>Changing Appearance</title>
      <link>http://blog.case.edu/sl/appearance/index#017309</link>
      <description>by Mir Bear-Johnson (SL Avatar Mir Benelli) I&apos;ve noticed a lot of people in SL seem to keep their look...</description>
      <guid>http://blog.case.edu/sl/appearance/index#017309</guid>
      
        <category domain="http://blog.case.edu/sl/appearance/index">Appearance</category>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Tue, 11 Sep 2007 21:19:24 EST</pubDate>
      <content:encoded><![CDATA[<p>by Mir Bear-Johnson (SL Avatar Mir Benelli)</p>

<p>I've noticed a lot of people in SL seem to keep their look static.<br />
Which I don't understand at all. I mean, I suppose it's all personal<br />
opinion and so on and so forth, but I think changing how I look fairly<br />
often is just fun. My other concern is that people might be afraid<br />
that if they change how they look they'll mess something up. You can<br />
insure this won't happen fairly easily, creating an outfit out of<br />
everything you're wearing makes it possible to always go back. My last<br />
concern is that maybe people just don't know how to change their<br />
appearance, aren't comfortable with it. So I've set up a quick little<br />
guide to it. Hope it makes sense!</p>

<p><span style="font-weight: bold;">Appearance:</span><br />
-One main thing to remember is that your avatar can be whatever you<br />
want it to be -- it's a representation of you! So have fun with it!<br />
-To change your appearance you can either right click your avatar and<br />
select "Appearance" from the choice wheel, or go to edit at the top of<br />
the screen then down to appearance. Your avatar will stand up and spin<br />
around and the menu to change your appearance will appear.<br />
-The menu has side headings such as: Shape, Skin, Hair, Eyes, Shirt,<br />
Pants, Shoes, Socks, Jacket, Gloves, Undershirt, Underpants, Skirt.<br />
The first three of these have their own subheadings that will appear<br />
to the right of them but still to the left hand side of the window.<br />
-In each section you are given a wide variety of changes you can make.<br />
For example, if you go into Shape, then Eyes, you can change your eye<br />
size, the size of the eye opening, your eye spacing, you can make the<br />
outer and inner corners of your eye go up or down, you can change the<br />
depth of your eye, the creasing and bagging of your eye, you can make<br />
your eyelids puffy or not, change the length of your eyelashes and<br />
make one eye 'pop'.</p>

<p><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-110104779097110135&hl=en" flashvars=""> </embed></p>

<p>-Also, you can randomize your appearance from any of the body part<br />
selections-- which rarely ends well but who knows, you might get<br />
lucky. Also you can change yourself from male to female with the click<br />
of a button in your shape selection.<br />
-When you leave your appearance you will be given the chance to either<br />
cancel all changes or save them -- if you like the changes you made,<br />
save them, if you have some issue with it, cancel it and start over.<br />
-The huge number of things you can change -- and how you can change<br />
them -- is fairly overwhelming at first, but you'll get the hang of it<br />
pretty quickly.<br />
-And don't worry about changing your avatar more then once -- part of<br />
the fun of SL is constantly editing how other people see you.</p>

<p><span style="font-weight: bold;">Clothes:</span><br />
-You can also edit your clothes in the appearance menu, make them<br />
longer, shorter, looser, tighter -- as long as the clothes you are<br />
wearing are modifiable. If they have (no mod) by name in your<br />
inventory then you can't do anything with them.<br />
-If the item is modifiable, in addition to changing how it hangs or<br />
its length you can tint it.<br />
-Also, you can make your own clothes. They'll probably be less complex<br />
then some of the one you can buy, but you can give them texture and<br />
color and shape, just like you would in editing your bought clothes.<br />
-You can also make your own clothes in PhotoShop, though this can be<br />
tricky at first and each item costs 10$L to upload.</p>

<p><span style="font-weight: bold;">Prims:</span><br />
-In addition to clothing items, you might find yourself with a prim<br />
attached at some point or another.<br />
-Prim stands for primitive and these are items that you attach to your<br />
person, they may have the appearance of hair, a skirt, shoes, jewelry<br />
or any number of things. Prims allow more details and texture to be<br />
added to an item.<br />
-As long as your prim isn't (no mod) you can change its color, or the<br />
color of just parts of it. You do this by right clicking the prim in<br />
question, choosing edit from the wheel menu then choosing "More"<br />
From there go to "Texture" If you want to change the color of the<br />
entire object leave the whole thing selected, if you'd rather just<br />
change sections go back to the top above "Less" now, and check "Edit<br />
Linked Parts" Once you do that you can separately select parts of the<br />
prim and edit their color.</p>

<p><br />
As for that 'making of outfit' thing I mentioned earlier, here's a bit<br />
about that: If you have found a combination you particularly like you<br />
should go to edit appearance while wearing it and click 'make outfit'.<br />
From there you can choose what pieces you want to be an outfit. You<br />
will also be able to name the outfit, and there's an option for<br />
renaming all of the items in the outfit after the name of the outfit.<br />
This is not suggested since it can make it harder to look for things.</p>

<p><br />
There. I hope that all makes sense. And really people, don't be afraid<br />
of change, it's good for you!</p>]]></content:encoded>
	  
    </item>

    <item>
      <title>What we did over your summer vacation!</title>
      <link>http://blog.case.edu/sl/meetings/index#017235</link>
      <description>We&apos;ve been busy! After the whirl of activity surrounding the undergraduate recruitment effort I went out and googled CWRU in...</description>
      <guid>http://blog.case.edu/sl/meetings/index#017235</guid>
      
        <category domain="http://blog.case.edu/sl/events/index">Events</category>
      
        <category domain="http://blog.case.edu/sl/simulcast/index">Simulcast</category>
      
        <category domain="http://blog.case.edu/sl/meetings/index">meetings</category>
      
      <category domain="http://www.case.edu">case</category>
      <category domain="http://www.case.edu">cwru</category>
      <category domain="http://www.case.edu">Case Western</category>
      <category domain="http://www.case.edu">Case Western Reserve University</category>
	  <pubDate>Thu, 06 Sep 2007 17:38:39 EST</pubDate>
      <content:encoded><![CDATA[<p>We've been busy!<br />
After the whirl of activity surrounding the undergraduate recruitment effort I went out and googled CWRU in Second Life and found lots of buzz out there, including coverage in</p>

<div style="text-align: left;"><ol><li><a href="http://chronicle.com/weekly/v53/i37/37a02901.htm">The Chronicle of Higher Education</a> (<a href="http://chronicle.com/media/video/v53/i37/secondlife/">video here</a>), </li><li>Various blogs (<a href="http://www.storyofmysecondlife.com/?p=179"> The Story of My “Second Life”</a>, <span style="font-size:100%;"><a href="http://armourpr.wordpress.com/">Observations of Public Relations</a></span> and <a href="http://blogs.targetx.com/targetx/theexperienceevangelist/?p=44">The Experience Evangelist)</a></li><li>and of course our own <a href="http://blog.case.edu/casedaily/2007/04/20/casedaily">Case Daily</a>.</li></ol></div>I was really interested in the blogs and saw that the articles stimulated quite a bit of discussion.

<p>One of the concerns mentioned in a blog response was that there didn't seem to be anything to do once you got to the onecleveland island.<br />
All I can say is, "You haven't seen us lately!".</p>

<p><span style="font-weight: bold;">April 14: <span style="color: rgb(255, 0, 0);">Red{an orchestra} <span style="color: rgb(0, 0, 0);">Simulcast in Second Life</p>

<p></span></span></span><span style="color: rgb(255, 0, 0);"><span style="color: rgb(0, 0, 0);">Let's make history....<br />
</span></span>The very first American live digital-simulcast of a classical orchestra in Second Life. <a href="http://www.redanorchestra.org/">Red {an orchestra}</a> along with a very talented group of volunteers from Case Western Reserve University, Cleveland State University, OneCommunity and the New Media Consortium (Austin, Texas) made history on that Saturday night.<br />
Experiencing the concert in Second Life was awe inspiring and exhilarating... what a way to participate in a classical music concert. The weather was perfect, the stars were shining and a full moon was visible on the horizon.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cICJV8o0pHY/RsyZNN-7hEI/AAAAAAAAACQ/G8E-u0D1Ukg/s1600-h/red+concert2.jpg"><img id="BLOGGER_PHOTO_ID_5101620930274886722" style="cursor: pointer;" alt="" src="http://bp1.blogger.com/_cICJV8o0pHY/RsyZNN-7hEI/AAAAAAAAACQ/G8E-u0D1Ukg/s400/red+concert2.jpg" border="0" /></a></p>

<p>Before the concert we gathered in the martini bar under a large flowing tent for drinks and hors d'oeuvres. As the concert was about to begin we wandered over to our seats in the outdoor Amphitheater in front of the Kelvin Smith Library.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cICJV8o0pHY/RsyZa9-7hFI/AAAAAAAAACY/nIKahoWmJ5k/s1600-h/red+concert.jpg"><img id="BLOGGER_PHOTO_ID_5101621166498088018" style="cursor: pointer;" alt="" src="http://bp0.blogger.com/_cICJV8o0pHY/RsyZa9-7hFI/AAAAAAAAACY/nIKahoWmJ5k/s400/red+concert.jpg" border="0" /></a></p>

<p>The amphitheater was surrounded on all sides by 6 large screens. We could see and hear the orchestra tuning their instruments. The audience in Second Life was not disappointed. The live stream was exceptional.</p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cICJV8o0pHY/RsyZt9-7hGI/AAAAAAAAACg/W6V7CfAvbIw/s1600-h/red+artistic+angle.jpg"><img id="BLOGGER_PHOTO_ID_5101621492915602530" style="cursor: pointer;" alt="" src="http://bp0.blogger.com/_cICJV8o0pHY/RsyZt9-7hGI/AAAAAAAAACg/W6V7CfAvbIw/s400/red+artistic+angle.jpg" border="0" /></a></p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cICJV8o0pHY/RsyZ69-7hHI/AAAAAAAAACo/kn7QOUprbRo/s1600-h/red+concert+toy+piano.jpg"><img id="BLOGGER_PHOTO_ID_5101621716253901938" style="cursor: pointer;" alt="" src="http://bp0.blogger.com/_cICJV8o0pHY/RsyZ69-7hHI/AAAAAAAAACo/kn7QOUprbRo/s400/red+concert+toy+piano.jpg" border="0" /></a></p>

<p>The constantly changing camera angles provided by 10 cameras and the superb audio quality from 22 audio channels presennted a feast for the eyes and ears.<br />
The pictures I included can't do the concert justice. You just had to be there.</p>

<p><br />
For a behind the scenes look at the production crew take a look at this <a href="http://www.brightcove.com/title.jsp?title=769701032&channel=140825624">video</a>.</p>

<p><span style="font-weight: bold;">August 3rd: Cleveland IBMer Spirit Group Meeting</p>

<p></span><span style="font-size:100%;">ClevelandPlus hosted a 2.5 hour in-world meeting for the Cleveland IBM Spirit Community. The agenda was jam packed with 4 speakers in 3 different locations. As guest avatars arrived at the SPIRIT welcome tent, they were offered meeting souvenirs and virtual refreshments. They also had an opportunity to practice animated gestures and enter a raffle for real life prizes.</span><br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cICJV8o0pHY/Rtygz9-7hJI/AAAAAAAAAC4/W8SRCJvmmC0/s1600-h/ibm1.jpg"></a></p>

<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_cICJV8o0pHY/Rt10Dd-7hQI/AAAAAAAAADw/vtscPJTEfog/s1600-h/ibm+refreshments.jpg"><img style="cursor: pointer;" src="http://bp3.blogger.com/_cICJV8o0pHY/Rt10Dd-7hQI/AAAAAAAAADw/vtscPJTEfog/s400/ibm+refreshments.jpg" alt="" id="BLOGGER_PHOTO_ID_5106365155445015810" border="0" /></a><br />
<span style="font-size:100%;"></span><br />
<span style="font-size:100%;">The meeting’s main event took place at the outdoor amphitheater on ClevelandPlus where Lev Book (avatar of Dr. Lev Gonick, VP, Information Technology, CWRU and Ilike Mayo(IBM’s Dave Liederbach's avatar) gave engaging presentations using streaming media and PowerPoint slides.</span><br />
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_cICJV8o0pHY/Rt10Dt-7hRI/AAAAAAAAAD4/7l79paWSpG8/s1600-h/ibmaniata.jpg"><img style="cursor: pointer;" src="http://bp0.blogger.com/_cICJV8o0pHY/Rt10Dt-7hRI/AAAAAAAAAD4/7l79paWSpG8/s400/ibmaniata.jpg" alt="" id="BLOGGER_PHOTO_ID_5106365159739983122" border="0" /></a><span style="font-size:100%;"></p>

<p>To heighten the virtual experience, the avatar attendees were teleported, in a matter of seconds, to two breakout sessions -- one in the Cleveland Clinic Heart Center operating room given by Docmom Marsala, avatar of Dr. Anita D. Misra-Hebert, M.D., FACP, Cleveland Clinic </span><br />
<span style="font-size:100%;"><br />
</span><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_cICJV8o0pHY/Rt10D9-7hSI/AAAAAAAAAEA/U_XrwgYgsJw/s1600-h/ibm+guitarmania.jpg"><img style="cursor: pointer;" src="http://bp1.blogger.com/_cICJV8o0pHY/Rt10D9-7hSI/AAAAAAAAAEA/U_XrwgYgsJw/s400/ibm+guitarmania.jpg" alt="" id="BLOGGER_PHOTO_ID_5106365164034950434" border="0" /></a> <p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"></span> </p><p><span style="font-size:100%;"> </span></p>and the other at the Rock and Roll Hall of Fame given by Pavl Stenvaag, avatar of Mike Benz, president and CEO, Cleveland United Way.</p>

<p>We recieved excellent feedback from the participants including this quote from Dave Liederbach.</p>

<blockquote>"It was informative, engaging, and social -- well beyond what a conference call and/or a webcast can provide and should be replicated for other IBM community meetings." Dave Liederbach,
GM, Public Sector, GTS Americas and Executive Sponsor</blockquote>
We learned so much by hosting this event and look forward to putting our skills and knowledge to work in all our upcoming events.

<p><br />
<span style="font-weight: bold;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(0, 0, 0);"></span><span style="color: rgb(0, 0, 0);"><span style="font-weight: bold;"></p>

<p><br />
</span></span></span></span><span style="font-weight: bold;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(0, 0, 0);"><span style="font-weight: bold;"></span></span></span></span><span style="font-weight: bold;"><span style="color: rgb(255, 0, 0);"><span style="color: rgb(0, 0, 0);"><span style="font-weight: bold;"></span></span></span></span></p>]]></content:encoded>
	  <enclosure url="http://bp0.blogger.com/_cICJV8o0pHY/RsyZ69-7hHI/AAAAAAAAACo/kn7QOUprbRo/s400/red+concert+toy+piano.jpg" length="26634" type="image/jpeg" /><enclosure url="http://bp0.blogger.com/_cICJV8o0pHY/RsyZa9-7hFI/AAAAAAAAACY/nIKahoWmJ5k/s400/red+concert.jpg" length="18087" type="image/jpeg" /><enclosure url="http://bp0.blogger.com/_cICJV8o0pHY/RsyZt9-7hGI/AAAAAAAAACg/W6V7CfAvbIw/s400/red+artistic+angle.jpg" length="18215" type="image/jpeg" /><enclosure url="http://bp0.blogger.com/_cICJV8o0pHY/Rt10Dt-7hRI/AAAAAAAAAD4/7l79paWSpG8/s400/ibmaniata.jpg" length="20028" type="image/jpeg" /><enclosure url="http://bp1.blogger.com/_cICJV8o0pHY/RsyZNN-7hEI/AAAAAAAAACQ/G8E-u0D1Ukg/s400/red+concert2.jpg" length="11951" type="image/jpeg" /><enclosure url="http://bp1.blogger.com/_cICJV8o0pHY/Rt10D9-7hSI/AAAAAAAAAEA/U_XrwgYgsJw/s400/ibm+guitarmania.jpg" length="37726" type="image/jpeg" /><enclosure url="http://bp3.blogger.com/_cICJV8o0pHY/Rt10Dd-7hQI/AAAAAAAAADw/vtscPJTEfog/s400/ibm+refreshments.jpg" length="31648" type="image/jpeg" />
    </item>


</channel>
</rss>