<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>studio&#124;chris · Greenwood, SC &#187; Freebies</title>
	<atom:link href="http://www.studiochris.us/category/studiochris-shop/freebies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studiochris.us</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 16:58:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom:link rel='hub' href='http://www.studiochris.us/?pushpress=hub'/>
<cloud domain='www.studiochris.us' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>OpenX Loader ActionScript 3 Class for Adobe AIR</title>
		<link>http://www.studiochris.us/2010/openx-loader-actionscript-3-class-for-adobe-air/</link>
		<comments>http://www.studiochris.us/2010/openx-loader-actionscript-3-class-for-adobe-air/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 06:12:34 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[adobe flash]]></category>
		<category><![CDATA[adobe flash builder]]></category>
		<category><![CDATA[adobe flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[openx]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2010/openx-loader-actionscript-3-class-for-adobe-air/</guid>
		<description><![CDATA[Adding advertising through OpenX into Adobe AIR applications is super easy with this free ActionScript 3 class. It can be used in the Flash IDE, Flex/Flash Builder or in full AS3 AIR applications.]]></description>
			<content:encoded><![CDATA[<p><img class="photoframe" style="padding: 10px;" title="openx_air" src="http://www.studiochris.us/site/wp-content/uploads/2009/12/openx_air_thumb.jpg" border="0" alt="openx_air" width="560" height="143" /></p>
<p>Following <a href="http://www.studiochris.us/archive/2009/delivering-advertising-to-adobe-air-apps-with-openx/">my article</a> on loading <a href="http://www.openx.org">OpenX </a>ads in <a href="http://www.adobe.com/products/air/">Adobe AIR</a> applications, I’ve written a very simple class to make it a little easier. This should be able to load in both image and HTML/text based banners with no problem.</p>
<p><span id="more-764"></span></p>
<p><strong>This class will NOT run in the regular Flash Player. It requires Adobe AIR to function. Also, banner clicks from the Debug Launcher will NOT redirect properly (you&#8217;ll get a 404), but once the AIR app is compiled and installed links will work as they should and will be included in your OpenX stats.</strong></p>
<p style="text-align: center;"><p class="centered button"><a href="http://www.studiochris.us/download/OpenxLoader_1-0.zip" title="OpenxLoader AS3 Class">Download OpenxLoader AS3 Class</a><br/><span class="smaller">Downloaded 354 times.</span></p></p>
<h3>The Constructor Method</h3>
<p>Extends the <code>Sprite</code> class.</p>
<p><code>OpenxLoader(w:Number, h:Number, url:String)</code></p>
<ul>
<li>w: width of the HTMLLoader</li>
<li>h: height of the HTMLLoader</li>
<li>url: URL to load in the HTMLLoader (the code of this page should have your OpenX invocation code with all applicable zones)</li>
</ul>
<h3>Public Properties</h3>
<ul>
<li><strong>html</strong>: Public reference to the HTMLLoader instance</li>
<li><strong>height</strong>: Height of the HTMLLoader instance</li>
<li><strong>width</strong>: Width of the HTMLLoader instance</li>
<li><strong>url</strong>: URL to load in the HTMLLoader instance (automatically loads the new URL when changed)</li>
</ul>
<h3>Public Methods</h3>
<ul>
<li><strong>refresh()</strong>: Reloads the content in the HTMLLoader instance</li>
</ul>
<h3>Basic Example</h3>
<pre class="brush: as3">//Import the class
import us.studiochris.openx.OpenxLoader;

//Create a new instance of the class
var ads:OpenxLoader = new OpenxLoader(125, 125, "http://domain.com/open-x-ad-page.html");

//Add the OpenxLoader to the Stage
addChild(ads);</pre>
<h3>Auto-refreshing Example</h3>
<pre class="brush: as3">//Import the class
import us.studiochris.openx.OpenxLoader;

//Create a new instance of the class
var ads:OpenxLoader = new OpenxLoader(125, 125, "http://domain.com/open-x-ad-page.html");

//Add the OpenxLoader to the Stage
addChild(ads);

//Create a new Timer to control the refresh rate
var t:Timer = new Timer(60000,1); // 1 minute refresh rate in milliseconds and we want to run it once

//Start the Timer
t.start();

//Add an Event Listener to the Timer and define the reloadAds function
t.addEventListener(TimerEvent.TIMER, reloadAds);

function reloadAds(e:TimerEvent):void
{
	//Call the refresh method of the OpenxLoader (has the effect of a rotating banner)
	ads.refresh();

	t.start(); //start the timer again so it'll call this function again in one minute
}</pre>
<h3>Flex 4 Framework Basic Example</h3>
<p>The Syntax highlighter is wreaking havoc with the following code, but it should give you an idea on how to use the class. As an alternative, <a href="http://www.studiochris.us/code/AdLoaderSample.mxml" title="Flex 4 OpenX Ad Loader Example">here&#8217;s the actual MXML file</a> for the project.</p>
<pre class="brush: plain">
<?xml version="1.0" encoding="utf-8"?>
<s:Application name="Flex4_AdLoader_Example" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" initialize="init();">
		<fx:Script>

				import us.studiochris.openx.OpenxLoader;

				private function init():void
				{
					var adloader:OpenxLoader = new OpenxLoader(600,600,"http://www.google.com");
					box.addChild(adloader);
				}

		</fx:Script>
	<s:SpriteVisualElement id="box" />
</s:Application></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2010/openx-loader-actionscript-3-class-for-adobe-air/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Brush Manager Support for Painter 11</title>
		<link>http://www.studiochris.us/2009/brush-manager-support-for-painter-11/</link>
		<comments>http://www.studiochris.us/2009/brush-manager-support-for-painter-11/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 21:36:16 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Corel Painter]]></category>
		<category><![CDATA[Digital Painting]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[brush installer]]></category>
		<category><![CDATA[brush manager]]></category>
		<category><![CDATA[Corel Painter 11]]></category>
		<category><![CDATA[install brushes]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2009/brush-manager-support-for-painter-11/</guid>
		<description><![CDATA[Corel began shipping the boxed version of Painter 11 today, so it is the perfect day to introduce public support for it in the <a href="http://www.studiochris.us/software/brush-manager/">Studio&#124;chris Brush Manager</a>.]]></description>
			<content:encoded><![CDATA[<p>Corel began shipping the boxed version of <a onmouseover="window.status='http://www.corel.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.anrdoezrs.net/click-3378653-10274094?url=http%3A%2F%2Fapps.corel.com%2Fstore%2Fproductpage.asp%3Fpartnumber%3DOL_PF11EN%26store%3DUS%26trkid%3DCJ&amp;cjsku=PTRXENGPCM" target="_top">Painter 11</a> <img src="http://www.tqlkg.com/image-3378653-10274094" border="0" alt="" width="1" height="1" /> today, so it is the perfect day to introduce public support for it in the <a href="http://www.studiochris.us/software/brush-manager/">Studio|chris Brush Manager</a>. All new installs will automatically be the latest version, and for those of you who have already installed, just open the Settings panel and click the “Check for Updates” button to start the process. Be sure to update your settings after the installation as well.</p>
<p><img class="photoframe" title="brush-manager-061012-20090318" src="http://www.studiochris.us/blog/wp-content/uploads/2009/03/brushmanager06101220090318.jpg" border="0" alt="brush-manager-061012-20090318" width="567" height="575" /></p>
<p>From the outside, not much has changed between this version and the last, but there were a couple of very minor bugs fixed:</p>
<ul>
<li>Update install ran twice during the update process in earlier versions (this caused updates to take twice as long). During the next update cycle, the update will install only one time.</li>
<li>The RSS panel at the bottom of the window loaded with a lot of filler text while waiting on to see if you had an active internet connection. That clutter has been removed. As a result, it takes the RSS panel a little while longer to populate, but at least you don’t see overlapping text while waiting.</li>
</ul>
<p>You’ll also notice the large banner for <a href="http://www.painterlab.com">painterLab.com</a> (which is still in the works, but you may subscribe and know exactly when it launches!) has been removed and replaced with sponsor banners. Please visit and support the sponsors as they are helping to keep the Installer portion of the Brush Manager free for everyone and also supporting future developments. If you’d like to support development directly, you may also <a href="http://www.studiochris.us/donate">donate to the project with PayPal</a>.</p>
<p>Also, I’d like to give a quick thanks to everyone for the kind words about the Brush Manager, here, in the forums and privately. Hope you all continue to enjoy it – things will only get better!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2009/brush-manager-support-for-painter-11/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Goodbye Brush Installer &#8211; Hello Brush Manager</title>
		<link>http://www.studiochris.us/2009/goodbye-brush-installer-hello-brush-manager/</link>
		<comments>http://www.studiochris.us/2009/goodbye-brush-installer-hello-brush-manager/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 19:14:45 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[brush manager]]></category>
		<category><![CDATA[Corel Painter]]></category>
		<category><![CDATA[Corel Painter brushes]]></category>
		<category><![CDATA[install brushes]]></category>
		<category><![CDATA[studio chris software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2009/goodbye-brush-installer-hello-brush-manager/</guid>
		<description><![CDATA[Studio&#124;chris is happy to announce the newest release of the Studio&#124;chris Brush Installer, completely refreshed and renamed the <a href="http://www.studiochris.us/software/brush-manager/">Studio&#124;chris Brush Manager</a> – a dedicated solution to installing and maintaining Corel Painter brush libraries and categories.]]></description>
			<content:encoded><![CDATA[<p>Studio|chris is happy to announce the newest release of the Studio|chris Brush Installer, completely refreshed and renamed as the <a href="http://www.studiochris.us/software/brush-manager/">Studio|chris Brush Manager</a> – a dedicated solution to installing and maintaining Corel Painter brush libraries and categories. This release marks the first public release carrying the new Brush Manager name. This is an exciting release because it brings in a lot of features requested by the community and brings compatibility to every version of Painter, all the way back to version 7 and also into the foreseeable future. The preliminary versions of the Brush Installer were merely a proof-of-concept – it’s time to get serious. Here’s what’s new:</p>
<ul>
<li><strong>Refreshed user interface</strong> – The interface has undergone a massive overhaul to allow a simplified brush installation process and also allow for future updates to bring more functionality.</li>
<li><strong>The Drop Box</strong> &#8211; The three installation boxes of the previous version are gone and replaced with a single drop box that just works, no matter your operating system.</li>
<li><strong>Settings &amp; Utilities Panel</strong> – Yes, the Brush Manager now has user settings. This brings in support for the 64-bit versions of Windows, multiple versions of Corel Painter, and custom install locations.</li>
<li><strong>Application Updates</strong> – Located in the Settings panel, users with an active internet connection may choose to install updates to the Brush Manager with two clicks – one to check for updates and one to download and install.</li>
</ul>
<p>The Brush Manager 0.6 is immediately available for <a href="http://www.studiochris.us/software/brush-manager">download</a> and installation. Hope you all enjoy it!</p>
<p><img class="photoframe" title="Studio|chris Brush Manager 0.6" src="http://www.studiochris.us/blog/wp-content/uploads/2009/01/brushmanagerscreenshot1.jpg" border="0" alt="Studio|chris Brush Manager 0.6" width="550" height="557" /></p>
<p><span style="color: #808080;">Install brushes to Corel Painter with no effort at all. Drop a ZIP file containing a brush category onto the drop box and watch the Brush Manager do all the work for you in seconds!</span></p>
<p><span style="color: #808080;"><span style="color: #000000;">Also &#8211; many thanks to all the testers who have helped along the way. I couldn&#8217;t have put this out for everyone without your help.</span><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2009/goodbye-brush-installer-hello-brush-manager/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What&#8217;s Next for the Studio&#124;chris Brush Installer?</title>
		<link>http://www.studiochris.us/2008/whats-next-for-the-studiochris-brush-installer/</link>
		<comments>http://www.studiochris.us/2008/whats-next-for-the-studiochris-brush-installer/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 03:06:08 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[corel painter x]]></category>
		<category><![CDATA[studio chris software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/whats-next-for-the-studiochris-brush-installer/</guid>
		<description><![CDATA[Behind the scenes, I’ve been working on the next version of the <a href="http://www.studiochris.us/software/brush-manager/">Studio&#124;chris Brush Installer</a>. The 0.6 beta branch will bring a lot of changes and increased functionality.]]></description>
			<content:encoded><![CDATA[<p style="border: 1px solid #ffcc00; padding: 24px; background-color: #ffffcc;" align="left"><strong>UPDATE:</strong> The Studio|chris Brush Installer has been discontinued and is now the <a href="http://www.studiochris.us/software/brush-manager">Studio|chris Brush Manager</a>. This post exists only as an archive. The integrated installer and download links for the Brush Installer have been changed. To install the new, free <a href="http://www.studiochris.us/software/brush-manager">Brush Manager software</a>, visit the <a href="http://www.studiochris.us/software/brush-manager">Brush Manager’s main page</a>.</p>
<p align="left">Behind the scenes, I’ve been working on the next version of the <a href="http://www.studiochris.us/software/brush-manager/">Studio|chris Brush Installer</a>. The 0.6 beta branch will bring a lot of changes and increased functionality. A release date hasn’t been set, but here’s what to look forward to!</p>
<h3>A New Interface</h3>
<p align="left">The first thing you’ll probably notice is a new interface that is customized especially for the application. Things are still as simple as the original as far as installing brushes – simply drag and drop your brush ZIP file on your OS box and the installer takes care of the rest.</p>
<p align="left">The new interface is standardized over all operating systems, so Windows and OS X users will see the exact same interface. The screenshot below isn’t complete, but is a working prototype of the new interface.</p>
<p align="center"><img class="photoframe" title="brush_manager_concept" src="http://www.studiochris.us/blog/wp-content/uploads/2008/08/brush-manager-concept.jpg" border="0" alt="brush_manager_concept" width="575" height="468" /></p>
<h3>A New Name</h3>
<p>With the next release, the Studio|chris Brush Installer will become the Studio|chris Brush Manager. The Brush Installer name is going away in the next version for two very good reasons:</p>
<ol>
<li><strong>Documentation Confusion:</strong> “Have you installed the installer correctly using the install button on the website?” Yeah, I’m scratching my head too and I wrote the thing! The new Brush Manager name will help avoid this type of confusion.</li>
<li><strong>New Features:</strong> The new feature set for the application really expands the application to be more than just an installer, so the new name encompasses those new features and also future improvements.</li>
</ol>
<p>The new name is set in stone for the foreseen future of the application.</p>
<h3>A New Feature Set</h3>
<p>I mentioned some new features in the previous section. Here are some of them:</p>
<ul>
<li>Settings panel accessed by clicking the new Settings button (wrench icon) in the title bar. That messy Vista UAC checkbox is going in there with a lot of other options.</li>
<li>Install brushes to Painter 7 through Painter X.1, even if you’ve customized the location of the Painter Brushes folder (ie. “I install all of my applications to D drive instead of C drive.”). This will also bring support to Windows Vista 64-bit. Thanks Les and Sue.</li>
<li>Automated updates, not to be confused with automatic updates. Updates will no longer require visiting the website to install the new version. For updates to 0.6 and beyond, just open the settings panel and click the update tab to check for and install updates.</li>
<li>The new Manage Brushes tab (will not be active in 0.6) contains functions to backup, delete, deactivate and reactivate brush categories. The Manage Brushes tab will become active in version 0.7 for users who wish to purchase an upgrade package. The Install Brushes tab will always remain free.</li>
<li>In the background, and included as part of the new settings, you may choose to activate “logging” to log where files are being placed while using the Install Brushes tab. This will be useful in troubleshooting.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/whats-next-for-the-studiochris-brush-installer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Studio&#124;chris Brush Installer Update (0.5.2b)</title>
		<link>http://www.studiochris.us/2008/studiochris-brush-installer-update-052b/</link>
		<comments>http://www.studiochris.us/2008/studiochris-brush-installer-update-052b/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 07:19:48 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[corel painter x]]></category>
		<category><![CDATA[studio chris software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/studiochris-brush-installer-update-052b/</guid>
		<description><![CDATA[The <a href="http://www.studiochris.us/software/brush-installer">Studio&#124;chris Brush Installer version 0.5.2b</a> introduces another compatibility fix for Microsoft Windows Vista (all versions). Vista users should upgrade immediately. Windows XP and Mac OS X users are unaffected by this update.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.studiochris.us/software/brush-installer">Studio|chris Brush Installer version 0.5.2b</a> introduces another compatibility fix for Microsoft Windows Vista (all versions). Vista users should upgrade immediately. Windows XP and Mac OS X users are unaffected by this update.</p>
<p>If installing this update, please uninstall previous versions using Add/Remove Programs in the Windows XP Control Panel or Programs and Features in Windows Vista. Mac users may uninstall by dragging the application in /Applications/Studio-Chris to the trash.</p>
<p>Barring other compatibility issues, the next version will include the settings panel as well as an automated update procedure.</p>
<h3>How do I know which version is installed?</h3>
<p>The version number is located in the user interface of the Brush Installer, below the application’s name.</p>
<p align="center"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" title="brush_installer_version" src="http://www.studiochris.us/blog/wp-content/uploads/2008/07/brush-installer-version.png" border="0" alt="brush_installer_version" width="275" height="174" /></p>
<h3>Getting Help</h3>
<p>The new <a href="http://www.studiochris.us/support">Studio|chris Support Forum</a> has a dedicated <a href="http://www.studiochris.us/support/forum.php?id=2">section</a> for the Brush Installer. <a href="http://www.studiochris.us/support/register.php">Register</a> and post your questions there for any issues you may encounter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/studiochris-brush-installer-update-052b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brush Installer Beta Update (0.5.1b)</title>
		<link>http://www.studiochris.us/2008/brush-installer-beta-update-051b/</link>
		<comments>http://www.studiochris.us/2008/brush-installer-beta-update-051b/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 20:12:37 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[corel painter x]]></category>
		<category><![CDATA[studio chris software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/archive/2008/brush-installer-beta-update-051b/</guid>
		<description><![CDATA[The Studio&#124;chris Brush Installer for Corel Painter X has received its first update which is aimed specifically at Windows Vista users. This update brings compatibility with Vista’s User Access Control (UAC).]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.studiochris.us/software/brush-installer/"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" title="Studio|chris Brush Installer for Corel Painter X ver 0.5.1b" src="http://www.studiochris.us/blog/wp-content/uploads/2008/06/brush-installer-051b1.jpg" border="0" alt="Studio|chris Brush Installer for Corel Painter X ver 0.5.1b" width="575" height="500" /></a></p>
<p>The <a href="http://www.studiochris.us/software/brush-installer/">Studio|chris Brush Installer for Corel Painter X</a> has received its first update which is aimed specifically at Windows Vista users. This update brings compatibility with Vista’s User Access Control (UAC). If UAC is enabled on your system (which it is unless you’ve disabled it yourself), the Brush Installer will work “out of the box” by installing brushes to your specific user folder. Of note, this location is not a permanent location and custom brushes will be deleted by Painter if an emergency reset is needed (performed by holding the Shift key while starting Painter). In this event, at least you have an easy way to reinstall the lost brushes!</p>
<p>For those who have disabled UAC, the update still works out of the box for you as well, but you have an extra option. If the checkbox for “UAC is Disabled” is checked, your brushes will be installed to the Program Files directory as opposed to your specific user folder. Brushes installed to the Program Files directory are permanent and will not be deleted during emergency resets of Painter.</p>
<p>Sorry for the extra clutter in the interface, but a proper Settings panel is in the works to hide that checkbox when not needed and also to save whether the box has been checked or not between sessions. I felt it was important to release this intermediate update quickly without the Settings panel to ensure the installer is compatible with the majority of systems before moving on to more complex features.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/brush-installer-beta-update-051b/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A Free Gift for the Painter X Community</title>
		<link>http://www.studiochris.us/2008/a-free-gift-for-the-painter-x-community/</link>
		<comments>http://www.studiochris.us/2008/a-free-gift-for-the-painter-x-community/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 19:48:59 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[corel painter x]]></category>
		<category><![CDATA[studio chris software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/a-free-gift-to-the-painter-x-community/</guid>
		<description><![CDATA[Painter users, I present the first public beta of the Studio&#124;chris Brush Installer for Corel Painter X. I can&#8217;t even begin to count the number of questions posted on various forums across the web asking how to install brushes into Painter. Now the answer is shorter than the question and ten times as fast! Drag &#8230; <a href="http://www.studiochris.us/2008/a-free-gift-for-the-painter-x-community/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.studiochris.us/software/brush-installer/"><img class="photoframe" height="276" alt="brush_mgr_large" src="http://www.studiochris.us/blog/wp-content/uploads/2008/06/brush-mgr-large1.jpg" width="255" border="0"></a></p>
<p>Painter users, I present the first public beta of the Studio|chris Brush Installer for Corel Painter X. I can&#8217;t even begin to count the number of questions posted on various forums across the web asking how to install brushes into Painter. Now the answer is shorter than the question and ten times as fast! Drag and Drop.</p>
<p><strong>NEW [Expanded] Corel Painter X Brush Installation Directions:</strong></p>
<ol>
<li>Drag brush ZIP file onto your operating system inside of Brush Installer and release the mouse button. </li>
</ol>
<p>What? You expected more directions? It really is that easy. Studio|chris Brush Installer takes all the guessing away from where to install Painter brushes because it knows where to put them and installs them automatically for you!</p>
<p>Go check out the <a href="http://www.studiochris.us/software/brush-installer/">master release page</a> for all the details and the install badge!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2008/a-free-gift-for-the-painter-x-community/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>November Freebie!</title>
		<link>http://www.studiochris.us/2007/november-freebie/</link>
		<comments>http://www.studiochris.us/2007/november-freebie/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 19:20:21 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Studio|chris Shop]]></category>
		<category><![CDATA[fine_art_print]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/november-freebie/</guid>
		<description><![CDATA[For the remainder of this month, go pick up your very own tutorial on the painting of Tools of the Trade for absolutely nothing! More info in the Studio&#124;chris Shop!]]></description>
			<content:encoded><![CDATA[<p>For the remainder of this month, go pick up your very own tutorial on the painting of <a href="http://www.studiochris.us/shop/index.php?main_page=product_info&amp;cPath=4_1&amp;products_id=19" title="Tools of the Trade Fine Art Print">Tools of the Trade</a> for absolutely nothing! More info in the <a href="http://www.studiochris.us/shop" title="Studio|chris Shop">Studio|chris Shop</a>!</p>
<p align="center"><a href="http://www.studiochris.us/blog/wp-content/uploads/2007/11/toolsofthetrade.jpg"><img src="http://www.studiochris.us/blog/wp-content/uploads/2007/11/toolsofthetrade-thumb.jpg" id="id" style="border: 0px none " alt="toolsofthetrade" border="0" height="374" width="470" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2007/november-freebie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://www.studiochris.us/2007/windows-live-writer/</link>
		<comments>http://www.studiochris.us/2007/windows-live-writer/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 22:27:16 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Product Reviews]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.studiochris.us/blog/windows-live-writer/</guid>
		<description><![CDATA[© 2007 · Microsoft Corporation Here is a very cool, free (for now?) blog posting tool from Microsoft offered through Windows Live&#8217;s Beta program. This is my first post from it because I normally use Adobe® Contribute® for all of my posting. I don&#8217;t think I&#8217;ll be making the switch as a my primary blog &#8230; <a href="http://www.studiochris.us/2007/windows-live-writer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.studiochris.us/blog/wp-content/uploads/2007/10/writer-screenshot.jpg"><img src="http://www.studiochris.us/blog/wp-content/uploads/2007/10/writer-screenshot-thumb.jpg" id="id" alt="writer_screenshot" border="0" height="240" width="228" /></a><br />
<font color="#c0c0c0">© 2007 · Microsoft Corporation</font></p>
<p>Here is a very cool, free (for now?) blog posting tool from Microsoft offered through <a href="http://get.live.com/betas/home">Windows Live&#8217;s Beta program</a>.  This is my first post from it because I normally use <a href="http://www.adobe.com/products/contribute">Adobe® Contribute®</a> for all of my posting. I don&#8217;t think I&#8217;ll be making the switch as a my primary blog posting tool, but if you&#8217;re in the market for an offline blog posting tool check it out! It definitely is worth trying out.</p>
<p>Some features mentioned from the Microsoft Live site are:</p>
<ol>
<li>Compatible with your blog host &#8212; even if you host your own.</li>
<li>WYSIWYG post editing &#8212; The editor is like simplified <a href="http://office.microsoft.com/en-us/word/default.aspx">Microsoft Word</a>, and it downloaded my template just fine!</li>
<li>Rich media publishing &#8212; Photos, videos, maps, etc</li>
<li>Spell-check, tables, links, and a ton of other formatting enhancements</li>
<li>Probably the biggest feature &#8212; OFFLINE EDITING! Compose your blog posts, even if an internet connection isn&#8217;t available. On a plane and need to write? Write.. save&#8230; publish from your next airport&#8217;s Wi-Fi! How&#8217;s that for on the go blogging?</li>
</ol>
<p>There are more features, but I&#8217;ll let <a href="http://www.microsoft.com">Microsoft</a> do the talking there. Go download it and give it a try!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2007/windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebie Art Textures in the Shop!</title>
		<link>http://www.studiochris.us/2007/freebie-art-textures-in-the-shop/</link>
		<comments>http://www.studiochris.us/2007/freebie-art-textures-in-the-shop/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 10:33:39 +0000</pubDate>
		<dc:creator>Chris Price</dc:creator>
				<category><![CDATA[Digital Painting]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Studio|chris Shop]]></category>
		<category><![CDATA[Chris Price Art]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free-stuff]]></category>

		<guid isPermaLink="false">http://studiochris.us/blog/freebie-art-textures-in-the-shop/</guid>
		<description><![CDATA[UPDATE: This special will be up until August 11! Digital painters, check out the free textures in the Studio&#124;chris Shop! The newly listed texture collection, Art Materials #1 will be free until the end of the month. These textures were created with real art materials with the goal of being able to add a bit &#8230; <a href="http://www.studiochris.us/2007/freebie-art-textures-in-the-shop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong> UPDATE: This special will be up until August 11!</strong></p>
<p>Digital painters, check out the free textures in the Studio|chris Shop! The newly listed texture collection, <a href="http://studiochris.us/shop/index.php?main_page=product_info&amp;products_id=83">Art Materials #1</a> will be free until the end of the month. These textures were created with real art materials with the goal of being able to add a bit of traditional media to your digital paintings. The 600DPI textures are presented totally unedited from their original form allowing the greatest flexibility in styling to fit into your workflow.</p>
<p align="center"><img src="http://studiochris.us/blog/wp-content/uploads/2007/07/art-sample1.jpg" alt="Lily with applied Colored Pencil Texture" border="1" height="337" width="450" /><br />
<font color="#999999">© 2007 · Studio|chris</font></p>
<p>Create instant nondestructive colored pencil strokes in 3 easy steps:</p>
<ol>
<li> Convert one of the colored pencil textures to black and white.</li>
<li>Copy the texture onto a new layer above your original image in Screen mode.</li>
<li> Tweak with levels to get the desired effect.</li>
</ol>
<p>The resulting image may be used &#8220;as is&#8221; with no other work needed or would make a great underpainting for a start in Painter or Photoshop. Of course, these textures aren&#8217;t limited to photo based art, how many ways can you find to use them?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studiochris.us/2007/freebie-art-textures-in-the-shop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Database Caching 6/58 queries in 0.028 seconds using disk: basic
Object Caching 956/1076 objects using disk: basic

Served from: www.studiochris.us @ 2012-02-07 15:55:32 -->
