Difference between revisions of "Authorware Player"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
 
Line 8: Line 8:
 
'''This is a Macromedia Authorware Player for Mozilla Firefox installer:'''
 
'''This is a Macromedia Authorware Player for Mozilla Firefox installer:'''
  
 
+
<source lang="xml">
 
     <package
 
     <package
 
         id="authorwareplayerfirefox"
 
         id="authorwareplayerfirefox"
Line 19: Line 19:
 
         <install cmd="%SOFTWARE%\Authorware_Firefox\Authorware_Web_Player_Plugin.exe /S" />
 
         <install cmd="%SOFTWARE%\Authorware_Firefox\Authorware_Web_Player_Plugin.exe /S" />
 
     </package>
 
     </package>
 
+
</source>
  
  
 
'''This is a Macromedia Authorware Player for the Internet Explorer installer:'''
 
'''This is a Macromedia Authorware Player for the Internet Explorer installer:'''
  
 
+
<source lang="xml">
 
     <package
 
     <package
 
         id="authorwareplayerie"
 
         id="authorwareplayerie"
Line 36: Line 36:
 
         <install cmd="%SOFTWARE%\Authorware_IE\Authorware_ActiveX_Web_Player_Installer.exe /S" />
 
         <install cmd="%SOFTWARE%\Authorware_IE\Authorware_ActiveX_Web_Player_Installer.exe /S" />
 
     </package>
 
     </package>
 
+
</source>
  
 
[[category:Silent Installers|Authorware Player]]
 
[[category:Silent Installers|Authorware Player]]

Latest revision as of 13:18, 4 February 2008

This is a silent installer for Macromedia Authorware Player.

There are two versions of Macromedia Authorware Player - for Internet Explorer and for Mozilla Firefox.

Authorware Player for Firefox should be installed after Firefox is installed - and hence the Firefox installer should have a higher priority.


This is a Macromedia Authorware Player for Mozilla Firefox installer:

    <package
        id="authorwareplayerfirefox"
        name="Authorware Player Firefox"
        revision="1"
        reboot="false"
        priority="0">
        <check type="file" condition="exists" path="%PROGRAMFILES%\Mozilla Firefox\plugins\np32asw.dll" />
 
        <install cmd="%SOFTWARE%\Authorware_Firefox\Authorware_Web_Player_Plugin.exe /S" />
    </package>


This is a Macromedia Authorware Player for the Internet Explorer installer:

    <package
        id="authorwareplayerie"
        name="Authorware Player IE"
        revision="1"
        reboot="false"
        priority="0">
        <check type="uninstall" condition="exists" path="Macromedia Authorware Web Player" />
        <check type="file" condition="exists" path="%WINDIR%\system32\Macromed\AUTHORWA\awswax.ocx" />
  
        <install cmd="%SOFTWARE%\Authorware_IE\Authorware_ActiveX_Web_Player_Installer.exe /S" />
    </package>