Goal Oriented Design and Its Impact on Your Site’s Effectiveness

Take a 5 second look at your website, and then close your eyes.

What were the top three things that you noticed? If those top three things are not related to the top three things directly related to helping your business turn visitors into customers, your site isn’t implementing Goal Oriented Design principals.

Goal Oriented Design is a layout philosophy that prominently features the information and/or activities on your site that are most relevant to bringing in new business. Continue reading “Goal Oriented Design and Its Impact on Your Site’s Effectiveness”

Chaging the Default Browser under Windows XP for IE and Firefox

There are times when you might want to change your default browser; especially if you are a developer and want to make sure that something works as it should with both IE and Firefox.

To change your default browser:

  • Go to: Start/Control Panels/Add or Remove Programs
  • Click on "Set Program Access and Defaults", the last button in the left-hand nav
  • Click on the "Custom" set of options
  • You will see an expanded list of items, Web Browser, E-mail Program, etc.
Continue reading “Chaging the Default Browser under Windows XP for IE and Firefox”

getURL() in a Projector Firefox Bug and Solution

If you have ever tried to do a simple getURL() command in Flash from an .exe projector you’ll notice that it fails when Firefox is your default browser.

Following is the solution to the problem in both AS 2.0 and AS 3.0

Here’s the code for the fix in AS 2.0:

// code on a keyframe on the main timeline

var swfUrl:String = _root._url;
var lastSlashIndex:Number = swfUrl.lastIndexOf("/");
var pipeIndex:Number = swfUrl.indexOf("|");
var baseUrl:String;
if (pipeIndex >= 0)
{
baseUrl
Continue reading “getURL() in a Projector Firefox Bug and Solution”

How to Run Firefox 2 and 3 at the Same Time

Here’s a quick how to on running Firefox 2 and 3 at the same time under Windows

  1. Right click the shortcut of the Firefox 2, click "Properties". Add "-profilemanager" at the end of the shortcut path. Click OK. Then run this shortcut to launch Firefox Profile Manager.
  2. Create a new profile, name it "firefox3". And uncheck the "Don’t ask at startup"
  3. Go to Properties of the Firefox 2 shortcut again, remove the "-profilemanager" and add "-p default" at the end
Continue reading “How to Run Firefox 2 and 3 at the Same Time”

VB6 Code for Openning an External File

The following VB6 code will open an external file with it’s associated application.  This assumes that there is an application on the system that is already associated with a specific executable.
Under your General Declarations:

‘ Runs an external file/launches it’s associated app
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long

On whatever Form/Button/Event→ Continue reading “VB6 Code for Openning an External File”

Creating MovieClips with Button States in AS 2.0

Here is a quick tutorial on how to create MovieClips that act like buttons using ActionScript 2.0.  Attached is a sample .fla file with a complete, working example.

  1. Create a new Flash document for AS 2.0
  2. Create whatever graphic/shape that you would like and convert it to a symbol.  Double click on on it with the selection tool, and then press F8 to open the create symbol dialog box, or right click on it and select "Create Symbol".  Make sure
Continue reading “Creating MovieClips with Button States in AS 2.0”

Doing a Little Something to your Site is Better than Doing Nothing

Recently, I have gotten back into roadracing motorcycles after a 7 year hiatus (here are some photos that Yermo took this past weekend, 2008-09-20).  Before the weekend, I had to get some minor repairs done to my leathers.  I called and talked to Connie at Vanson (the company that made the leathers) and they asked me the last time that I’d given them a cleaning.  I had to admit that it had been quite a long time.  A full-on → Continue reading “Doing a Little Something to your Site is Better than Doing Nothing”

An Open Letter to MoveOn.org

I am just as much progressive as everyone of the hard-working people at MoveOn.org and am doing what I can to help elect Obama.

However, I think that MoveOn might make a bigger impact if you learned from the masters, and by that I mean the Republicans.

I’ve seen a number of recent e-mails lamenting the horrible ads and slander of the McCain campaign that beg the membership to donate so that the truth can be told.

With all due → Continue reading “An Open Letter to MoveOn.org”

How to Reorganize Your Website Without Reducing Your Traffic


Nobody keeps the same website forever.
  Websites get redesigned and on a regular basis.  Websites also need their content updated or reorganized to keep up with a growing business or organization.

When you change the structure of your site (move pages, rename them, or delete them altogether) you could be losing valuable traffic and costing your business or organization signups, purchases, or more.

One of the primary ways that a site generates traffic is from people clicking on links
Continue reading “How to Reorganize Your Website Without Reducing Your Traffic”