How do I... ?
AnswerList of Questions
Adjust Volume Levels
Adjusting the volume of an audio channel is useful when you want to, for example, have non-intrusive music playing in your project. To accomplish this in AutoPlay Media Studio, use the Audio.SetVolume action.
As an example, we will play a soundtrack in the background, and set the volume to be 25% of maximum:
1. Insert the following code into the On Show event of your page:
Audio.Load(CHANNEL_BACKGROUND, "your_audio_here.ogg", true, true); Audio.SetVolume(CHANNEL_BACKGROUND, 63); -- sets the volume level to 25% of 255
How do I... ?
AnswerList of Questions
Apply Changes to Multiple Objects
It is often useful to be able to change the properties for many objects at once. To accomplish this in AutoPlay Media Studio:
1. Select the first object.
2. Hold down the Ctrl key.
3. Select the remaining objects you wish to change.
4. Release the Ctrl key.
Any properties that are available for all the objects will be visible in the Properties Pane. Make your changes as required.
Tip: When selecting multiple objects, holding down the Shift key on your keyboard functions the same as holding down the Ctrl key.