Oops... I didn't do it.

I was making some tweaks to our website last night and I think I broke it. Everything should be back to normal now, but if you have any problems, let me know. Sorry!

*Thanks for the heads-up Seth!

read full article

Arghh... Or After Using Photoshop's Save for Web, The Color is Not Matching

Photoshop Tip & Trick

I seem to go through this about once a year. I'm not sure if I change something or if Photoshop just hates me. But if you are ever working with an image in Photoshop and it will look totally different after you perform a "Save for Web". then take a look at the small little dialog on the "Save for Web" dialog box. In there you should see a setting that says "Convert to sRGB". Make sure that's not checked. It should save you a headache or two.

read full article

ColdFusion And Dynamic SES (Search Engine Safe) URL's

My First Attempt at Tackling SES

Okay, I have to admit, I'm not sure if people are going to find this as interesting as me, but I'm kind of weird. I love to create dynamic websites, but I've always hated the ugly url's they tend to create. You know what I mean. Let's say you have a product page. In the old days, you could do something as simple as this:

products.cfm?pid=2369

... and your ColdFusion code for the products.cfm would look something like this:

<cfparam name="url.pid" default="0">
<cfquery name="GetProduct" datasource="mydns">
   SELECT  Category, SubCategory, ProductName, PID
   FROM Products
   WHERE PID = #url.pid#
</cfquery>
read full article

Welcome to Creative Juices... Again.

Creative Juices LogoWe finally had some downtime and decided to re-work our own website and hope you enjoy the improvements. The first thing you might notice is that we incorporated Raymond Camden's excellent cfcBlog blogging software for ColdFusion. It allowed us to add a true blog to our site, while at the same time allowed us to throw a skin on it that closely resembles our old site.

We hope to update the site with more coding examples of ColdFusion, JavaScript and CSS tricks and hopefully you'll be able to contribute without all the headaches that came with the little website we had before.

As of right now, we have only moved a few of the items over from the old website, please bare with us, our old system was put together with duct tape and bailing wire. (I think there was some Fortran in there too!) Moving the old data into the new system is basically a manual process.

In the future we plan on putting even more of the "things we do" on the site. Apparently a lot of people did not realize that we are a full fledged graphic design house. Go figure. So we're going to be sure to put some of that type of stuff on here as well.

We appreciate you visiting and if you have any questions or comments, please drop us a line and let us know.

read full article

Validating E-Mail and Web Addresses Using Regular Expressions with ColdFusion

Two Useful Form Field Validation Functions

Here are two quick ColdFusion scripts to validate if a user supplied a real e-mail address or website URL using Regular Expressions.

To validate an e-mail address:

<cfif REFindNoCase("^[\w\.-]+@[\w\.-]+\.[a-zA-Z]{2,3}$",form.EMAIL) lt 1>
    <--- E-mail address was not valid.... --->
</cfif>

... and to validate a website url:

<cfif REFindNoCase("^(http://|https://)[\w\.-]+\.[a-zA-Z]{2,3}(/?)$",form.WEBSITE) lt 1>
    <--- Website URL was not valid.... --->
</cfif>

I wanted to post these real quick just so I have them handy, but also you might find them useful as well.

read full article
Page: 1<345678910111213141516