on(Release) {
getURL("www.msn.com");
}
It works fine but when I use this code below it doesnt seem to work fine, also in the last "else" I am trying to get that text to appear in a dynamic textfield, is that code correct?
on(release) {
if(imagepth.contentPath == "flower.jpg") {
getURL("http://www.google.com", _blank);
} else if(imagepth.contentPath == "green.jpg") {
getURL("http://www.msn.com", _blank);
} else if(imagepth.contentPath == "sampletemp.jpg") {
getURL("http://www.pixel2life.com", _blank);
} else {
errormsg.print = "Error: There was no image selected";
}
}I fixed it, I was wondering now why my fscommand wont work? I am trying to get an image open into their default image viewer so
fscommand("exec", "image.jpg");
But it doesnt seem to open..and the files are in a folder called fscommand
Edited by l3lueMage, 06 April 2006 - 09:08 PM.
