Disguise Your Email To Protect Yourself From Spam

December 13th, 2009

Display your email address on your website without having to worry about pesky spam bots

Disguise Your Email Address

Flash: Adding a pause command using actionscript

April 16th, 2009

Here is the easiest way to temporarily pause your flash movie.

stop();
myInterval = setInterval(doContinue, 5000);
function doContinue() {
clearInterval(myInterval);
play();
}

The number 5000 refers to how many miliseconds of time you want to pause the movie. 5000 = 5 seconds.

Cross Browser CSS Fixes and Hacks

April 9th, 2009

There might be many instances when things are appearing  different from one browser to the next.  In many of these cases, it is because of Internet Explorer 6.0 and its inability to operate like a stable browser. Nonetheless, here are a few ways to fix these issues.

IE Conditional Tags

<!--[if IE ]>
  <link href="iecss.css" rel="stylesheet" type="text/css">
<![endif]-->

Read the rest of this entry »

Onto Other Projects

April 3rd, 2009

Now that I have completed my website and my blog, I will be moving onto other projects. I have a couple of new website ideas that I would like to experiment with.

Under Development

April 3rd, 2009

I am John Hirchak and I have created this blog  to document some of my web development and design experiments. It is much easier to do this with a CMS. I will be adding more functions to this blog as time goes on.