Hi, 
I use this script:
I wish that this script only use the logo.png, without asking it.
Do you know how to do that ?
	
	
	
I use this script:
Code:
((define (script-fu-logo inImage inLogo )
 (let*
 (
 (calque (car (gimp-file-load-layer 1 inImage inLogo)))
 )
 (gimp-image-add-layer inImage calque 0)
 (gimp-image-flatten inImage)
 ) ; fin let*
 ) ; fin define
 
 
 (script-fu-register "script-fu-logo"; name
 "<Image>/MyScripts/logo" ; position in menu
 "test script"; commentary
 ""; author
 "" ; 
 "" ;date
 "" ; 
 SF-IMAGE "inImage" 0
 SF-FILENAME "inLogo" (string-append "" gimp-data-dir "/scripts/images/logo.png")
 )I wish that this script only use the logo.png, without asking it.
Do you know how to do that ?

