num_month() Retourne le mois de la date courante en chiffres. Le résultat est au format nombre.
Exemple
num_month() --> 8
Script
on num_month() set the_month to "JanFebMarAprMayJunJulAugSepOctNovDec" return round (offset of (characters 1 thru 3 of (month of the (current date) as string) as string) in mois) / 3 + 1 end num_month