HTML Emails

Friday, August 31st, 2007

http://www.campaignmonitor.com/
http://www.campaignmonitor.com/gallery/
http://www.campaignmonitor.com/blog/archives/2007/04/a_guide_to_css_support_in_emai_2.html

phonetic alphabet

Thursday, August 30th, 2007
Alpha Bravo Charlie Delta Echo Foxtrot Golf Hotel India
Juliet Kilo Lima Mike November Oscar Papa Quebec Romeo
Sierra Tango Uniform Victor Whiskey Xray Yankee Zulu

Normal Password protection for IIS 6

Thursday, August 30th, 2007

http://www.hostmysite.com/support/dedicated/IIS/passwordprotect/

 

The following article explains how to create a password protected section of your website. The protected section will require users to login before they can view contents of the folders. This is a three step process; the first step creates a Windows user account with limited access to the machine, the second step removes Anonymous Access to the folder, and the third step assigns the user to the folder.
To password protect a folder, please follow these steps:

  1. Login to your server through Terminal Services or Remote Desktop Connection.
  2. Create the Windows User by following the steps in How do I create a new user on my Windows 2000 & 2003 Server?
  3. Click Start, select Programs, and then click Administrative Tools.
    • For IIS 5.0 click Internet Services Manager.
    • For IIS 6.0 click Internet Information Services.
  4. In the left column you will see the Server Name.
    • In IIS 5.0, expand the Server Name to find the domain name.
    • In IIS 6.0, expand the Server Name and then Web Sites to find the domain name
    • .

  5. Right-click on the domain name and select Properties.
  6. On the Directory Security Tab under Authentication and Access Control click Edit.
  7. Uncheck Enable Anonymous Access.
  8. Choose the level of Authenticated Access:
    • Integrated Windows Authentication - encrypts the password sent to the server (we recommend this method).
    • Digest Authentication - this level works only if Active Directory is configured.
    • Basic Authentication - sends the password across the network in clear text (we do not recommend this method).
    • .Net Passport Authentication - a web authentication service.
  9. Click Ok and then click Ok a second time.
  10. Navigate to the folder on your server containing the contents of your website.
  11. Right click the folder and select Properties.
  12. On the Security tab click Add.
  13. Enter the name of the user you created and click Ok.
  14. If you wish to allow other users to login, repeat step 14 with the additional user names.

Your website is now password protected. If you prefer to password protect only a folder, rather than your entire website, you can repeat the exact steps above on the individual folder, rather than your entire website.

Useful for cables

Thursday, August 30th, 2007

http://www.kenable.co.uk/

Lots of fun things for XP

Tuesday, August 28th, 2007

http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx

Change Flash version and remove Flash Player

Tuesday, August 28th, 2007

FireFox extension that is great when developing flash.

http://www.sephiroth.it/weblog/archives/2007/05/flash_switcher_extension_updated.php

More Icons from Thom

Tuesday, August 28th, 2007

http://www.vandelaydesign.com/blog/design/free-icons/

Quick Reference Guide

Friday, August 24th, 2007

Gives you a quick rundown of the language and how things are done in NVelocity:

http://velocity.apache.org/engine/devel/user-guide.html

Waiting for events in flash

Friday, August 24th, 2007

You really have to wait for them!

Right - when you load XML for example in something like a repository object and then you want to get at what it may have loaded up such as an array of objects you need to wait until it has actually loaded!

To do this add a public function in the Repository class called onLoad:

public var onLoad:Function = function(){};

And then pass true or false or whatever to this function when done:

repository.onLoad(true);

or if not

repository.onLoad(false);

When using this repository we can now get at this by:

_demoRepository = demoRepository;
var demo:Demo = this;
_demoRepository.onLoad = function() {
//do something now we know it has loaded!
}

In this case we may want to call something on the object calling the repository so we create an instance of itself and that reference will be pulled in.

Multiple IE’s anyone?

Thursday, August 23rd, 2007

This is really useful!

http://siderite.blogspot.com/2006/11/multiple-ie-versions-on-same-computer.html