Jump to content

mykz

Member
  • Posts

    15
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Ukraine

Posts posted by mykz

  1. Install from network share, i have no player shown on Installer, only red x mark.

    Then add attribute type="application/x-mplayer2" on line 137 of Installer.hta and everything OK.

    (Install from local computer no need this attribute still OK)

    mritter, pls check it.

    document.write('<embed id="MediaPlayer" type="application/x-mplayer2" src="'+InsPath+'" width="300" height="45" autostart="1" loop="true" showstatusbar="0" volume="68" border="0" >');

  2. I found typo bugs in installer.js

    if ((programs[i].cmd5 != null) && (path(programs[i].cmd5) != ''))
    {
    cmdLine=substituteCommand(programs[i].cmd4);

    Must be

    if ((programs[i].cmd5 != null) && (path(programs[i].cmd5) != ''))
    {
    cmdLine=substituteCommand(programs[i].cmd5);

    And

    if ((programs[i].cmd6 != null) && (path(programs[i].cmd6) != ''))
    {
    cmdLine=substituteCommand(programs[i].cmd5);

    Must be

    if ((programs[i].cmd6 != null) && (path(programs[i].cmd6) != ''))
    {
    cmdLine=substituteCommand(programs[i].cmd6);

    Thk for your hard work, Kel :D

×
×
  • Create New...