This content has been marked as final.
Show 1 reply
-
1. Re: Removing code from a javascript file-i.e. Photoshop Flash Web Gallery
Ned Murphy May 30, 2009 5:19 AM (in response to peepmonger)This would be the least instrusive hack I can find that may get you around the problem. In the js fle there is a function...
function detectFlash(ver) {
if (getFlashVersion() >= ver) {
return true;
} else {
return false;
}
}Try changing this function to...
function detectFlash(ver) {
if (getFlashVersion() >= ver) {
return true;
} else {
return true;
}
}This should eliminate making the text appear. If not, there's another thing you can try.
A better approach wuld be to use more up to date embedding code, though I cannot say whether the js file is written specifically for this Flash application such that it includes code that talks to the Flash file.


