I created a Web Gallery at: http://modeonmain.com/forsale.html
I used Adobe Bridge's built-in function which creates a Photoshop Web Gallery.
Everything works great except for one thing. When I click the "E-Mail Feedback" button, nothing happens. For a while, I was getting an blank email message to appear (as it should), but the address line had more than the web address. The source code in ThumbnailFrame.html looks like this:
function sendFeedback(picName) {
checkForUnSavedChanges(picName);
var prefix = "mailto:gjobes@beecreek.net";
var name = null;
name = prompt("Enter Your Name:", "Your Name");
if (name) {
prefix += "subject=" + escape("Feedback from " + name);
prefix += "&body=";
var str = ""
for (var i in feedback) {
str += i + " ~~ \n";
str += (feedback[i].approved == true) ? "Approved ~~ \n" : "";
str += (feedback[i].other == true) ? "Other ~~ \n" : "";
str += (feedback[i].comments != "") ? ("\nComments:\n" + feedback[i].comments + " ~~ \n") : "";
str += "____________________________________________\n\n";
}
By looking at the source code above, can someone tell me how I can get an email message window to load?
Thanks!