<?xml version="1.0"?>
<News hasArchived="true" page="8431" pageCount="10727" pageSize="10" timestamp="Fri, 17 Jul 2026 14:26:55 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8431">
<NewsItem contentIssues="false" id="33888" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33888">
<Title>SVG Filters on Text</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://chrisscott.org/" rel="nofollow external" class="bo">Chris Scott</a>. Chris was messing around with SVG filters and how they can be applied to text. I thought this was quite interesting because SVG filters are quite a bit different than CSS filters. Arguably more powerful, as there are more of them and you can do things like bevel/emboss or stroke which you can't in CSS filters. Chris goes into detail here on how it's done including a tool to make it even easier.</em></p>
    <p>There has been a general trend in Web development, for some years now, away from using images in designs. Only a few years ago software companies would favour using an image of a rounded corner as the best "cross-browser" solution; the CSS attribute <code>border-radius</code> has made that technique seem very antiquated today. Titles are another example of this trend, where in the past one may have generated a fancy banner title in Photoshop and used an image to show it on the page. These days we have web fonts at our disposal and CSS3 to help us achieve shadows and other effects. These solutions load much faster, scale better and are more accessible and semantically correct. But there is even more we can do!</p>
    <h3>SVG Filters</h3>
    <p><a href="http://css-tricks.com/using-svg/" rel="nofollow external" class="bo">SVG</a> with Filter Effects have a lot of potential for complex text styling. Take a look at this example:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/cLdjG" rel="nofollow external" class="bo">SVG Filters on Text</a> by chrismichaelscott (<a href="http://codepen.io/chrismichaelscott" rel="nofollow external" class="bo">@chrismichaelscott</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <p>That line is created using SVG Filter Effects. It's just text. You can select it with your cursor. Search engines can index it. It will scale in size without losing quality. To boot, it takes very little time to download. You can achieve a whole lot more, too, the scope for creativity with Filter Effects is huge. The example was created with a library called Raphael.js and an extension I wrote for it. This article talks about the rationale for developing the extension and shows - in brief - how it can be used.</p>
    <p><a href="http://w3techs.com/technologies/details/im-svg/all/all" rel="nofollow external" class="bo">Apparently</a>, only 0.1% of Web pages use SVG graphics. If that statistic is anything to go by, there's a good chance that you are probably not using SVG on a regular basis. Why is SVG used so unpopular? It's only a guess, but the reason I didn't get into SVG (until I absolutely had to) was its learning curve: SVG is an XML vocabulary and is, I think, extremely technical (matrix multiplication for colour shifts, anyone?). The way I got into SVG was through <a href="http://raphaeljs.com" rel="nofollow external" class="bo">Raphael.js</a>, a JavaScript Library for creating vector drawings. Because it's a JavaScript library it felt fairly familiar, all of the complexity was abstracted away. Before long I was creating complex graphics like a pro.</p>
    <h3>Filter Effects for Raphael</h3>
    <p>Raphael has a shortcoming though: no support for Filter Effects. I remember one of my customers specifically requesting a drop shadow for <em>bubbles</em> in a data visualization which was interactive and animated. The request stumped me for a while as I bumped into this limit of Raphael. For that project I wrote a very specific extension to Raphael for handling drop shadows. But the same complexity that had initially put me off SVG was back and worse than ever. Make no mistake, Filter Effects are very, very technical.</p>
    <p>So, after that project, I set about building a more full-featured library to make Filter Effects as easy to apply as Raphael makes drawing shapes. </p>
    <p>Introducing <a href="http://chrismichaelscott.github.io/fraphael/" rel="nofollow external" class="bo">Filter Effects for Raphael</a>!</p>
    <p>Here's how to use it:</p>
    <p>First, the HTML. This bit is dead simple, just a <code>div</code> with an <code>id</code>:</p>
    <pre><code>&lt;div id="title-container"&gt;&lt;/div&gt;</code></pre>
    <p>Everything else is done in JavaScript.</p>
    <p>To start an SVG drawing with Raphael you create a "paper" by referencing the <code>id</code> of the container element:</p>
    <pre><code>var paper = Raphael("title-container");</code></pre>
    <p>Now to do some drawing. This example creates some text and sets some of the style attributes:</p>
    <pre><code>// The first two arguments are the origin of the text&#x000A;    var title = paper.text(0, 30, "Filters are ice cold");&#x000A;    title.attr({&#x000A;    "fill": "MintCream",&#x000A;    "font-family": "Butcherman",&#x000A;    "font-size": "54px",&#x000A;    "text-anchor": "start"&#x000A;    });</code></pre>
    <p>Now for some effects! The simplest things you can do are shadows, blurring, lighting, embossing and colour shifting. Those require very little coding. Let's try the emboss effect. Add to the JavaScript:</p>
    <pre><code>title.emboss();</code></pre>
    <p>You can chain effects, so applying a shadow afterwards is straightforward:</p>
    <pre><code>title.emboss().shadow();</code></pre>
    <p>Pretty cool, huh? You can take this much further if you want, by creating your own filters. The SVG spec lists (lower level) filter effects which can be combined to create all kinds of filters (convulsion matrices, in particular, can be used for a vast number of operations).</p>
    <p>This demo has the full code and some other examples of different effects that can be achieved:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/ikxEh" rel="nofollow external" class="bo">SVG Filters on Text</a> by chrismichaelscott (<a href="http://codepen.io/chrismichaelscott" rel="nofollow external" class="bo">@chrismichaelscott</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <h3>Shortcomings</h3>
    <p>What are the downsides to SVG? Well - aside from the pros and cons of vector over raster (like <code>canvas</code>) - there are a couple I can think of:</p>
    <ul>
    <li>
    <strong>Browser support</strong> - You may not be surprised to learn that the graphical trickery discussed here is not supported in older versions of IE, 10 only. SVG itself will render in IE9, just without the effects. Firefox, Chrome and Opera have supported Filter Effects for <a href="http://caniuse.com/svg-filters" rel="nofollow external" class="bo">ages</a>
    </li>
    <li>
    <strong>Semantics</strong> - Some may have reservations about the semantic validity of using SVG in documents, certainly the <code>svg</code> tag doesn't give any clue as to it's content; you can use a sensible parent, though</li>
    </ul>
    <h3>Wrapping Up</h3>
    <p>Hopefully this piece has given you a good idea of what filter effects can do and how Filter Effects for Raphael can do them. Check out the project page on <a href="http://chrismichaelscott.github.io/fraphael/" rel="nofollow external" class="bo">Github</a> for more details. Thanks for reading!</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/svg-filters-on-text/" rel="nofollow external" class="bo">SVG Filters on Text</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Chris Scott. Chris was messing around with SVG filters and how they can be applied to text. I thought this was quite interesting because SVG filters are quite a...</Summary>
<Website>http://css-tricks.com/svg-filters-on-text/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33888/guest@my.umbc.edu/ed90e2f36d94a9908a05184bcd65bdfe/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 14:42:38 -0400</PostedAt>
<EditAt>Fri, 09 Aug 2013 14:42:38 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33885" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33885">
<Title>Big Data Myth #4: &amp;quot;Big Data is a Temporary Fad&amp;quot;. (via InformationWeek)</Title>
<Body>
<![CDATA[
    <div class="html-content">Big Data Myth #4: "Big Data is a Temporary Fad". (via <a href="/profile.php?id=10228569831" title="To tag someone, type @ and then the friend's name" rel="nofollow external" class="bo">InformationWeek</a>)<br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.informationweek.com%2Fbig-data%2Fnews%2Fbig-data-analytics%2F4-biggest-big-data-myths%2F240159566&amp;h=eAQFtpnJw&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCMptv2ryzGNl8R&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Ftwimgs.com%2Finformationweek%2Fbig_data%2Freports%2FLessonsFromLeaders.gif" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.informationweek.com%2Fbig-data%2Fnews%2Fbig-data-analytics%2F4-biggest-big-data-myths%2F240159566&amp;h=XAQGuzndr&amp;s=1" rel="nofollow external" class="bo">4 Biggest Big Data Myths</a><br><a href="http://www.informationweek.com">www.informationweek.com</a><br>Big data will never eliminate uncertainty or answer all your questions. But treat it as a fad at your own peril.</div>
]]>
</Body>
<Summary>Big Data Myth #4: "Big Data is a Temporary Fad". (via InformationWeek)   4 Biggest Big Data Myths www.informationweek.com Big data will never eliminate uncertainty or answer all your questions....</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151513975136076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33885/guest@my.umbc.edu/7c8c821511c975a53816e55eb6cf4e3e/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 14:08:08 -0400</PostedAt>
<EditAt>Fri, 09 Aug 2013 14:08:08 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33884" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33884">
<Title>Bits Blog: Hollywood Director Takes On Texting While Driving</Title>
<Body>
<![CDATA[
    <div class="html-content">A documentary, called “From One Second to The Next,” profiles a boy who was paralyzed after being struck by a driver who was texting.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F09%2Fhollywood-director-takes-on-texting-while-driving%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Hollywood+Director+Takes+On+Texting+While+Driving" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F09%2Fhollywood-director-takes-on-texting-while-driving%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Hollywood+Director+Takes+On+Texting+While+Driving" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F09%2Fhollywood-director-takes-on-texting-while-driving%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Hollywood+Director+Takes+On+Texting+While+Driving" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F09%2Fhollywood-director-takes-on-texting-while-driving%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Hollywood+Director+Takes+On+Texting+While+Driving" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F09%2Fhollywood-director-takes-on-texting-while-driving%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Hollywood+Director+Takes+On+Texting+While+Driving" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173607729213/u/0/f/640387/c/34625/s/2fc4d799/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607729213/u/0/f/640387/c/34625/s/2fc4d799/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A documentary, called “From One Second to The Next,” profiles a boy who was paralyzed after being struck by a driver who was texting.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/09/hollywood-director-takes-on-texting-while-driving/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33884/guest@my.umbc.edu/c6fde92d5eec26770eb9c6b989e8b44d/api/pixel</TrackingUrl>
<Tag>children</Tag>
<Tag>devices</Tag>
<Tag>mobile</Tag>
<Tag>new</Tag>
<Tag>policy</Tag>
<Tag>technology</Tag>
<Tag>text-messaging</Tag>
<Tag>traffic-accidents-and-safety</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 13:36:37 -0400</PostedAt>
<EditAt>Sat, 10 Aug 2013 15:46:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33879" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33879">
<Title>What type of technology is available in PUP 105 (Lecture Hall 9)?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1%0A" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <div><div>
    <div><div>
    <h2>Tell Me</h2>
    <p><img width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Lecture_halls/LH9/LH9_Pod.JPG" style="max-width: 100%; height: auto;"></p>
    <ol>
    <li>Press the Power button in the bottom right corner of the touchscreen. Press Projector Power On. No need to touch System Power.</li>
    <li>Once the projector has warmed up, choose a Source on the left side of the touchscreen.</li>
    <li>Source you selected will display in the Preview Monitor</li>
    <li>Press the Projector Button to SEND the Source to the Projector.<br><img width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Lecture_halls/LH9/LH9_TPI.JPG" style="max-width: 100%; height: auto;">
    </li>
    </ol>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198061&amp;q=0&amp;v=1&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198061" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198061" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198061&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
    </div></div>
    <div><div><div>
    <div><strong>What This Lecture Hall Can Do</strong></div>
    <div>
    <ul>
    <li><span>Computer projection through the built in Computer and a Laptop with a VGA cable.</span></li>
    <li>Play DVD and VHS media</li>
    <li><span>Mounted Podium, Clip-on and Hand Held Wireless microphones</span></li>
    </ul>
    </div>
    </div></div></div>
    </div></div>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=31198061" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=31198061&amp;revisedVersion=3&amp;originalVersion=2" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                      Tell Me     Press the Power button in the bottom right corner of the touchscreen. Press Projector...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=31198061</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33879/guest@my.umbc.edu/f08f10085821e7da1f63407aaeb59ab6/api/pixel</TrackingUrl>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/1/original.png?1784205622</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/1/xlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1784205622</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1784205622</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1784205622</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1784205622</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:55:16 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33882" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33882">
<Title>Flat design threatens tablet usability</Title>
<Body>
<![CDATA[
    <div class="html-content">Jakob Nielsen's usability tests find the flat design trend threatens tablet usability due to unclear UI element functions<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fflat-design-threatens-tablet-usability-132946&amp;t=Flat+design+threatens+tablet+usability" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fflat-design-threatens-tablet-usability-132946&amp;t=Flat+design+threatens+tablet+usability" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fflat-design-threatens-tablet-usability-132946&amp;t=Flat+design+threatens+tablet+usability" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fflat-design-threatens-tablet-usability-132946&amp;t=Flat+design+threatens+tablet+usability" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fflat-design-threatens-tablet-usability-132946&amp;t=Flat+design+threatens+tablet+usability" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173607730133/u/49/f/502346/c/32632/s/2fc3cc17/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607730133/u/49/f/502346/c/32632/s/2fc3cc17/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Jakob Nielsen's usability tests find the flat design trend threatens tablet usability due to unclear UI element functions      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/mOHGwiJscA4/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33882/guest@my.umbc.edu/c87d19fc2daa319bab7e14b489585f8b/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:50:02 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33880" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33880">
<Title>What type of technology is available in Sondheim Hall and ACIV Rooms?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1%0A" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <div><div>
    <div><div>
    <h2>Tell Me</h2>
    <p><img alt="projector" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Social_Science/sh202_203_204_205_206/DSCF2177.JPG" style="max-width: 100%; height: auto;"></p>
    <div>
    <div><p><img alt="screen" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Social_Science/sh202_203_204_205_206/DSCF2178.JPG" style="max-width: 100%; height: auto;"></p></div>
    <br><div>
    <p><img alt="rack" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Social_Science/sh202_203_204_205_206/DSCF2179.JPG" style="max-width: 100%; height: auto;"></p>
    <p>     <img alt="buttons" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Social_Science/sh202_203_204_205_206/DSCF2180.JPG" style="max-width: 100%; height: auto;"></p>
    </div>
    <div> </div>
    </div>
    <p><span> </span></p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <ol>
    <li>Press "on" Button on Extron switcher, the "on" button will flash as the projector warms up.</li>
    <li>Wait 30 seconds for projector to warm up then choose the desired input.</li>
    <li>Plug computer in with VGA cable and then start computer </li>
    </ol>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198020&amp;q=0&amp;v=1&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198020" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198020" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198020&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
    </div></div>
    <div><div>
    <p> </p>
    <p> </p>
    <div>
    <div><strong>What These Rooms Can Do:</strong></div>
    <div>
    <ul>
    <li><span>Computer projection via laptop and audio via mini audio cable</span></li>
    <li><span>Play DVD and VHS media</span></li>
    </ul>
    </div>
    </div>
    </div></div>
    </div></div>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=31198020" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=31198020&amp;revisedVersion=4&amp;originalVersion=3" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                      Tell Me                                            Press "on" Button on Extron switcher, the "on"...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=31198020</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33880/guest@my.umbc.edu/d23ff776adf4cf2fa113d1600c939510/api/pixel</TrackingUrl>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/1/original.png?1784205622</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/1/xlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1784205622</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1784205622</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1784205622</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1784205622</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:47:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33876" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33876">
<Title>What type of technology is available in Public Policy Rooms 206 and 208?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1%0A" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <div><div>
    <div><div>
    <h2>Show Me</h2>
    <p><a href="http://www.youtube.com/watch?v=qdfYPyxxzps" rel="nofollow external" class="bo"><img src="http://img.youtube.com/vi/qdfYPyxxzps/1.jpg" style="max-width: 100%; height: auto;"></a></p>
    <p>Video Length - 2:22</p>
    <h2>Tell Me </h2>
    <div>
    <ol>
    <li>Press Power ON/OFF button on touchpad -&gt; press System Power ON and then press Projector Power ON.  Press Close button and wait for projector to warm up.  </li>
    <li>From Main menu press the middle button to select the source.  The inputs will be on the left side of the menu that comes up.  To go back to the main menu use the MAIN PAGE button in the bottom right corner of the touchscreen.  Also the PC input will be used if the instructor is using a laptop.<br><span> </span>
    </li>
    </ol>
    <img alt="overview" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2211.JPG" style="max-width: 100%; height: auto;">
    </div>
    <div>
    <div>
    <p><img alt="sdf" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2214.JPG" style="max-width: 100%; height: auto;"><img alt="touchpad" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2217.JPG" style="max-width: 100%; height: auto;"></p>
    <p><img alt="push" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2221.JPG" style="max-width: 100%; height: auto;"></p>
    </div>
    <div>
    <img alt="powermenu" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2213.JPG" style="max-width: 100%; height: auto;"><p><img alt="input" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/DSCF2218.JPG" style="max-width: 100%; height: auto;"></p>
    <p><img alt="main" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/Public_Policy/pub206208/main2.JPG" style="max-width: 100%; height: auto;"></p>
    </div>
    </div>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198064&amp;q=0&amp;v=1&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198064" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198064" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198064&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
    </div></div>
    <div><div><div>
    <div><strong>What These Rooms Can Do:</strong></div>
    <div>
    <ul>
    <li>Computer projection through the built in computer or through a laptop with a VGA cable and mini audio cable</li>
    <li>Play DVD and VHS media</li>
    </ul>
    </div>
    </div></div></div>
    </div></div>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=31198064" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=31198064&amp;revisedVersion=9&amp;originalVersion=8" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                      Show Me    Video Length - 2:22  Tell Me     Press Power ON/OFF button on touchpad -&gt; press...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=31198064</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33876/guest@my.umbc.edu/b46fa0f1fc8ea7c1016ba13f2099c31e/api/pixel</TrackingUrl>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/1/original.png?1784205622</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/1/xlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1784205622</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1784205622</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1784205622</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1784205622</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:41:03 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33877" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33877">
<Title>What type of technology is available in Math/Psychology Rooms 101 &#8211; 106?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1%0A" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <div><div>
    <div><div>
    <h2>Show Me</h2>
    <p><a href="http://www.youtube.com/watch?v=Gb1V02Pqrvg" rel="nofollow external" class="bo"><img src="http://img.youtube.com/vi/Gb1V02Pqrvg/1.jpg" style="max-width: 100%; height: auto;"></a></p>
    <p>Video Length - 01:50</p>
    <h2>Tell Me</h2>
    <ol>
    <li>The Control is located on the left-hand side of the screen as you face it. Press the "ON" button which will flash as the projector warms up</li>
    <li>Wait for ceiling mounted projector to warm up then select your Source</li>
    <li>Plug in your Laptop to the provided VGA Cable and start your Laptop</li>
    </ol>
    <div><table><tbody>
    <tr>
    <td><div><img height="225" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/MP/MP_1.jpg" style="max-width: 100%; height: auto;"></div></td>
    <td><div><img height="225" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/MP/MP_2.jpg" style="max-width: 100%; height: auto;"></div></td>
    </tr>
    <tr>
    <td><div><img height="225" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/MP/MP_3.jpg" style="max-width: 100%; height: auto;"></div></td>
    <td><div><img height="225" width="300" src="http://www.umbc.edu/oit/classroomtechnology/instructions/MP/MP_4.jpg" style="max-width: 100%; height: auto;"></div></td>
    </tr>
    </tbody></table></div>
    <p>4. Press and hold Display ON button for 2 seconds.<br>5. WAIT 30-60 seconds for projector to warm up.<br>6. Choose desired input (PC, VCR/DVD, HDMI).<br>7. Attach appropriate cable to your external device or load DVD/VHS media.<br>8. Volume is adjusted by knob under Display power buttons.<br>9. When done, press and hold Display OFF button for 2 seconds.</p>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198069&amp;q=0&amp;v=1&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198069" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198069" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D31198069&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
    </div></div>
    <div><div>
    <div>
    <div><strong>What These Rooms Can Do:</strong></div>
    <div>
    <ul>
    <li>Project user’s laptop/tablet video using either VGA or HDMI cable; audio via mini audio cable</li>
    <li>Project DVD and VHS media</li>
    <li>The large rooms have an IR microphone attached to a charging cable in the drawer. (MP101, 103, 104, 106)</li>
    </ul>
    </div>
    </div>
    <p> </p>
    </div></div>
    </div></div>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=31198069" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=31198069&amp;revisedVersion=4&amp;originalVersion=3" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                      Show Me    Video Length - 01:50  Tell Me   The Control is located on the left-hand side of the...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=31198069</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33877/guest@my.umbc.edu/1256998ec73b09d1f5a41d763644abf3/api/pixel</TrackingUrl>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/1/original.png?1784205622</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/1/xlarge.png?1784205622</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1784205622</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1784205622</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1784205622</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1784205622</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1784205622</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:38:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33881" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33881">
<Title>Turn HTML and CSS into a hosted CMS in seconds</Title>
<Body>
<![CDATA[
    <div class="html-content">Place your code into Dropbox and Cloud Cannon fixes it so your clients can add content and edit their live site<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fturn-html-and-css-hosted-cms-seconds-132948&amp;t=Turn+HTML+and+CSS+into+a+hosted+CMS+in+seconds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fturn-html-and-css-hosted-cms-seconds-132948&amp;t=Turn+HTML+and+CSS+into+a+hosted+CMS+in+seconds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fturn-html-and-css-hosted-cms-seconds-132948&amp;t=Turn+HTML+and+CSS+into+a+hosted+CMS+in+seconds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fturn-html-and-css-hosted-cms-seconds-132948&amp;t=Turn+HTML+and+CSS+into+a+hosted+CMS+in+seconds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fturn-html-and-css-hosted-cms-seconds-132948&amp;t=Turn+HTML+and+CSS+into+a+hosted+CMS+in+seconds" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173607679357/u/49/f/502346/c/32632/s/2fc40c28/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607679357/u/49/f/502346/c/32632/s/2fc40c28/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Place your code into Dropbox and Cloud Cannon fixes it so your clients can add content and edit their live site      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/NXnxQoQ3t7k/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33881/guest@my.umbc.edu/44ac84304e26bb7552a39cd2dfcb164d/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 11:26:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33874" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33874">
<Title>Free Download: Flattastic UI kit</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail3.jpg" width="200" height="160" style="max-width: 100%; height: auto;">Give your flat design a boost with this Flattastic UI kit, designed by <a href="http://vladedimovski.com/" rel="nofollow external" class="bo">Vlade Dimovski,</a> free to download and simple to use.</p> <p>The PSD is properly layered, with intuitive naming, making modifying it for your own projects a synch.</p> <p>The design features four pairs of complimentary colors perfect for any flat design: bittersweet, which is #FC6E51 and #E9573F; lavender, which is #AC92EC and #967ADC; grass, which is #A0D468 and #8CC152; and aqua, which is #4FC1E9 and #3BAFDA. But of course, download the PSD and you won’t need the hex codes, just use your trusty eyedropper tool!</p> <p>The design uses Open Sans, which is free for use from <a href="http://www.google.com/fonts/" rel="nofollow external" class="bo">Google Web Fonts</a> and the icons provided work beautifully with it (note: photos are not included).</p> <p>Download the kit below and start playing. If you enjoy it, you might want to take a look at the <a href="http://graphicriver.net/item/flattastic-pro/5200080?ref=vladedimovski" rel="nofollow external" class="bo">premium version</a> too.</p> <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/flattastic-free.jpg" width="650" alt="Free Download: Flattastic UI kit" style="max-width: 100%; height: auto;"></p> <p> </p> <p><em><strong>Have you used the Flatastic UI kit for a project? What other UI elements would you like to see included? Let us know in the comments. </strong></em></p> <div>
    <div> <a href="/widget/pay-tweet.php?refID=wdd_flattastic&amp;code=d3f4f687cff5112984f898f11ef4f8c6&amp;post_id=57095&amp;msg=Free+Download%3A+Flattastic+UI+kit+http%3A%2F%2Fbit.ly%2F17ckEyx" rel="nofollow external" class="bo">Pay with a Tweet</a> </div> <div> <a rel="nofollow external" class="bo">Download now</a> </div> <div> <p>Please enter your email address below and click the download button. The download link will be sent to you by email, or if you have already subscribed, the download will begin immediately.</p>       <div>I agree to receive exclusive deals from <a href="http://www.MightyDeals.com" rel="nofollow external" class="bo"><span>MightyDeals.com</span></a> and monthly/weekly newsletters from <a href="http://www.WebdesignerDepot.com" rel="nofollow external" class="bo"><span>WebdesignerDepot.com</span></a>. Unsubscribe at any time. Your email will not be sold/rented.</div>   <div>         </div>  <div><img src="http://forms.aweber.com/form/displays.htm?id=jJwczBwMnIwMrA==" alt="" style="max-width: 100%; height: auto;"></div>  </div>   </div> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/inventicons-design-bundle.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Mega Design Bundle from Inventicons – only $49! </strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Free Download: Flattastic UI kit" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/08/free-download-flattastic-ui-kit/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-flattastic-ui-kit%2F&amp;t=Free+Download%3A+Flattastic+UI+kit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-flattastic-ui-kit%2F&amp;t=Free+Download%3A+Flattastic+UI+kit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-flattastic-ui-kit%2F&amp;t=Free+Download%3A+Flattastic+UI+kit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-flattastic-ui-kit%2F&amp;t=Free+Download%3A+Flattastic+UI+kit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F08%2Ffree-download-flattastic-ui-kit%2F&amp;t=Free+Download%3A+Flattastic+UI+kit" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/173607726590/u/49/f/661066/c/35285/s/2fc325ec/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607726590/u/49/f/661066/c/35285/s/2fc325ec/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Give your flat design a boost with this Flattastic UI kit, designed by Vlade Dimovski, free to download and simple to use.   The PSD is properly layered, with intuitive naming, making modifying it...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/2fc325ec/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A80Cfree0Edownload0Eflattastic0Eui0Ekit0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33874/guest@my.umbc.edu/79a589a4a9cf3eabbbf82e5c01b4592a/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>flat-design</Tag>
<Tag>flat-ui-kit</Tag>
<Tag>flatastic</Tag>
<Tag>free-flat-design-resources</Tag>
<Tag>free-ui-kits</Tag>
<Tag>freebies</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 09 Aug 2013 10:15:16 -0400</PostedAt>
<EditAt>Fri, 09 Aug 2013 10:15:16 -0400</EditAt>
</NewsItem>

</News>
