summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml')
-rw-r--r--Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml b/Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml
index 04336cba5f5..fad4deca9aa 100644
--- a/Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml
+++ b/Master/texmf-dist/doc/latex/media9/files/players/APlayer.mxml
@@ -4,7 +4,7 @@
<!-- a FlashPlayer-10 compatible component for playing -->
<!-- MP3 audio files and streams. -->
<!-- -->
-<!-- version 20130611 -->
+<!-- version 20131030 -->
<!-- -->
<!-- -->
<!-- The free Apache Flex 4 SDK is required to compile -->
@@ -78,11 +78,11 @@
private function initialise(flashVars:Object):void {
source=flashVars.source;
if(flashVars.policy) policy=flashVars.policy;
- if(flashVars.autoPlay) autoPlay=(flashVars.autoPlay=='true');
- if(flashVars.loop) loop=(flashVars.loop=='true');
+ if(flashVars.autoPlay=='true') autoPlay=true;
+ if(flashVars.loop=='true') loop=true;
if(flashVars.volume) vol=Number(flashVars.volume);
if(flashVars.balance) pan=Number(flashVars.balance);
- if(flashVars.hideBar) hideBar=(flashVars.hideBar=='true');
+ if(flashVars.hideBar=='true') hideBar=true;
}
import mx.controls.Alert;