############################################################## ## ## ExhibitPlus Bug Report / Correction Report ## Found in version: 1.4 ## Reported date: 19.04.05 ## Report URL: http://jalbum.net/forum/thread.jspa?threadID=5386 ## Assigned bug number: 14/001 ## Severity: Major, album generation stops ## Occurance: Rare ## Fixed date: 24.05.05 ## Fixed by: M.Fyvie ## Fixed in: Subsequent versions ## ## Error message: Sourced file: inline evaluation of: `` loadMetaArray(); ;'' : Command not found: getKey( java.lang.String ) ## ## Bug details: ## When "User Comment" in the "Image Information" tab of ## the E+ UI is selected (default is off) an image which ## contains in EXIF user comment will trigger the error. ## ## Patch/Fix procedure: See instructions below ## ############################################################## # #-----[ OPEN ]------------------------------------------ # slide.bsh # #-----[ FIND ]------------------------------------------ # // meta_str += (separator + "" + texts.getString("userComment") + ": " + str); meta_str += (separator + "" + getKey("Exif.User Comment") + ": " + str); # #-----[ REPLACE WITH ]------------------------------------------ # meta_str += (separator + "" + texts.getString("userComment") + ": " + str); # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM ########################################################