Hello,
Je cherche un moyen de convertir plusieurs documents excel (.xls) en documents pdf
J'ai trouvé sur le forum le script pour convertir du doc en pdf qui marche parfaitement mais je n'arrive pas à l'adapter pour du excel.
Voici le script en question :
set ces_fichiers to (choose file with multiple selections allowed without invisibles)
repeat with un_fichier in ces_fichiers
set F to un_fichier as string
if F ends with ".doc" then --traite seulement les fichiers avec l'extension " .doc"
set fichier_PDF to (text 1 thru -4 of F) & "pdf" -- chemin du pdf
tell application "Microsoft Word" -- fonctionne sous Word 2008
launch
open un_fichier
save as active document file name fichier_PDF file format format PDF
close document 1 saving no
end tell
end if
end repeat
Pouvez-vous m'aider?
Merci
Je cherche un moyen de convertir plusieurs documents excel (.xls) en documents pdf
J'ai trouvé sur le forum le script pour convertir du doc en pdf qui marche parfaitement mais je n'arrive pas à l'adapter pour du excel.
Voici le script en question :
set ces_fichiers to (choose file with multiple selections allowed without invisibles)
repeat with un_fichier in ces_fichiers
set F to un_fichier as string
if F ends with ".doc" then --traite seulement les fichiers avec l'extension " .doc"
set fichier_PDF to (text 1 thru -4 of F) & "pdf" -- chemin du pdf
tell application "Microsoft Word" -- fonctionne sous Word 2008
launch
open un_fichier
save as active document file name fichier_PDF file format format PDF
close document 1 saving no
end tell
end if
end repeat
Pouvez-vous m'aider?
Merci