Want to play a sound when script is done

You can make your computer talk giving the user a talking heads-up :slight_smile:

import clr
clr.AddReference('System.Speech')
from System.Speech.Synthesis import SpeechSynthesizer
speechSynthesizer = SpeechSynthesizer()
speechSynthesizer.SpeakAsync("Your graph have now finished making awesome drawings")
8 Likes