<cflocation url="http://www.yoursite.com/MEM/Default.asp">



Posted on February 25th, 2009 | Filed under Moved to PW | No Comments »

 

It is possible to remove the "Buy this book" link from the Google’s Book Search feature.  You must contact Google support and ask them to remove "third party Buy links" for your URL.  You also need to add this to your Book Search code:

 

<script>GBS_setViewerOptions({showLinkChrome: false});</script>

directly following:

<script src="http://books.google.com/books/previewlib.js"></script>



Posted on February 20th, 2009 | Filed under Google - Book, PowerWeb | No Comments »

When a Flash animation layers itself over the top of another web element like a menu, and you need it to appear beneath, use this:

<div STYLE="z-index: 0; position:relative"> FLASH HERE</div>

If this doesn’t work you may need to also provide a z-index for your other layers setting the z-index to a lower number than the Flash z-index, i.e. -1.



Posted on February 18th, 2009 | Filed under DHTML, Flash | No Comments »

To create the thumbnails for Affine Images:

Use Photoshop’s Automate Batch feature with these settings:

Here’s the script for AffineImage_thb which is entered in the Actionscipt area of Photoshop:



Posted on February 15th, 2009 | Filed under Affine Images, Image Processing, Photoshop | No Comments »

Configuration Button

Step 1 Open your PowerDVD program and press the play button to start the movie.

Step 2 Locate the Configuration button (shown above) on your User Interface (or press "Ctrl-C").

Step 3 After clicking on the Configuration button a menu will open up. Click on the "Advanced…" button near the bottom of the menu.

Step 4 Choose save to clipboard

Once you’ve found the frame you want, click the camera icon, and then paste into Photoshop.



Posted on February 14th, 2009 | Filed under Video Software | No Comments »

I often have a whole bunch of Outlook emails open and want to close them quickly.  This seems like a very basic task that almost anyone would want to accomplish without having to click the little box in the corner of the window.  After trying Esc, Ctrl-W and all the other standard ways that 99.99% of software developers use to do this taks I tried MS Outlook’s help.  Of course it was totally unhelpful and is always the case I found the solution on the website of a humanoid.

The keyboard shortcut to close open email windows in Outlook is ALT-F4.



Posted on February 9th, 2009 | Filed under Microsoft Outlook | No Comments »

I have never had so much fun reading a computer book.  The writing is entertaining, sometimes downright funny and the explanations are clear and elegant. 

More practically, I use this book all the time.  It has explanations for most basic CSS situations and solutions for many of the problems CSS designers run into.  I’ve tried a number of books and this one is by far my favorite.



Posted on January 12th, 2009 | Filed under CSS | No Comments »

Activate your Akismet plugin – the one that comes with your Wordpress installation.

To Activate – click on the Akismet configuration link under your Plugins menu (WP 2.7) and find out how to get your WordPress.com API Key.

This plugin captures and stows out of sight (and mind) almost every single bit of spam that people without live will try to litter your time with.  My most loved plugin!



Posted on January 12th, 2009 | Filed under Plugins, Wordpress | No Comments »

body {
text-align: center
}

#container {
width: 770px;
margin: 0 auto;
text-align: left
}

 

The text-align:left in the container rule is to keep the text from center aligning due to the text-align: center in the body rule.



Posted on November 14th, 2008 | Filed under CSS | No Comments »

Create a new field that will convert the numeric field into a string:

NewFieldName: Cstr(NumericFieldname)

You can now create a relationship between NewFieldName and your text field.



Posted on November 8th, 2008 | Filed under Microsoft Access 2007 | No Comments »