I'm working on a project on which I would like to include optional narration for various screens. I know I can provide a mute switch on a per-screen basis, but is there a way to provide a global sound toggle switch, so that a user would only need to switch it once? I'm willing to program some workarounds if anyone has a suggestion.
Announcement
Collapse
No announcement yet.
Global Mute?
Collapse
X
-
Re: Global Mute?
I tried using a reg monitor to compare my registry before and after muting the volume but there was no change. So my sound card apparently doesn't store it's "global mute" setting value in the registry...
Corey Milner
Creative Director, Indigo Rose Software
Comment
-
Re: Global Mute?
OK... I've got screens with text windows on them. I'd like to be able to have voiceover narration reading the text (which, of course, differs from page to page). I can have them play when the page initializes, and I can have them mute when the user clicks a 'mute' button. But, when the page changes, how can I have AMS "remember" the mute setting so that the default play action does not occur?
Is there something we can do with On Initialize?
Basically, I'm looking for a way to have voiceover tracks be optional across an entire project.
Comment
-
Re: Global Mute?
On the first page's On Initialize set a variable named
%Mute% = 0
When the user clicks the Mute object, set the variable:
%Mute% = 1
When you switch pages, where you start the next narration, do this:
If (%Mute%=0)
// Play your narration
End If
Comment
-
Re: Global Mute?
Yes that's a very sound strategy.
Corey Milner
Creative Director, Indigo Rose Software
Comment
Comment