Bonjour,
Au début du script ajoute
debut()
et à la fin
fin()
et ajoute ce script
function debut() {
var html = HtmlService.createHtmlOutput(`
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body><center>
<img src="https://www.gif-maniac.com/gifs/54/53817.gif" />
</center></body>
</html>
`).setWidth(280).setHeight(400);
SpreadsheetApp.getUi().showModalDialog(html, 'Patientez ...');
}
function fin() {
var closeHtml = HtmlService.createHtmlOutput("<script>google.script.host.close()</script>");
SpreadsheetApp.getUi().showModalDialog(closeHtml, "Closing ...");
}