Jump to content

1bolhunglo

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

Everything posted by 1bolhunglo

  1. im looking at the installer.hta file and how its coded and found the section i was interested in editing but did not know how to begin. My coding (lack thereof) expertise is looking at code and seeing what and how things are done. however for the life of me i cant figure out how to make the installer.hta play random audio files. what i was after was that every time the installer.hta file was ran. it would play random audio. i would like have like say 5 audio files and each time the installer.hta was ran it would randomly play any of the audio files i have. i have tried to search for a solution to this but i cant seem to find anyone that may have done or have thought about this before. hunting around i found a snippet of code that could help me. <script language="javascript"> var list = new Array; list[0] = "0.mp3"; list[1] = "1.mp3"; list[2] = "2.mp3"; list[3] = "3.mp3"; list[4] = "4.mp3"; list[5] = "5.mp3"; list[6] = "6.mp3"; list[7] = "7.wma"; list[8] = "8.mp3"; list[9] = "9.mp3"; var choice = Math.floor(Math.random() * list.length); document.write("<embed src='http://x.com/storage/audio/"+list[choice]+"' autostart='yes'>"); </script>
  2. i did not know that you can have multiple defaults. ok i will give that a go. thanks.
  3. im not asking for an mst file. i know how to make different mst files. what i want is to be able to choose using a radio button which one i want and the rest will be deselected. so only one will be installed. like say if you have 3 different programs of the same type (for example winrar, winzip, 7 zip) and you only want on type of that program to be installed you have a radio button instead of a tick box.
  4. how about we have the addition of radio buttons for selecting from say different programs. one or the others using a radio button. one being the default but instead of the default if you select another program and the default selection gets unselected. like say multiple MST files for office where one is the full install. the other is word, excel, power point only and the other is word, excel, powerpoint and access.
×
×
  • Create New...