<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
 <channel>
  <title>PSPUG Message Board</title>
  <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?</link>
  <generator>http://www.eblah.com</generator>
  <description></description>
  <language>en</language>
  <item>
   <title>Resize various-sized photos?</title>
   <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258091883/</link>
   <comments>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258091883/#num1</comments>
   <description><![CDATA[Three nights ago I got tired of going through the same resize operations on photo after photo, but I don't know how to alter the recorded script so that it will work on images of different sizes.&nbsp;&nbsp;Here is the script, with my comments &amp; questions:<br /><br />from PSPApp import *<br /><br />def ScriptProperties():<br />&nbsp;&nbsp;&nbsp;&nbsp;return {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Author': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Copyright': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Description': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host': u'Paint Shop Pro X',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host Version': u'10.03'<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><br />def Do(Environment):<br />&nbsp;&nbsp;&nbsp;&nbsp;# EnableOptimizedScriptUndo<br />&nbsp;&nbsp;&nbsp;&nbsp;App.Do( Environment, 'EnableOptimizedScriptUndo', {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'GeneralSettings': {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ExecutionMode': App.Constants.ExecutionMode.Default, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AutoActionMode': App.Constants.AutoActionMode.Match, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Version': ((10,0,3),1)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;# Resize<br />&nbsp;&nbsp;&nbsp;&nbsp;App.Do( Environment, 'Resize', {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AspectRatio': 1.25,&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: seagreen">I'd like to have it apply to any aspect ratio</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'CurrentDimensionUnits': App.Constants.UnitsOfMeasure.Pixels, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'CurrentResolutionUnits': App.Constants.ResolutionUnits.PixelsPerIn, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Height': 1520,&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: seagreen">I'd like to have it apply to any height</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'MaintainAspectRatio': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Resample': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ResampleType': App.Constants.ResampleType.Bicubic, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ResizeAllLayers': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Resolution': 300, <span style="color: seagreen">I don't care about this; how can I leave it out?&nbsp;&nbsp;But it can stay if it must.</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Width': 1900, <span style="color: seagreen">I do want this width, but "longer side" would be better.&nbsp;&nbsp;Better still would be the<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; capability of changing this number--but running it interactively would do that, yes?</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'GeneralSettings': {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ExecutionMode': App.Constants.ExecutionMode.Default, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AutoActionMode': App.Constants.AutoActionMode.Match, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Version': ((10,0,3),1)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;# Resize<br />&nbsp;&nbsp;&nbsp;&nbsp;App.Do( Environment, 'Resize', {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AspectRatio': 1.25,&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: seagreen">I'd like to have it apply to any aspect ratio</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'CurrentDimensionUnits': App.Constants.UnitsOfMeasure.Pixels, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'CurrentResolutionUnits': App.Constants.ResolutionUnits.PixelsPerIn, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Height': 912,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: seagreen">again, any height; it occurs to me that, since PSP records and specifies only the<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; current height, that the resize command works on a height-preferred basis; for my needs (web <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; images),&nbsp;&nbsp;width-preferred works much better, and longer-side would work best</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'MaintainAspectRatio': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Resample': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ResampleType': App.Constants.ResampleType.SmartSize, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ResizeAllLayers': True, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Resolution': 300, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Width': 1140,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: seagreen">I do want this width as I did above.</span><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'GeneralSettings': {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ExecutionMode': App.Constants.ExecutionMode.Default, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AutoActionMode': App.Constants.AutoActionMode.Match, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Version': ((10,0,3),1)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;# NormalViewing<br />&nbsp;&nbsp;&nbsp;&nbsp;App.Do( Environment, 'NormalViewing', {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'GeneralSettings': {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'ExecutionMode': App.Constants.ExecutionMode.Default, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'AutoActionMode': App.Constants.AutoActionMode.Match, <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Version': ((10,0,3),1)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;})<br /><br />In brief, I want a resizing script that will maintain the image's aspect ratio as it first resizes (bicubic) to 1900 on longer side, then resizes (smartsize) to 1140 on longer side, and then displays the image at 100%.&nbsp;&nbsp; If the longer-side values can be changed while the script runs, so much the better; but I don't mind having several scripts to use for the several sizes I use most.<br /><br />I tried to make sense of and then use the resizing script that Jerseyguy posted a while back (<a href=http://www.pspug.org/cgi-bin/forum/Blah.pl?b-scripts/m-1252007488/><span style="color: blue">here</span></a>), but I couldn't get it to run because of an "environment not defined" error that prevented the script from loading even though I appended the<br /><span style="color: firebrick">from PSPApp import *<br /><br />def ScriptProperties():<br />&nbsp;&nbsp;&nbsp;&nbsp;return {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Author': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Copyright': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Description': u'',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host': u'Paint Shop Pro X',<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'Host Version': u'10.03'<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><br />def Do(Environment):</span><br />from a script that I recorded and that did run.&nbsp;&nbsp;And I've been trying to use the "Paint Shop Pro X Scripting for Script Authors (Revision 7&nbsp;&nbsp; March 10, 2006)" document, but my mind is not working well with it, and I couldn't even find where it tells how to specify "Environment." <br /><br />Re Jerseyguy's script, where he specified<br /><span style="color: firebrick"> ImageInfo = App.Do( Environment, 'ReturnImageInfo',)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksWidth = (ImageInfo['Width'] + 0.1 - 0.1)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksHeight = (ImageInfo['Height'] + 0.1 - 0.1)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksAspect = (BrooksWidth / BrooksHeight)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksChange = (825 / BrooksWidth)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksNewHeight = (BrooksHeight * BrooksChange)</span>, and you (Willy) suggested a revision so it would be<br /><br /><span style="color: firebrick"> ImageInfo = App.Do( Environment, 'ReturnImageInfo',)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksWidth = ImageInfo['Width']*1.0&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksHeight = ImageInfo['Height']*1.0 <br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksAspect = (BrooksWidth / BrooksHeight)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksChange = (825 / BrooksWidth)<br />&nbsp;&nbsp;&nbsp;&nbsp;BrooksNewHeight = (BrooksHeight * BrooksChange)</span> ,&nbsp;&nbsp;I have these questions:<br /><br />(1) Is what I copied immediately above how you would have those lines?<br />(2) Is the "Brooks" in this script an arbitrary identifier?&nbsp;&nbsp;I mean, could it be "PurpleWidth" and "PurpleHeight" all the way through and still work?<br />(3) Isn't this--"ImageInfo = App.Do( Environment, 'ReturnImageInfo',)"--the definition of Environment? is it okay?&nbsp;&nbsp;I'm assuming that that line is what my error message about not having defined Environment refers to, since it's the first instance of "Environment" and the script doesn't even finish loading...&nbsp;&nbsp;How should Environment be defined so a script will run?&nbsp;&nbsp;Or am I missing another, earlier-in-Jerseyguy's-script (which part he didn't post), definition of Environment?<br /><br />Now my headache is coming back&nbsp;&nbsp;&nbsp;&nbsp;<img src="/blahdocs/Smilies/cry.gif" style="vertical-align: middle" alt="" />&nbsp;&nbsp;from just phrasing this stuff.&nbsp;&nbsp;Any help you can give me, including (if you want) telling me where to look in the Scripting-for-Script-Authors document, or any other place (if it's clearly written), I'll <strong>appreciate greatly</strong>.&nbsp;&nbsp;I think I am running up against new-information-overload.&nbsp;&nbsp;I've even had to copy down the steps to follow to get my Nikon to do autobracketing . . .&nbsp;&nbsp;&nbsp;&nbsp;<img src="/blahdocs/Smilies/blush.gif" style="vertical-align: middle" alt="" />&nbsp;&nbsp;&nbsp;&nbsp; (That's really easy compared to this scripting: only one FN button, two setting wheels, and one release-mode button to depress and then turn the thingy up there, but maybe I've left something out.)]]></description>
   <pubDate>Fri, 13 Nov 2009 00:58:03</pubDate>
   <dc:creator>D_Spider</dc:creator>
  </item>
  <item>
   <title>How to allow user to select a tube in a script</title>
   <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258044484/</link>
   <comments>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258044484/#num1</comments>
   <description><![CDATA[I write scrapbooking scripts, and I'm just wondering if there is a way to code the script so a user can select their own tube to place on an image - I know how to have them choose a tube that I specify, but is there a way that they can choose the tube that they want to use themselves?<br /><br />It seems like it would need to be paused somehow and then they choose their tube, and then click something to continue with the script.<br /><br />Hope someone can help <img src="/blahdocs/Smilies/smiley.gif" style="vertical-align: middle" alt="" /><br /><br />Joanne]]></description>
   <pubDate>Thu, 12 Nov 2009 11:48:04</pubDate>
   <dc:creator>jojomart</dc:creator>
  </item>
  <item>
   <title>PSP's &quot;QuickMask&quot;</title>
   <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258018280/</link>
   <comments>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1258018280/#num1</comments>
   <description><![CDATA[is called "Edit Selection," but it is a much more powerful tool than that name suggests.&nbsp;&nbsp;Info here:<br /><br /><a href="http://www.pspug.org/cgi-bin/forum/Blah.pl?m-1257956559/s-2/highlight-PixelNook/#num2">http://www.pspug.org/cgi-bin/forum/Blah.pl?m-1257956559/s-2/highlight-PixelNook/#num2</a>]]></description>
   <pubDate>Thu, 12 Nov 2009 04:31:20</pubDate>
   <dc:creator>D_Spider</dc:creator>
  </item>
  <item>
   <title>From the O'Reilly User Group</title>
   <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1257983695/</link>
   <comments>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1257983695/#num1</comments>
   <description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br /><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><br /><head><br /><title>O'Reilly Media, Inc.</title><br /><br /><br /><style><br />a.menu:link {color:#222;width:100%;height:100%;display:block;background-color:white;text-decoration: none;}<br />a.menu:visited {color:#222;width:100%;height:100%;display:block;background-color:white;text-decoration: none;}<br />a.menu:hover {color:#222;width:100%;height:100%;display:block;background-color:#EEEEEE;text-decoration: none;}<br />a.menu:active {color:#222;width:100%;height:100%;display:block;background-color:white;text-decoration: none;}<br /></style><br /><br /></head><br /><br /><br /><body style="padding:10px;margin:0 auto 0.8em;font-family: Verdana,helvetica,arial,sans-serif;background-color:#fff;font-size:11px;color:#222;line-height: 16px; border-bottom: 0px;" bgcolor="#fff;" ><br /><br /><br /><br /><br /><table border="0" cellpadding="0" cellspacing="0" width="636px" align="center" style="padding-bottom: 2px;"><br /><tr><td><br /><br /><p style="font-size:10px; font-family: Verdana,helvetica,arial,sans-serif; color:#222;line-height: 16px;">Hi there.<br /><br /><br />Can you please share this info with your user group? You can post on your mailing list or your group page.<br /><br />Thanks for your help,<br /><br />Marsee</p><br /><br /><p style="font-size:10px; font-family: Verdana,helvetica,arial,sans-serif; color:#222;line-height: 16px;">If you would like to view this information in your browser, <br /><a href="http://post.oreilly.com/rd/9z1zq5c143n8var5eevunvg84eurr6dpgn8o9eu5nqg" style="text-decoration:none;">click here</a>.</p><br /><br /></td></tr><br /><br /></table><br /><br /><table border="0" cellpadding="0" cellspacing="0" style="width:630px; margin:0 auto; background-color:#fff; border: 1px solid #9B9B9B;" align="center"><br /><tr><br /><td>&nbsp; &nbsp; &nbsp;<table style="width:630px; text-align:center;border-collapse:collapse;background-color:#EEEEEE;" cellpadding="0" cellspacing="0" ><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1z330bdji6rih7vu5n0jd1elsnfv1hnfnl9nkh2og" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px;font-family: Verdana,helvetica,arial,sans-serif;">Home</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1zsrjbp9fcqj7j1bvo9umhf5ricvn3ueid6r0pfl8" style="padding: 0px 3px; color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Books &amp;amp; Videos</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1z163m8fdng5oao68mtqane1cu69plp73lcfkkmdo" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Answers</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1zcsvv0609pfu1fu1bmsli2e43ipb35533c1iire8" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">News</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1z06qoiaqul0hkm0nmma1mf87711bu4gv78krd878" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Safari Books Online</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1z1b0lplo6tsmobs4vbu5q8mn75hahubi5ns0kkn0" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Conferences</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-right:1px solid #9B9B9B;border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1zd4ucg7d1dn50qb04u3emt5g9m7602vhpr995qv0" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Training</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="border-bottom:1px solid #9B9B9B;width:auto;line-height:21px;"><a href="http://post.oreilly.com/rd/9z1zt1uk59ar0nb5tdgae9amgfnovc2i7t1b8a4jato" style="padding: 0px 3px;color:#222;display:block;text-decoration: none;font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">School of Tech</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;</table><br />&nbsp; &nbsp; &nbsp;<br /><br /></td><br /></tr><br /><br /><tr><br /><td style="padding: 6px;"><br /><br /><br /><br /><br /><br /><br /><!-- START first product&nbsp;&nbsp;--> <br /><table border="0" cellpadding="11" cellspacing="0"><br /><br /><tr><td colspan="5" style="font-size: 11px; font-family: Verdana,helvetica,arial,sans-serif;"&nbsp;&nbsp;align="left"><br /><br /><img width="590" src="http://post.oreilly.com/rd/9z1z8q5lkcfjcto1s3u96sgdoe31g399r2ss8rm9jc8" height="43" border="0px"><br /><br /> <br /><a href="http://post.oreilly.com/rd/9z1zlf4qvne1pevc0uk0d5lt64gj23lmqfd5rjm615o"><img alt="safari banner" src="http://oreilly.com/images/oreilly/safari6-openhouse.png" style="border:0px;margin-top:4px; margin-bottom: 10px;"></a><br /><br />&nbsp; &nbsp; &nbsp;<br /><p style="color: #333; font-size: 11px; line-height: 14px; font-family: Verdana,helvetica,arial,sans-serif;"><strong>Try the new version of Safari Books Online during our Open House &amp;mdash; no charge, no strings attached!</strong> O'Reilly Media founder Tim O'Reilly is enthusiastic about the benefits of this new release:<br /><p><img width="81" align="left" alt="Tim O'Reilly" src="http://oreilly.com/emails/tim-oreilly-sm.png" style="padding-right: 14px;" height="75"><br />"Safari Books Online 6.0 is a complete, bottom-to-top revamping of the original service. The new UI is slicker and faster, with the kind of drag-and-drop goodness that people expect from a modern web application. In addition, we've added some long-requested features that take advantage of the online medium in ways that aren't possible with standalone ebooks." </p><p>There has never been a better time to check out Safari Books Online:<br /></p><br /> <br /><table style="margin-bottom:10px;"><br />&nbsp; &nbsp; &nbsp;<tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td><br />&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;<br /><table><tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon books" src="http://oreilly.com/images/oreilly/safari_iconbooks.png"></td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Access 8,500 Books &amp;amp; Videos</strong><br />Enjoy unlimited online access to more than 8,500 books and videos from the world's leading publishers, including O'Reilly Media, Addison-Wesley, Prentice Hall, Microsoft Press, Apress, Manning, Total Training, PeepCode and more. </p><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon bulb" src="http://oreilly.com/images/oreilly/safari_iconbulb.png"></td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Search Multiple Sources on One Platform</strong><br />Quickly search across the entire library to pinpoint just the information you need. You can even save your favorite searches as folders you name that automatically update as new information is added!</p><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon rough" src="http://oreilly.com/images/oreilly/safari_iconrough.png"></td><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Read Books Before They are Published</strong><br />Be the first to learn about cutting edge topics. Read pre-publication manuscripts and interact with the authors.</p><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon folders" src="http://oreilly.com/images/oreilly/safari_iconfolders.png"></td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;"><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Organize Your Favorites</strong><br />Create your own Favorites Folders for the books and videos you use the most. Drag and drop titles into folders. Build your own custom digital library within Safari Books Online.</p><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon paper" src="http://oreilly.com/images/oreilly/safari_iconpaper.png"></td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Use Time-Saving Tools</strong><br />Rate and review books, attach your own notes, assign tags, highlight sections and bookmark pages of books as you read them. You can then search across your highlights, notes, and tags or even build and print custom summary documents.</p><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top;" align="center" width="85"><img alt="icon mobile" src="http://oreilly.com/images/oreilly/safari_iconmobile.png"></td><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<td style="vertical-align: top; padding-bottom: 8px;padding-bottom:29px;"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<p style="font-family: verdana; font-size: 11px; margin-top: 0pt; margin-right: 10pt;"><strong>Get Information Where You Need It</strong><br />Read mobile-friendly books directly from cell phones and mobile devices. Receive five download tokens per month to download chapters or full books to print or read offline.</p><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</table><br /><br /></td><br /><td><br />&nbsp; &nbsp; &nbsp;<a href="http://post.oreilly.com/rd/9z1zsrvhhds9bsen1s6g9f0kbfqel9srrq88dtn1eo0"><img alt="10 days free" src="http://oreilly.com/emails/sbo-10days-kicker.gif" style="border:0px;margin-bottom:20px;"><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<table style="border-width: 1px;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;border-style: solid none solid none;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;border-color: #ddd;padding:10px 0px 10px 0px;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;background-color: white;" width="158px"><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<tr><td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<span style="font-size:14px; font-family: Verdana,helvetica,arial,sans-serif;"><strong>Forward It On!</strong><br /><br /><span><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<a href="http://post.oreilly.com/f2f/9z1zhipt9sp4vt357h0njrgu5l7kaao0vrntc1fcfl8"><img alt="pass it on" src="http://oreilly.com/images/oreilly/passsm.png" style="float:right;border:0px;"></a><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<span style="font-size:11px; font-family: Verdana,helvetica,arial,sans-serif;">Know someone who might be interested?</span></span><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td></tr><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</table><br /><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;<img alt="what customers" src="http://oreilly.com/images/oreilly/safari_whatcustomers.png" style="border:0px;margin-top:20px;"><br /></td><br /><br /></tr><br /><br /><br /></table><br /><br /><br /><span style="color: #333; font-size: 11px; line-height: 14px; font-family: Verdana,helvetica,arial,sans-serif;">Whether you need to stay on the cutting edge of your field, learn new skills, or prepare for certification exams, you can learn more and spend less with Safari Books Online.</span><br /><br /><br /><span style="font-size:14px;"><strong>See for Yourself.<br /><span style="color:#990000;line-height:24px;">Try the New Safari Books Online On Us</span></strong><br /></span><br /><br /><br /><br /><span style="color: #333; font-size: 11px; line-height: 14px; font-family: Verdana,helvetica,arial,sans-serif;"><br /><br /><br />For a very limited time, try a Safari Library account on us -- no strings attached! Register during our Open House and test drive Safari Books Online for up to 10 days or 200 page views.*<br /><br /><br /><br /><br /><br /><a href="http://post.oreilly.com/rd/9z1z2m5to7ajn8pojb2etscih83kjvksbkjphlfo930" style="text-decoration:none"><img width="288" alt="Start Your 10 Day Trial Now" src="http://my.safaribooksonline.com/static/200911-103-oreilly/images/6.0/aui6/btn_auiStartTrial.gif" height="48" border="0"></a></strong></a><br /></span><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</td><br />&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;</tr><br /><tr><td style="text-align:center; font-family: Verdana,helvetica,arial,sans-serif; font-size: 10px;"><br />&nbsp; &nbsp; &nbsp;<img alt="sponsors" src="http://oreilly.com/images/oreilly/safari_sponsors.png"><br />&nbsp; &nbsp; &nbsp;<br /><br /><br />&nbsp; &nbsp; &nbsp;<span>*Limited time offer ends November 24, 2009. Not available in all countries.<br />Available to new subscribers only. Rough Cuts and Downloads not available during trial.</span><br /><br /><br /><br />Copyright 2009, Safari Books Online, LLC<br /><br />1003 Gravenstein Hwy North &#124; Sebastopol, CA 95472<br /><br />All rights reserved.<br /><br /></td></tr><br /></table><br /><br /></td><br /></tr><br /></table><br /><br /><br /><br /><br /><br /><br /><table border="0" cellpadding="0" cellspacing="0" style="width:630px;margin:0 auto; border: 0px;;background-color:#fff;" align="center"><br />&nbsp; &nbsp; &nbsp;<tr><td style="width:630px;font-size:10px;font-weight:normal;line-height:13px;padding-top:10px; font-family: Verdana,helvetica,arial,sans-serif;"><br />Marsee Henon<br /><br />O'Reilly<br /><br />1005 Gravenstein Highway North<br /><br />Sebastopol, CA&nbsp;&nbsp; 95472<br /><br />800-998-9938<br /><br /><a href="http://post.oreilly.com/rd/9z1ztl81felk59lusuc1lbvceoh7f8ttm6sjg0trea8">ug.oreilly.com</a><br /><br />Follow us on Twitter at: <a href="http://post.oreilly.com/rd/9z1z495j27unvqv89ipermg0ajmhok5lhgku73l1cng">twitter.com/OReillyMedia</a><br /><br /><br /><br />You are receiving this email because you are a User Group contact with O'Reilly Media. If you would like to stop receiving these newsletters or announcements from O'Reilly,<br />send an email to <a href="mailto:marsee@oreilly.com">marsee@oreilly.com</a>.<br /></td></tr><br /><br /></table><br /><br /><br /><br clear="all"><div class="ipost-opt-out"><p></p></div></body><br /></html><br /><br /><br />]]></description>
   <pubDate>Wed, 11 Nov 2009 18:54:55</pubDate>
   <dc:creator>Pete</dc:creator>
  </item>
  <item>
   <title>Make tag script crashes PSP X2 Ultimate </title>
   <link>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1257454544/</link>
   <comments>http://pspug.org/cgi-bin/forum/Blah.pl/Blah.pl?m-1257454544/#num1</comments>
   <description><![CDATA[I am having the same problem as deb528us.&nbsp;&nbsp;My make tag script works fine in PSP X but when I try to use it in PSP X2 Ultimate it just locks up.&nbsp;&nbsp;I am using Windows XP.&nbsp;&nbsp;Any help would be greatly appreciated.&nbsp;&nbsp; <img src="/blahdocs/Smilies/undecided.gif" style="vertical-align: middle" alt="" />]]></description>
   <pubDate>Thu, 5 Nov 2009 15:55:44</pubDate>
   <dc:creator>Ginni Morey</dc:creator>
  </item>
 </channel>
</rss>