Select Language:
If you want to have the AI teacher read text aloud while using Microsoft Learn, you can do this easily with the Read Aloud feature in the Immersive Reader. Here’s a simple step-by-step guide to set it up:
First, look for the option to open the Immersive Reader within your module. If it’s available, click on it to launch the reader.
Once the Immersive Reader is open, you can set it to automatically start reading the content aloud. To do this, find the read aloud settings and set the autoplay option to true. This way, the reading will begin automatically as soon as the reader opens. You can also choose whether the voice sounds male or female and decide how fast or slow the speech is.
If you’re using code to customize the experience, here’s a quick example of how to set it up:
typescript
const options = {
readAloudOptions: {
autoplay: true,
voice: ‘female’, // Change to ‘male’ if preferred
speed: 1.0 // Adjust the speed as needed
}
};
ImmersiveReader.launchAsync(YOUR_TOKEN, YOUR_SUBDOMAIN, YOUR_DATA, options);
Remember, not all modules might have the Immersive Reader feature enabled. Check if it’s available in your module. If so, enabling the read-aloud feature can greatly enhance your learning experience by having the text read to you automatically.





