Thought I'd reply here instead of in the other thread:
QUOTE
It does help, I haven't had a chance to make the adjustments but I will make some. The preloader is something that will take some time because I will have to adjust all of my AS, I know I should have initially started with a preloader.
You shouldn't have to. If you keep your pre-loader in a separate FLA which actually loads the folio into it it then you don't need to make any major changes. You should be able to whip one up in 5 minutes using a tutorial. That is of course unless you were silly and used _root references.
P.S. Good to see you've upped the res on the photos in the folio.
QUOTE
All good points, only thing I dont think I will do is bump up the whole page, solely for preference in design.
Preference is one thing, but usability is far more important.
QUOTE
As for the email address in the source code, some help with this would be great, I have just started receiving some spam.
There would be two reasons for this: 1) Your email address is plain text and open to the world, and 2) Your email form is unsecured.
For the first part, you can try hiding your email address several ways, but the easiest would be hide it using HTML comment tags in the source code, like this:
CODE
foo<!-- >@. -->@<!-- >@. -->bar<!-- >@. -->.<!-- >@. -->baz
Either that, or use an image instead of text, though images aren't as effective anymore. The only problem is that you won't be able to stop any spam coming from bots that have already harvested your address, only from those yet to find your site.
As for your email form, have a look at using CAPTCHA images to validate the input. I know it's not the most graceful solution and requires an extra step for users, but its the most effective way of stopping spam from email forms. Either that, or ditch the form entirely.
I learned all this the hard way ... thankfully the new Mac Mail is decent at filtering out spam.