<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>adobe &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/adobe/</link>
	<description>Feed of posts on WordPress.com tagged "adobe"</description>
	<pubDate>Mon, 30 Nov 2009 11:01:25 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Industry / App Review: Colour vs. PShop]]></title>
<link>http://timnolan.wordpress.com/2009/11/30/industry-app-review-colour-vs-pshop/</link>
<pubDate>Mon, 30 Nov 2009 00:52:04 +0000</pubDate>
<dc:creator>timnolan</dc:creator>
<guid>http://timnolan.wordpress.com/2009/11/30/industry-app-review-colour-vs-pshop/</guid>
<description><![CDATA[I run a pretty tight ship when it comes to what iPhone Apps, I keep on my iPhone. As a general rule,]]></description>
<content:encoded><![CDATA[I run a pretty tight ship when it comes to what iPhone Apps, I keep on my iPhone. As a general rule,]]></content:encoded>
</item>
<item>
<title><![CDATA[Limerick Premiere Pro Users Group]]></title>
<link>http://appleboxmedia.wordpress.com/2009/11/29/337/</link>
<pubDate>Sun, 29 Nov 2009 12:34:31 +0000</pubDate>
<dc:creator>appleboxmedia</dc:creator>
<guid>http://appleboxmedia.wordpress.com/2009/11/29/337/</guid>
<description><![CDATA[Applebox Media are proud to be supporting the new Limerick Premiere Pro Users Group. Why not visit t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Applebox Media are proud to be supporting the new Limerick Premiere Pro Users Group.<br />
<a href="http://appleboxmedia.wordpress.com/files/2009/11/premiere-pro-cs4.jpg"><img src="http://appleboxmedia.wordpress.com/files/2009/11/premiere-pro-cs4.jpg" alt="" title="Premiere Pro CS4" width="103" height="143" class="aligncenter size-full wp-image-342" /></a><br />
Why not visit the Limerick Premiere Pro Users Group page and become a member.</p>
<p><a href="http://groups.adobe.com/groups/6361fdb229/summary">http://groups.adobe.com/groups/6361fdb229/summary</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[See With Your Mind ]]></title>
<link>http://delinquentcolor.wordpress.com/2009/11/29/see-with-your-mind/</link>
<pubDate>Sun, 29 Nov 2009 12:12:06 +0000</pubDate>
<dc:creator>Delinquent Color</dc:creator>
<guid>http://delinquentcolor.wordpress.com/2009/11/29/see-with-your-mind/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://c4.ac-images.myspacecdn.com/images02/25/l_a1c593a9186d4c958b7a0d07efae31bf.png" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ThomasGudgeonPhoto.com]]></title>
<link>http://thomasgudgeon.wordpress.com/2009/11/29/thomasgudgeonphoto-com/</link>
<pubDate>Sun, 29 Nov 2009 11:00:35 +0000</pubDate>
<dc:creator>Thomas Gudgeon</dc:creator>
<guid>http://thomasgudgeon.wordpress.com/2009/11/29/thomasgudgeonphoto-com/</guid>
<description><![CDATA[Seen as though I am becoming more and more interested in Photography and I am investing a lot of mon]]></description>
<content:encoded><![CDATA[Seen as though I am becoming more and more interested in Photography and I am investing a lot of mon]]></content:encoded>
</item>
<item>
<title><![CDATA[Adding Scroll bar to Flex Text Layout Container]]></title>
<link>http://cookingandcoding.wordpress.com/2009/11/29/adding-scroll-bar-to-flex-text-layout-container-2/</link>
<pubDate>Sun, 29 Nov 2009 10:06:32 +0000</pubDate>
<dc:creator>Mike Reich</dc:creator>
<guid>http://cookingandcoding.wordpress.com/2009/11/29/adding-scroll-bar-to-flex-text-layout-container-2/</guid>
<description><![CDATA[I&#8217;ve been working on a project that leverages the new Flex Text Layout Framework (currently in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;ve been working on a project that leverages the new Flex Text Layout Framework (currently in beta) and have been trying to figure out how to add a decent scroll bar to the container.  There isn&#8217;t much documentation on this, so here&#8217;s my approach.</p>
<p><strong>Background</strong><br />
The Text Layout Framework is nominally structured using the classic MVC approach.  The View is called the text flow container.  The controller, the text flow itself, updates the view and sends out the <em>CompositionCompleteEvent.COMPOSITION_COMPLETE </em>event.  This is what we&#8217;ll be using to update the vertical scroll bar, as each time the event is fired, something has changed in the view that may require the scroll bar to change position or size.</p>
<p>This article assumes you are familiar with Flex and the Text Layout Framework, and have a working TLF setup already coded.  I&#8217;ll be posting a future beginner&#8217;s tutorial on TLF, so stay tuned.</p>
<p><strong>Step 1: Add listener</strong><br />
The first thing we&#8217;ll need to do is add the correct listener for the <em>CompisitionCompleteEvent</em> in the startup function of your text flow.  Assuming its called <em>_textFlow</em>, you can add the listener like this:</p>
<pre style="border:1px dashed #999999;overflow:auto;font-family:Andale Mono,Lucida Console,Monaco,fixed,monospace;color:#000000;background-color:#eeeeee;font-size:12px;line-height:14px;width:95%;padding:5px;"><code>_textFlow.addEventListener(CompositionCompleteEvent.COMPOSITION_COMPLETE, setupScrollBar);
</code></pre>
<p><strong>Step 2: Setting up the Scrollbar</strong><br />
Next you&#8217;ll need to add the scrollbar to your MXML layout somewhere.  Here&#8217;s a simple example:</p>
<pre style="border:1px dashed #999999;overflow:auto;font-family:Andale Mono,Lucida Console,Monaco,fixed,monospace;color:#000000;background-color:#eeeeee;font-size:12px;line-height:14px;width:95%;padding:5px;"><code>&#60;mx:VScrollBar id="scroll" height="{textContainer.height}" scroll="scrollListener(event)"/&#62;
</code></pre>
<p>Next, you&#8217;ll want to add the setupScrollBar function to initialize the scroll bar when the composition is changed:</p>
<pre style="border:1px dashed #999999;overflow:auto;font-family:Andale Mono,Lucida Console,Monaco,fixed,monospace;color:#000000;background-color:#eeeeee;font-size:12px;line-height:14px;width:95%;padding:5px;"><code>private function setupScrollBar(event:CompositionCompleteEvent):void {
     var textHeight:int = Math.ceil(_controller.getContentBounds().height);
     var oldPos:Number = _controller.verticalScrollPosition;

     if (textHeight &#60; _controller.compositionHeight) {
         scroll.enabled = false;
     } else {
         scroll.enabled = true;
         scroll.minScrollPosition = 0;
         scroll.maxScrollPosition = textHeight - _controller.compositionHeight;
         scroll.lineScrollSize = 20;
         scroll.pageSize = _controller.compositionHeight;
     }
     _controller.verticalScrollPosition = oldPos;
}
</code></pre>
<p>Let&#8217;s walk through what this does.  First, the function computes the total height of all the text, including text that isn&#8217;t displayed in the container.  Next, it saves the old scroll position so it is remembered when the scrollbar redraws.  Next, the function checks if the total height of all the text (the <em>textHeight</em> variable) is less than the height of the TLF container <em>(_controller.compositionHeight</em>).  If it is less than, there is no text to scroll and the scroll bar is disabled.  Otherwise, there is text to scroll and the scroll bar is enabled and the initial values are set.</p>
<p>Next we set the scrollbar properties: the scrollbar needs to know four things: the minimum position to scroll to, the maximum position to scroll to, the line scroll size (to determine how far to scroll when the arrow buttons are clicked), and the page size of the content to compute the length of the thumb bar.  Here, we set the maximum scroll position to be the remaining number of pixels that aren&#8217;t displayed and the page height to be the height of the container.</p>
<p><strong>Step 3: Add the ScrollBar handler functions</strong><br />
Everytime the scroll bar has been interacted with, it will need to update the view container accordingly, and vice versa.  To do that, we&#8217;ll need to create the scrollListener function referenced in the ScrollBar MXML tag:</p>
<pre style="border:1px dashed #999999;overflow:auto;font-family:Andale Mono,Lucida Console,Monaco,fixed,monospace;color:#000000;background-color:#eeeeee;font-size:12px;line-height:14px;width:95%;padding:5px;"><code>private function scrollListener(event:mx.events.ScrollEvent):void {
    _textFlow.removeEventListener(ScrollEvent.SCROLL, scrollTextFlow);
    _controller.verticalScrollPosition = event.position;
    _textFlow.addEventListener(ScrollEvent.SCROLL, scrollTextFlow);
}

private function scrollTextFlow(event:TextLayoutEvent):void {
    scroll.removeEventListener(mx.events.ScrollEvent.SCROLL, scrollListener);
    scroll.scrollPosition = Math.ceil(_controller.verticalScrollPosition);
    scroll.addEventListener(TextLayoutEvent.SCROLL, scrollListener);
}
</code></pre>
<p>The first function sets the container scroll position to the scroll bar position, as contained in <em>event</em>.  This function also sets the listener for the container to scroll the scroll bar to the correct position when the container location is scrolled, usually through selecting text.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My New "Moogle" HikiCulture Avatar ]]></title>
<link>http://hikiculture.wordpress.com/2009/11/29/my-new-moogle-hikiculture-avatar/</link>
<pubDate>Sun, 29 Nov 2009 09:22:24 +0000</pubDate>
<dc:creator>HikiCulture</dc:creator>
<guid>http://hikiculture.wordpress.com/2009/11/29/my-new-moogle-hikiculture-avatar/</guid>
<description><![CDATA[I was going through new avatars to use on the HikiCulture forums on a near-daily basis without findi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:georgia,serif;">I was going through new avatars to use on the HikiCulture forums on a near-daily basis without finding feeling full contentment with any of the ones I had used; today though, I found the perfect one:</span>
<p /> <img src="http://posterous.com/getfile/files.posterous.com/hikiculture/fmaMdyffQUjS8DSs8NOeWRoMViEtTNFCbkvFokpA007etAP1yVPu0mWyHvJJ/Moogle-avatar-HikiCulture.jpg" width="200">
<p /> <span style="font-family:georgia,serif;">I had thought about Final Fantasy whilst daydreaming today; I think it&#39;s because I long to play another game from the series. While thinking about Final Fantasy (which I am </span><i>extremely</i><span style="font-family:georgia,serif;"> fond of), I thought of </span><a href="http://en.wikipedia.org/wiki/Character_design_of_Final_Fantasy#Moogle" style="font-family:georgia,serif;">Moogles</a><span style="font-family:georgia,serif;"> (the name of the creature from Final Fantasy that is in my avatar.)</span>
<p /> <span style="font-family:georgia,serif;">I decided to add my HikiCulture user-name &#34;Chair&#34; to the bottom-right corner of the avatar to make it somewhat more unique. The typeface I used for &#34;Chair&#34; is the same font and shade of blue (partially) that I had used for the HikiCulture logo.</span>
<p /> <span style="font-family:georgia,serif;">My new avatar </span><i>finally</i><span style="font-family:georgia,serif;"> makes me feel contentment.</span>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://hikiculture.posterous.com/my-new-moogle-hikiculture-avatar">HikiCulture &#8211; A Forum for Reclusive People (and Hikikomori) {hikiculture.com site blog}</a>  </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash NO, entonces Silverlight SI]]></title>
<link>http://clubdeliphone.wordpress.com/2009/11/29/flash-no-entonces-silverlight-si/</link>
<pubDate>Sun, 29 Nov 2009 06:59:26 +0000</pubDate>
<dc:creator>clubdeliphone</dc:creator>
<guid>http://clubdeliphone.wordpress.com/2009/11/29/flash-no-entonces-silverlight-si/</guid>
<description><![CDATA[En medio de la larga pelea de muchos años entre Adobe y Apple surge el siempre y archi conocido Micr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>En medio de la larga pelea de muchos años entre <strong>Adobe</strong> y <strong>Apple</strong> surge el siempre y archi conocido <strong>Microsoft</strong>.</p>
<p>Aprovechando que entre las mismas no encuentran un punto de equilibrio para implementar el tan solicitado <strong>Adobe Flash</strong> por los usuarios de <strong>iPhone</strong>, <strong><em>Brian Goldfarb, Microsoft User Experience Platform Manager</em></strong>, en el reciente <strong>PDC 2009</strong> hizo una demostración de streaming de video H.264 mediante <strong>Silverlight en un iPhone</strong>.</p>
<p><a href="http://clubdeliphone.wordpress.com/files/2009/11/silve1.jpg"><img class="aligncenter size-full wp-image-257" title="silve1" src="http://clubdeliphone.wordpress.com/files/2009/11/silve1.jpg" alt="" width="400" height="300" /></a></p>
<p>La gente de <strong>Betanews</strong> lo entrevisto y le preguntaron sobre la forma en que consiguieron que esto funcione, la respuesta fue simple <strong>“Estamos trabajando con Apple”</strong>.</p>
<p>Microsoft se ha encargado de realizar todo, siguiendo las reglas puestas con Apple y lograron hacer que Silverlight ejecute en los dispositivos Apple. Todo el trabajo se hace al lado del servidor, <strong>IIS Media Services</strong>; los usuarios solo tienen que activar la compatibilidad con el iPhone.</p>
<p>Según Goldfarb, esto ha sido realizado a solicitud de los clientes de Microsoft <strong><em>“El iPhone es un escenario único. Hablamos con nuestros clientes y han solicitado disponer de sus contenidos en el dispositivo”</em></strong></p>
<p><a href="http://clubdeliphone.wordpress.com/files/2009/11/silver2.jpg"><img class="aligncenter size-full wp-image-256" title="silver2" src="http://clubdeliphone.wordpress.com/files/2009/11/silver2.jpg" alt="" width="400" height="533" /></a></p>
<p><em>“So we’ve worked with Apple to create a server-side based solution with IIS Media Services,” Goldfarb continued, “and what we’re doing is taking content that’s encoded for smooth streaming and enabling the content owner to say, ‘I want to enable the iPhone.’ The server will dynamically make the content work — same content, same point of origin — on the iPhone. We do this with the HTML 5 tag, in many ways.”</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[September Dump]]></title>
<link>http://kingbean.wordpress.com/2009/11/29/september-dump/</link>
<pubDate>Sun, 29 Nov 2009 04:30:33 +0000</pubDate>
<dc:creator>KingBean</dc:creator>
<guid>http://kingbean.wordpress.com/2009/11/29/september-dump/</guid>
<description><![CDATA[Thursday September 3rd, 2009 Nando&#8217;s action. 8:26pm. Friday September 4th, 2009 Those crazy Ch]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><B><I>Thursday September 3rd, 2009</b></i></p>
<p>Nando&#8217;s action. 8:26pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/dsc01143.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/dsc01143.jpg" alt="" title="DSC01143" width="800" height="600" class="aligncenter size-full wp-image-217" /></a></p>
<p><b><i>Friday September 4th, 2009</b></i></p>
<p>Those crazy Christian pedophiles. Where&#8217;s the subtlety?? 2:03pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4110.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4110.jpg" alt="" title="IMG_4110" width="800" height="600" class="aligncenter size-full wp-image-218" /></a></p>
<p>Elm St. 2:04pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4112.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4112.jpg" alt="" title="IMG_4112" width="800" height="600" class="aligncenter size-full wp-image-219" /></a></p>
<p>A very long process&#8230;. 7:21pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4114.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4114.jpg" alt="" title="IMG_4114" width="800" height="600" class="aligncenter size-full wp-image-220" /></a></p>
<p>&#8230;disrupted without an explanation. Pure horror. 7:40pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4116.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4116.jpg" alt="" title="IMG_4116" width="800" height="600" class="aligncenter size-full wp-image-221" /></a></p>
<p>I finally had a burnt DVD of the above project at 1:29am.</p>
<p><b><i>Tuesday September 8th, 2009</b></i></p>
<p>Getting ready&#8230; 5:46pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/dsc01147.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/dsc01147.jpg" alt="" title="DSC01147" width="800" height="600" class="aligncenter size-full wp-image-222" /></a></p>
<p><b><i>Thursday September 10th, 2009</b></i></p>
<p>Tree concealed by pumpkin soup. 4:25pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4131.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4131.jpg" alt="" title="IMG_4131" width="800" height="600" class="aligncenter size-full wp-image-223" /></a></p>
<p><b><i>Saturday September 12th, 2009</b></i></p>
<p>All Day I Dream About Subways. 9:58pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/dsc01156.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/dsc01156.jpg" alt="" title="DSC01156" width="800" height="600" class="aligncenter size-full wp-image-225" /></a></p>
<p>Scabby feet. 11:41pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4138.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4138.jpg" alt="" title="IMG_4138" width="800" height="600" class="aligncenter size-full wp-image-226" /></a></p>
<p><b><i>Monday September 14th, 2009</b></i></p>
<p>5:03pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/dsc01162.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/dsc01162.jpg" alt="" title="DSC01162" width="800" height="600" class="aligncenter size-full wp-image-227" /></a></p>
<p>Found this near my bin. Vintage VHS. 6:02pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4141.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4141.jpg" alt="" title="IMG_4141" width="800" height="600" class="aligncenter size-full wp-image-228" /></a></p>
<p><b><i>Sunday September 20th, 2009</b></i></p>
<p>Misplaced door. 7:20pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4151.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4151.jpg" alt="" title="IMG_4151" width="800" height="600" class="aligncenter size-full wp-image-229" /></a></p>
<p><b><i>Friday September 25th, 2009</b></i></p>
<p>Best way to end the working week. 4:30pm.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4159.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4159.jpg" alt="" title="IMG_4159" width="800" height="600" class="aligncenter size-full wp-image-230" /></a></p>
<p><b><i>Saturday September 26th, 2009</b></i></p>
<p>Rain in the tracks of Flinders St. station. Last Train Blues. 1:11am.</p>
<p><a href="http://kingbean.wordpress.com/files/2009/11/img_4161.jpg"><img src="http://kingbean.wordpress.com/files/2009/11/img_4161.jpg" alt="" title="IMG_4161" width="800" height="600" class="aligncenter size-full wp-image-231" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Adobe AIR no Ubuntu]]></title>
<link>http://ubuntugk.wordpress.com/2009/11/29/adobe-air-no-ubuntu/</link>
<pubDate>Sun, 29 Nov 2009 02:44:57 +0000</pubDate>
<dc:creator>Eduardo DX</dc:creator>
<guid>http://ubuntugk.wordpress.com/2009/11/29/adobe-air-no-ubuntu/</guid>
<description><![CDATA[O Adobe AIR permite trazer para o desktop aplicações web e widgets. A grande vantagem nisso é ele se]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="max-width:400px;border:none;" src="http://img121.imageshack.us/img121/8345/airt.png" alt="Adobe AIR" /></p>
<p>O Adobe AIR permite trazer para o desktop aplicações web e widgets. A grande vantagem nisso é ele ser <em>cross-plataform</em>, ou seja, aplicações desenvolvidas para ele podem rodar em qualquer sistema operacional (Linux, Mac OS e Windows).</p>
<ol>
<li>Baixe o <a title="Adobe AIR" href="http://airdownload.adobe.com/air/lin/download/latest/AdobeAIRInstaller.bin" target="_blank">Adobe AIR</a>;</li>
<li>Coloque o arquivo na Pasta Pessoal (Locais &#62; Pasta Pessoal);</li>
<li>Abra o terminal e execute a seguinte linha de comando:</li>
<p><code>chmod +x AdobeAIRInstaller.bin</code></p>
<li>Em seguida execute essa linha de comando :</li>
<p><code>sudo ./AdobeAIRInstaller.bin</code></ol>
<p>De agora para frente é só CONCORDOR, eperar instalar e CONCLUIR.</p>
<p><img src="http://img190.imageshack.us/img190/4973/air1.png" alt="Adobe AIR Installation" /></p>
<p><img src="http://img121.imageshack.us/img121/9230/air2.png" alt="Adobe AIR Installation" /></p>
<p><img src="http://img38.imageshack.us/img38/2237/air3o.png" alt="Adobe AIR Installation" /></p>
<p>Agora os arquivos .air podem ser abertos tranquilamente.</p>
<p>Fonte : <a href="http://www.sizlopedia.com/2008/04/06/how-to-install-adobe-air-on-ubuntu/" target="_blank">Sizlopedia</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[School Related: Design Tips]]></title>
<link>http://stephwereley.wordpress.com/2009/11/29/school-related-design-tips/</link>
<pubDate>Sun, 29 Nov 2009 01:44:24 +0000</pubDate>
<dc:creator>stephwereley</dc:creator>
<guid>http://stephwereley.wordpress.com/2009/11/29/school-related-design-tips/</guid>
<description><![CDATA[I&#8217;ve already written a post regarding the importance of your online Personal Brand, and I even]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;"><span style="color:#808080;">I&#8217;ve already written a post regarding the importance of your online Personal Brand, and I even included a link to my </span><a href="http://stephwereley.wordpress.com/2009/11/12/school-related-my-personal-brand-plan/"><strong><span style="color:#808080;">Personal Brand presentation</span></strong></a><span style="color:#808080;">. We&#8217;ve been discussing them in our Social Media class, and several students have shown their presentations to the class. The resulting discussion inspired me to create more of a niche within my class. What makes me unique among the peers that I will graduate with? I believe it is my design skills and interest in fine art, so I&#8217;m going to be focussing more on these topics on my <strong><a href="http://twitter.com/stephwereley">Twitter</a></strong> and this blog.</span></p>
<p style="text-align:center;"><span style="color:#808080;"><a href="http://stephwereley.wordpress.com/files/2009/11/paintbrush.jpg"><img class="size-medium wp-image-204  aligncenter" title="paintbrush" src="http://stephwereley.wordpress.com/files/2009/11/paintbrush.jpg?w=240" alt="" width="240" height="300" /></a></span></p>
<p><span style="color:#808080;">My Twitter feed will feature an ongoing list of Design Tips. These tips will be relevant to public relations students and can be exercised  when putting together basic reports and assignments. I believe it will also prepare them (you?) for more advanced design programs such as Adobe Illustrator.</span></p>
<p><span style="color:#808080;">I&#8217;ll be sure to compile the Design Tips and post them here periodically. </span></p>
<p><span style="color:#808080;">stephwereley.</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Plugin Dreamweaver utk joomla]]></title>
<link>http://download242.wordpress.com/2009/11/28/plugin-dreamweaver-utk-joomla/</link>
<pubDate>Sat, 28 Nov 2009 23:13:58 +0000</pubDate>
<dc:creator>christ242</dc:creator>
<guid>http://download242.wordpress.com/2009/11/28/plugin-dreamweaver-utk-joomla/</guid>
<description><![CDATA[Plugin Dreamweaver utk joomla http://www.ziddu.com/download/7537541/M65JTK3.1.rar.html]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Plugin Dreamweaver utk joomla</p>
<p><a href="http://www.ziddu.com/download/7537541/M65JTK3.1.rar.html"><strong>http://www.ziddu.com/download/7537541/M65JTK3.1.rar.html</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft revela beta de Silverlight para iPhone]]></title>
<link>http://jonnathanvalero.wordpress.com/2009/11/28/microsoft-revela-beta-de-silverlight-para-iphone/</link>
<pubDate>Sat, 28 Nov 2009 20:12:03 +0000</pubDate>
<dc:creator>xxyukillerxx</dc:creator>
<guid>http://jonnathanvalero.wordpress.com/2009/11/28/microsoft-revela-beta-de-silverlight-para-iphone/</guid>
<description><![CDATA[¿Microsoft está haciendo aplicaciones para el iPhone de Apple? Tal parece que sí, luego de la demost]]></description>
<content:encoded><![CDATA[¿Microsoft está haciendo aplicaciones para el iPhone de Apple? Tal parece que sí, luego de la demost]]></content:encoded>
</item>
<item>
<title><![CDATA[How do I test my cam]]></title>
<link>http://camgirlhandbook.com/2009/11/28/how-do-i-test-my-cam/</link>
<pubDate>Sat, 28 Nov 2009 18:00:31 +0000</pubDate>
<dc:creator>Minnie</dc:creator>
<guid>http://camgirlhandbook.com/2009/11/28/how-do-i-test-my-cam/</guid>
<description><![CDATA[If you&#8217;re using a webcam such as Logitech, Microsoft, Creative etc. You want to make sure you ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://camgirlhandbook.wordpress.com/files/2009/11/diamond-vc500-d10-2164-2.jpg"><img class="alignleft size-thumbnail wp-image-339" title="Diamond-VC500-D10-2164-2" src="http://camgirlhandbook.wordpress.com/files/2009/11/diamond-vc500-d10-2164-2.jpg?w=150" alt="" width="150" height="150" /></a>If you&#8217;re using a webcam such as Logitech, Microsoft, Creative etc. You want to make sure you have installed the drivers properly to your computer. If you&#8217;re using a mac you will have to figure out how to install your web cam to your mac.  Then once your cam is connect, either the webcam software will pop-up and it will show your cam connected. If you&#8217;re using a mac and your not able to use a webcam or video device on your mac to test your camera is connect you can go to the website <a href="http://www.testmycam.com">www.testmycam.com</a>.</p>
<p>The website <a href="http://www.testmycam.com">www.testmycam.com</a> is all good to make sure your computer and web cam is ready to use for broadcasting on your web cam site and to test out lighting and your microphone or you can log into your model log-in page for your web cam site and test it in there before you go live in your adult video chat room.  Another method of testing if your web cam is connected to your computer is by opening an instant messenger platform Skype, MSN, Yahoo whatever you have on your computer. You would go into the web cam settings or audio/video settings you do not need to chat with anyone to test your web cam unless you want to.</p>
<p>You always want to make sure you have a good video card installed in your computer. You should have determine this when your purchase your computer. If you do not have one you can get them installed easily.  Now if you&#8217;re using a video camera and you want to turn it into a video web cam there is a lot more options involved. If your not really interested in learning some technical stuff then getting a webcam is your best bet for now.</p>
<p><a href="http://camgirlhandbook.wordpress.com/files/2009/11/180px-rca_connector_photo.jpg"><img class="alignleft size-thumbnail wp-image-336" title="180px-RCA_Connector_(photo)" src="http://camgirlhandbook.wordpress.com/files/2009/11/180px-rca_connector_photo.jpg?w=150" alt="" width="150" height="112" /></a>Connecting with a <span style="color:#0000ff;"><em><span style="text-decoration:underline;">RCA cables</span></em></span> is probably the simplest way to turn your video camera into a video webcam. Every video camera comes with RCA cables, because they are used to connect to so many things your VCR, Television, and even your computer. If your camera does not come with RCA cables then you want to look around to see if you can buy one that is compatible to your video camera.  The manufacture website usually has them, or look on eBay for it.  If you&#8217;re wondering what the RCA cables are they are the cables that are red, yellow and white. <em>Picture on the left . </em></p>
<p><em><br />
</em></p>
<p>Connecting with a <span style="color:#0000ff;"> <em><span style="text-decoration:underline;">S-Video cable</span></em></span> is another easy way to connect your video camera to your computer. If your computer comes with an S-video port and your camera has an S-video cable you can connect your camera. I personally haven&#8217;t tried this myself I usually go with connecting with RCA cables. Your camera might not come with the S-video cable but they usually have them for sale on the manufacture website.  <a href="http://camgirlhandbook.wordpress.com/files/2009/11/120px-close-up_of_s-video_female_connector.jpg"><img class="size-full wp-image-337 alignright" title="120px-Close-up_of_S-video_female_connector" src="http://camgirlhandbook.wordpress.com/files/2009/11/120px-close-up_of_s-video_female_connector.jpg" alt="" width="120" height="90" /></a><em>Picture on the right</em><em> </em></p>
<p>There is many ways to connect using the RCA cables one of them being directly into the back of your desktop computer usually if they have the video capture card built in, or you can buy one and install it yourself. <a href="http://store.viewcast.com/SearchResult.aspx?CategoryID=3">Osprey</a> makes capture cards which are easy to find anywhere you might find others around. You plug in your RCA yellow cable into the capture card and it will recognize your video camera is plugged in. Another method if your not able to get a capture card installed or if your using a laptop you can buy an external one they are called usb video capture devices; Dazzle, Roxio and Diamond Multimedia make one. The video capture cards that go into your computer are also called tv-turners, but since they have made so many external video capture cards it might be easier to get an external one then an internal one.</p>
<p>Connecting with a<span style="color:#0000ff;"> <span style="text-decoration:underline;"><em>fire wire cable</em></span></span> is also pretty easy to connect with. You want to check out if your camera can connects with a fire wire cable <span style="text-decoration:underline;"><em>some video camera do not have a fire wire option</em></span>. Once you find that out you can use a fire wire cable to connect to your computer. Easily just make your computer supports it to connect using a fire wire.</p>
<p><a href="http://camgirlhandbook.wordpress.com/files/2009/11/m501-1326-out2-hl.jpg"><img class="alignleft size-thumbnail wp-image-340" title="M501-1326-out2-hl" src="http://camgirlhandbook.wordpress.com/files/2009/11/m501-1326-out2-hl.jpg?w=150" alt="" width="150" height="79" /></a>Connecting with <span style="text-decoration:underline;"><em><span style="color:#0000ff;">USB cable</span></em></span> some video cameras come with a USB cable<span style="text-decoration:underline;"><em> f</em></span><em><span style="text-decoration:underline;">or the Sony HC-62 video camera the usb cable is the same cable that connects to blackberries</span></em> So you might be in luck to try if it works for your blackberry and your video camera.  Apparently it&#8217;s an universal cable so you could save a bundle if you have one for more than one device. You can also connect your video camera to your computer using the usb cable as well if your usb cable is too short to reach your computer. You can also get USB extension cables usually these days usb cables are version 2.0 also keep in mind some video camera do not turn into a video webcam using the usb cable. I found out that the Sony Hc62 does not</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Curso de Lightroom em São Paulo]]></title>
<link>http://alexvillegas.wordpress.com/2009/11/28/curso-de-lightroom-em-sp/</link>
<pubDate>Sat, 28 Nov 2009 17:25:24 +0000</pubDate>
<dc:creator>Alex Villegas</dc:creator>
<guid>http://alexvillegas.wordpress.com/2009/11/28/curso-de-lightroom-em-sp/</guid>
<description><![CDATA[Para fechar oficialmente o ano de 2009, vai rolar uma edição do curso Lightroom Profissional no IIF,]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Para fechar oficialmente o ano de 2009, vai rolar uma edição do curso <a href="http://alexvillegas.wordpress.com/cursos/lightroom-profissional/" target="_blank">Lightroom Profissional</a> no <a href="http://www.iif.com.br">IIF</a>, aqui em Sampa, nos dias 14 e 15/12.</p>
<p>Serão 16 horas de aula, voltadas ao estudo de todos os recursos do Lightroom, além de dicas para facilitar o uso cotidiano do software e uma olhadinha no Lightroom 3, que está em pleno desenvolvimento!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lightroom 3 BETA Review]]></title>
<link>http://go2grl.wordpress.com/2009/11/28/lightroom-3-beta-review/</link>
<pubDate>Sat, 28 Nov 2009 17:16:59 +0000</pubDate>
<dc:creator>go2grl</dc:creator>
<guid>http://go2grl.wordpress.com/2009/11/28/lightroom-3-beta-review/</guid>
<description><![CDATA[Review, Accolades, and a Bug Disclaimer: This review is based solely upon my curiosity and thirst fo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="text-decoration:underline;">Review, Accolades, and a Bug</span></strong></p>
<p><em>Disclaimer:</em> This review is based solely upon my curiosity and thirst for knowledge. No bribes, coercion, reward, discount, or product has been offered. I claim no connection to Adobe and Lightroom other than the use of their products and have no personal connection to any individuals mentioned in this review. I refrained from reading any other reviews to maintain objectivity and freedom from outside influences.</p>
<p>As a new convert to <a href="http://www.adobe.com/products/photoshoplightroom/" target="_blank">Lightroom 2 </a>(LR2), for post-processing images, I learned to use the product through trial and error along with instruction on the <a href="http://www.photoshopuser.com/lightroom2/" target="_blank">Adobe Lightroom 2 Learning Center</a>, tips and tricks found through Twitter postings, and working through <a href="http://www.amazon.com/Adobe-Photoshop-Lightroom-Digital-Photographers/dp/0321555562" target="_blank">The Adobe Photoshop Lightroom 2 Book for Digital Photographers (Paperback),</a> by Scott Kelby.</p>
<p>Excited to learn what <a href="http://labs.adobe.com/technologies/lightroom3/" target="_blank">Lightroom 3 BETA </a>(LR3), has to offer, I read the list of upgraded features, based on user requests,  posted by <a href="http://www.lightroomqueen.com/blog/2009/10/22/whats-new-in-lightroom-3-beta-2/" target="_blank">Victoria Brampton, aka The Lightroom Queen</a>, a member of the Lightroom Team at Adobe.  I played my way down this list gaining a feel for the features found missing, wanted, or needed in LR2. Knowing you are not interested in a play-by-play commentary, I  listed the features I favored, the one bug I encountered, and conclude with my overall impression of the product.</p>
<p>v  <strong>Image Quality </strong></p>
<ul>
<li>Improved</li>
</ul>
<p>v  <strong>Performance</strong></p>
<ul>
<li>Clear previews in thumbnail grid</li>
</ul>
<p>v  <strong>Program opening</strong></p>
<ul>
<li>Backup window moved to program exit</li>
</ul>
<p>v  <strong>Import</strong></p>
<ul>
<li>New easy to use page with panels</li>
<li>Visible selections</li>
<li>Right-click folder selections</li>
</ul>
<p>v  <strong>Library</strong></p>
<ul>
<li>Publish and Sync to Flickr and hard drive</li>
</ul>
<p>v  <strong>Develop</strong></p>
<ul>
<li>Noise reduction improvements</li>
<li>New Edge Detail slider</li>
<li>Sharpening visible at less than 1:1</li>
<li>New Effects panel</li>
<li>Crop choices</li>
</ul>
<p>v  <strong>Print</strong></p>
<ul>
<li>Custom layouts</li>
<li>Drag and drop</li>
<li>Background color</li>
</ul>
<p>v  <strong>Watermarking</strong></p>
<ul>
<li>Allowed in all functions</li>
</ul>
<p><strong><span style="text-decoration:underline;">BUG:</span></strong></p>
<p>While testing different export features, a few original (test) files were lost. Poof! Vanished! Completely disappeared! I did not change the folder name, move it, or touch anything else. I finished with my post-processing and saved changes to original images. Then, I attempted to export images back to the original folder….the window popped up saying it could not find the originals and I selected OK. Closed LR3, re-opened…… Cannot find Originals! What?  I hunted, searched, scoured the computer, every folder, gone.. Previews still show up and I cannot do anything with them. Cannot save new jpeg’s, edit, or print.</p>
<p>So, of course, since this is testing; I repeated the experiment with new test images…nothing bad happened. Images were all there… I more than likely failed to click on the use new names instead of overwrite however, tried this both ways here and in LR2. No loss….. a fluke? I don’t know. I searched the Lightroom forum, one other person had asked the same thing about LR2. That got my attention however, only found answers about having moved the folder or some other action. Nope that is not what happened. Folder is still in the same place with the same name, it’s just empty!</p>
<p><strong>Conclusion:</strong></p>
<p>Overall, I am impressed with previously unknown, missing and needed upgrades, and look forward to the future release of Lightroom 3. This was an exceptional learning experience and I commend Adobe for actively listening to the users and transforming the input into simple, friendly, and powerful features.</p>
<p>If any of you can solve the missing images issue, or enlighten me on how to save something usable from previews, in case this happens again, I would appreciate your advice.</p>
<p>Please feel free to comment.</p>
<p>Signing off,</p>
<p>Go2Grl</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IndiMaD User Group meetup in Bangalore  6th December 2009 4 - 6 pm]]></title>
<link>http://ambatisreedhar.wordpress.com/2009/11/28/indimad-user-group-meetup-in-bangalore-6th-december-2009-4-6-pm/</link>
<pubDate>Sat, 28 Nov 2009 15:47:22 +0000</pubDate>
<dc:creator>ambatisreedhar</dc:creator>
<guid>http://ambatisreedhar.wordpress.com/2009/11/28/indimad-user-group-meetup-in-bangalore-6th-december-2009-4-6-pm/</guid>
<description><![CDATA[Event: IndiMaD User Group meetup in Bangalore. Date: 6th December 2009 (Sunday) Time: 4pm-6pm IST Ve]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div>
<p><strong>Event:</strong> IndiMaD User Group meetup in Bangalore.</p>
<p><strong>Date</strong><strong>:</strong> 6th December 2009 (Sunday)</p>
<p><strong>Time:</strong> 4pm-6pm IST</p>
<p><strong>Venue:</strong> Cafe Coffee Day, HM Towers, Next to Eva Mall (CROMA Store), 58, Brigade Road Bangalore-560025</p>
<p><strong>Fee:</strong> Nothing other than one drink at CCD.</p>
<p><strong>Tentative Topic:</strong></p>
<p>Flash Player 10.1 and AIR on future smartphones v/s Flash Lite penetration on devices today &#8211; how do developers see it?</p>
<p>Open discussion and sharing of views on the current scenario where the Flash Lite Distributable Player has been discontinued with a focus on Flash player 10.1, AIR, Flex framework and Flash on iPhone.</p>
<p>We encourage the meetup to be casual with good discussions and sharing of experiences amongst us.</p>
<p><strong>Contacts:</strong></p>
<p>Mariam Dholkawala / Vivek Kumar (flashliteindia[at]gmail.com)</p>
<p>The meetup is casual with a tentative topic discussion on the future of Flash on mobiles. Members attending will get Swags from Adobe &#8211; T-shirts, coffee mugs etc<br />
The event details can be accessed from the link &#8211; <a href="http://indimad061209.eventbrite.com/">http://indimad061209.eventbrite.com/</a></p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Apakah Flash ?]]></title>
<link>http://webdesainer.wordpress.com/2009/11/28/apakah-flash/</link>
<pubDate>Sat, 28 Nov 2009 13:17:41 +0000</pubDate>
<dc:creator>Tomy Hendarman</dc:creator>
<guid>http://webdesainer.wordpress.com/2009/11/28/apakah-flash/</guid>
<description><![CDATA[Adobe Flash CS4 Logo Adobe Flash CS4 Adobe Flash adalah sebuah aplikasi (baca: platform) untuk membu]]></description>
<content:encoded><![CDATA[Adobe Flash CS4 Logo Adobe Flash CS4 Adobe Flash adalah sebuah aplikasi (baca: platform) untuk membu]]></content:encoded>
</item>
<item>
<title><![CDATA[ارائه نسخه جدید فتوشاپ موبایل برای تلفن همراه گوگل]]></title>
<link>http://khodadadi.wordpress.com/2009/11/28/photoshop-android/</link>
<pubDate>Sat, 28 Nov 2009 09:35:34 +0000</pubDate>
<dc:creator>خدادادی</dc:creator>
<guid>http://khodadadi.wordpress.com/2009/11/28/photoshop-android/</guid>
<description><![CDATA[بعد از ارائه نسخه iPhone از نرم افزار محبوب فتوشاپ (تقریبا یک ماه قبل)، شرکت عظیم Adobe نسخه‌ای را ه]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p align="justify">بعد از ارائه نسخه iPhone از نرم افزار محبوب فتوشاپ (تقریبا یک ماه قبل)، شرکت عظیم Adobe نسخه‌ای را هم برای موبایل اندرویدگوگل به بازار ارائه داده است. این نسخه که با تمامی مدل‌های gPhone موجود سازگاری دارد به کاربر اجازه ویرایش و به اشتراک‌گذاری عکس‌ها را می‌دهد. همچنین کاربر می‌تواند از 2 گیگابایت فضای رایگان سرویس Adobe&#8217;s online استفاده نماید.</p>
<p align="justify">برخی از امکانات این نسخه عبارت است از:</p>
<ul>
<li>
<div align="justify">بردین، چرخاندن و تصحیح رنگ‌ها با استفاده از لمس صفحه</div>
</li>
<li>
<div align="justify">تغییر فوکوس یا سیاه و سفید کردن تصاویر فقط با یک کلیک</div>
</li>
<li>
<div align="justify">وجود مرورگر عکس برای مشاهده عکس‌های آنلاین</div>
</li>
</ul>
<p align="justify">&#160;</p>
<p align="justify">برای کسب اطلاعات بیشتر می‌توانید <a href="http://static.photoshop.com/express/mobile/android/videos/web.mp4" target="_blank">این ویدئو را مشاهده نمایید</a><a href="http://khodadadi.wordpress.com/" target="_blank">.</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Descargate gratis Adobe Reader Portable v9.2]]></title>
<link>http://eugeniocity.wordpress.com/2009/11/28/descargate-gratis-adobe-reader-portable-v9-2/</link>
<pubDate>Sat, 28 Nov 2009 08:15:00 +0000</pubDate>
<dc:creator>-Legna-</dc:creator>
<guid>http://eugeniocity.wordpress.com/2009/11/28/descargate-gratis-adobe-reader-portable-v9-2/</guid>
<description><![CDATA[El formato PDF es el estándar mas difundido para publicar documentos listos para ser impresos y leid]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="border-right:0;border-top:0;display:block;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;" height="341" alt="" src="http://i41.tinypic.com/2lwsvoo.jpg" width="323" border="0" /></p>
<p>El formato <strong>PDF </strong>es el estándar mas difundido para publicar documentos listos para ser impresos y leidos en pantalla. A diferencia de otros ficheros, PDF encapsula graficos y fuentes para que se vean igual en cualquier ordenador.</p>
<p><strong>Adobe Reader es el lector oficial de ficheros PDF</strong>. Compatible con el estandar PDF 1.7 y anteriores, <strong>Adobe Reader te permite visualizar los documentos en la mayoria de navegadores o usando el lector por separado.</strong></p>
<p>El punto fuerte de Adobe Reader es la potencia de sus herramientas, con las cuales puedes moverte con facilidad por las paginas, seleccionar texto o imagenes, asi como sacar instantaneas al portapapeles.</p>
<p>Especial cuidado se ha puesto en la accesibilidad. Adobe Reader no solo soporta la lectura a pantalla completa, sino que cuenta con una lupa integrada, compatibilidad con lectura en voz alta y un asistente de accesibilidad con el que Adobe Reader ayuda a hacer mas legibles los documentos para quienes tengan problemas de vision.</p>
<p> <!--more-->
<p><strong>Idioma: Ingles     <br />Peso: 49.3 Mb</strong></p>
<p><a href="http://uploading.com/files/5231dc74/Portable_Adobe_Reader_9.2.0.rar/" target="_blank"><img title="85909_descargar2" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="57" alt="85909_descargar2" src="http://eugeniocity.files.wordpress.com/2009/11/85909_descargar24.gif?w=176&#038;h=57" width="176" border="0" /></a>&#160;</p>
<p><a href="http://www.descargargrati.tk">www.descargargrati.tk</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ghost town Cabezon]]></title>
<link>http://evangelineartphotography.wordpress.com/2009/11/28/ghost-town-cabezon/</link>
<pubDate>Sat, 28 Nov 2009 02:48:30 +0000</pubDate>
<dc:creator>Evangeline Art Photography</dc:creator>
<guid>http://evangelineartphotography.wordpress.com/2009/11/28/ghost-town-cabezon/</guid>
<description><![CDATA[Post Office, Cabezon by Evangeline Chavez The village was started in the 1870&#8217;s and was origin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://evangelineartphotography.wordpress.com/files/2009/11/post-office-cabezone2.jpg"><img class="aligncenter size-medium wp-image-84" title="Post Office,  Cabezon" src="http://evangelineartphotography.wordpress.com/files/2009/11/post-office-cabezone2.jpg?w=300" alt="" width="272" height="182" /></a></p>
<p style="text-align:center;"><strong>Post Office, Cabezon</strong> by Evangeline Chavez</p>
<p>The<a href="http://www.sandovalsignpost.com/jun04/html/around_town.html" target="_self"> village</a> was started in the 1870&#8217;s and was originally called Posta, (the post),  It was the focal point for farming and raising sheep. It was also a stage stop between Santa Fe and the military outpost at Fort Wingate. It quickly grew with the mandatory saloons, blacksmith shop, stores.  Richard Heller ran the<a href="http://www.lamymuseum.org/acentury.html" target="_self"> Heller Store</a> and post office for a good many years. <a href="http://www.amdaclub.com/WhatsNew/Cabezon.html" target="_self"> Cabezon</a> flourished  until the 1940&#8217;s. Mr. Heller died in 1947, and the Rio Puerco dried up. The post office officially closed in 1949</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Iglesia San Jose de Cabezon]]></title>
<link>http://evangelineartphotography.wordpress.com/2009/11/28/iglesia-san-jose-de-cabezon/</link>
<pubDate>Sat, 28 Nov 2009 02:01:27 +0000</pubDate>
<dc:creator>Evangeline Art Photography</dc:creator>
<guid>http://evangelineartphotography.wordpress.com/2009/11/28/iglesia-san-jose-de-cabezon/</guid>
<description><![CDATA[Iglesia San Jose de Cabezon by Evangeline Chavez Iglesia San Jose de Cabezon, originally built in 18]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><a href="http://evangelineartphotography.wordpress.com/files/2009/11/fiesta-of-saint-joseph-in-cabezone4.jpg"><img class="size-full wp-image-67 aligncenter" title="Iglesia San Jose de Cabezon" src="http://evangelineartphotography.wordpress.com/files/2009/11/fiesta-of-saint-joseph-in-cabezone4.jpg" alt="" width="140" height="208" /></a></p>
<p style="text-align:center;"><a href="http://www.sandovalsignpost.com/jun04/html/around_town.html" target="_self">Iglesia San Jose de Cabezon</a> by Evangeline Chavez</p>
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:center;">
<p style="text-align:left;"><a href="http://www.sandovalsignpost.com/jun04/html/around_town.html" target="_self">Iglesia San Jose de Cabezon</a>, originally built in 1894, is now on private land.  It is open to the public during the year for a mass in honor of San Jose. In the background you can see Cabezone Peak.  <a href="http://www.blm.gov/nm/st/en/prog/recreation/rio_puerco/cabezon_peak.html" target="_self">Cabezone Peak</a> is derived from the Spanish noun “cabeza,” meaning “head,” and “Cabezon” translates as “big head.</p>
<p style="text-align:left;">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Last Minute Web Concept]]></title>
<link>http://graphixthatmove.wordpress.com/2009/11/28/last-minute-web-concept/</link>
<pubDate>Sat, 28 Nov 2009 00:59:07 +0000</pubDate>
<dc:creator>steve</dc:creator>
<guid>http://graphixthatmove.wordpress.com/2009/11/28/last-minute-web-concept/</guid>
<description><![CDATA[I almost forget to mention this one. Aside from the last six webpage concepts I created, I was asked]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I almost forget to mention this one. Aside from the last six webpage concepts I created, I was asked to produce a seventh. To give this project a challenge, it had to be pushed in less than twenty-four hours. This wasn&#8217;t too difficult a challenge but I do appreciate when I have at least a forty-eight hour window.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Webpage Concepts]]></title>
<link>http://graphixthatmove.wordpress.com/2009/11/27/webpage-concepts/</link>
<pubDate>Fri, 27 Nov 2009 23:47:42 +0000</pubDate>
<dc:creator>steve</dc:creator>
<guid>http://graphixthatmove.wordpress.com/2009/11/27/webpage-concepts/</guid>
<description><![CDATA[Lately I have been working on a few webpage concepts for the Radioactive Energy Drink. I have create]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Lately I have been working on a few webpage concepts for the Radioactive Energy Drink. I have created a set of six designs over the past three-and-a-half weeks. Each set was designed in Photoshop with a final copy as both JPG and PNG files. I did not find anything task too difficult while designing these concepts. I take that back; I did have a compression issue. I am not able to compress the raw PSD file small enough to send via email. However, the JPG and PNG files were sent with ease. Now it is a matter of waiting for client approval.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aside – Adobe Bloatware]]></title>
<link>http://nsrd.wordpress.com/2009/11/28/aside-%e2%80%93%c2%a0adobe-bloatware/</link>
<pubDate>Fri, 27 Nov 2009 20:01:42 +0000</pubDate>
<dc:creator>Preston</dc:creator>
<guid>http://nsrd.wordpress.com/2009/11/28/aside-%e2%80%93%c2%a0adobe-bloatware/</guid>
<description><![CDATA[My partner for the last 13 years is a graphic designer (and an excellent photographer to boot). As y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>My partner for the last 13 years is a graphic designer (and an excellent photographer to boot). As you may imagine, over the years, I&#8217;ve watched him use a successive number of Adobe products. I even periodically got cast offs myself – e.g., floating around on my system I&#8217;ve got a first generation InDesign that I had been working on my book in for a while.</p>
<p>One thing I&#8217;ve noticed over the years is that it doesn&#8217;t matter how fast his systems are, the one thing that will generally slow them down are Adobe products. The only time this isn&#8217;t the case is when he has 10GB of RAM or more.</p>
<p>But this isn&#8217;t just limited to the &#8220;pro&#8221; Adobe products. So when John Nack over at Adobe had the gall to say that <a title="John Nack on Adobe" href="http://blogs.adobe.com/jnack/2009/11/photoshop_vs_fireworks_quick_clarifications.html" target="_blank">Adobe are &#8220;sensitive to bloat&#8221;</a>, I couldn&#8217;t believe that anyone from Adobe could say that with a straight face.</p>
<p>For goodness sakes, even Acrobat Reader, the absolute (should be minimalist) stable horse of Adobe is bloated and slow. It&#8217;s practically zombie-esque. You launch it and it staggers out of its directory/crypt, shakes off the spider webs, looks around for some fresh brains to snack on, begrudgingly brings up a window, freezes for a little while in case there&#8217;s a zombie hunter around, then eventually opens the requested document.</p>
<p>Then there&#8217;s Flash. That travesty of an animation product that&#8217;s actually electronic tar. You know what I do when I see a vendor using Flash for something I need to do? I clear my calendar. I quit every app I have to give the memory leaking sucker enough room to work for a while before crashing, then I sit and wait for it to do its best at trashing my systems. Honestly, the best speed up I got with web browsing was when I installed <a title="ClickToFlash for Safari" href="http://github.com/rentzsch/clicktoflash" target="_blank">ClickToFlash for Safari</a>. It makes web browsing a dream, and means I can actually go to the <a title="Sydney Morning Herald" href="http://www.smh.com.au" target="_blank">Sydney Morning Herald</a> without 6-10 flash apps starting every time I go to the front page*. It&#8217;s amazing the number of sites you can go to and have a smooth clean web browsing experience when you&#8217;ve got Flash turned <em>off</em>.</p>
<p>There&#8217;s no excuse for such tired and frumpy software. Anyone with a Mac for instance will tell you how quickly Apple&#8217;s Preview launches and starts displaying PDFs. On the rare instances where you have to, for some esoteric compatibility reason, open Acrobat Reader instead, well, you want to go fix yourself a coffee while you wait for it to load.</p>
<p>Honestly, Adobe should maybe spend a year or two demanding that developers stop adding code <em>and</em> functionality, and instead learn some lessons and start <em><a title="-2000 lines" href="http://www.folklore.org/StoryView.py?project=Macintosh&#38;story=Negative_2000_Lines_Of_Code.txt&#38;sortOrder=Sort%20by%20Date&#38;detail=medium&#38;search=lines" target="_blank">subtracting</a></em> code.</p>
<p>&#8211;<br />
<em>* SMH would undoubtedly argue that it&#8217;s a &#8220;Mac problem&#8221;. Honestly, much as I love that paper, it&#8217;s so anti-Apple that it&#8217;s a wonder someone hasn&#8217;t founded a Journalistic Bias Awards just to give them the inaugural golden bong for to celebrate whatever crap they smoke before they write stories about Apple. They make that insidious piece of online garbage, The Inquirer, look fair and balanced a lot of the time!</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Putting Color In A Shape on InDesign]]></title>
<link>http://sfarmer2.wordpress.com/2009/10/19/putting-color-in-a-shape-on-indesign/</link>
<pubDate>Mon, 19 Oct 2009 06:20:13 +0000</pubDate>
<dc:creator>sfarmer2</dc:creator>
<guid>http://sfarmer2.wordpress.com/2009/10/19/putting-color-in-a-shape-on-indesign/</guid>
<description><![CDATA[When one first gets introduced to Adobe InDesign, the program can seem quite complicated.  There are]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>When one first gets introduced to <a href="http://tryit.adobe.com/us/cs4/indesign/tw1/?sdid=ETRTF">Adobe InDesign</a>, the program can seem quite complicated.  There are so many different little actions that can be done that even the simplest of things can easily be forgotten or confused with other actions.  What I would like to explain to you is how to put color in a shape as well as put color on the border.</p>
<p>1.)  First, Open Adobe InDesign</p>
<p>2.)  Then Create a new document</p>
<p>3.)  Select a shape from the toolbar on the left (rectangle, ellipse, or polygon tool)</p>
<p>4.)  Go to the bottom of the tool bar and double flick &#8220;fill&#8221; (It will be a white square with a red diagonal line through the center)</p>
<p>5.)  A box will appear with a multitude of colors.  Use this to choose the color for your shape</p>
<p>****To Put Color on the Outline of a Shape:</p>
<p>1.)  Double click &#8220;stroke&#8221; (which will be to the right of the &#8220;fill&#8221; tool&#8211;it is a square with a black line around it)</p>
<p>And there you go!  You have put color within an object and learned how to change the color of the outline of the object!</p>
<p>While these are simple steps, it is always helpful to have a reminder in the little process of things within these types of programs.</p>
<p><a style="text-decoration:none;" href="http://sfarmer2.wordpress.com/files/2009/11/adobe-indesign.jpg"><img class="aligncenter size-full wp-image-317" title="adobe-indesign" src="http://sfarmer2.wordpress.com/files/2009/11/adobe-indesign.jpg" alt="" width="300" height="300" /></a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
