3BEPb wrote:
KC, unfortunatelly, there is no way to do that, IMHO. If you'll find one - please let me know it :) |
Suggestion: make 2 identical flash files, one with the sound, and one with out sound and just the graphics.
then do something like this:
<%
Dim strFlashSource
If isEmpty(Session("blnSessionIsGood")) = True Then
strFlashSource = "flash_File_Without_Sound.swf"
Else
strFlashSource = "flash_File_With_Sound.swf"
Session("blnSessionIsGood") = True
End If
%>
and you would use this for your source for the flash file:
src="<%=strFlashSource%>"
that way the user would only hear the flash file with the sound once per session.
Edited by KCWebMonkey