home *** CD-ROM | disk | FTP | other *** search
/ DOKAN 21 / DOKAN21.iso / Extra / wmtools.exe / RCDATA / CABINET / global.asa < prev    next >
Text File  |  1998-11-21  |  2KB  |  46 lines

  1. <SCRIPT LANGUAGE="VBScript" RUNAT="Server">
  2. Sub Session_OnStart
  3.  
  4. 'IMPORTANT This global.asa file should be used to customize presenter for your custom settings on your local setup.
  5.  
  6. 'Path to the install for Netscape
  7. Application("NS_PLAY") = "http://www.microsoft.com/windows/mediaplayer/download/default.asp"
  8.  
  9. 'Path to Core install and File Transfer Control For IE
  10. Application("NS_CORE") = "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
  11. Application("NS_FILE") = "http://activex.microsoft.com/activex/controls/mplayer/en/nsftsinf.cab#Version=3,0,0,2700"
  12. Application("MCSIControls") = "http://activex.microsoft.com/controls/mcsi/mcsiall.cab#version=1,0,0,45"
  13.  
  14. 'High bandwith file transfer settings
  15. Application("VS_FTS_IP") = "237.111.114.39"
  16. Application("VS_FTS_PORT") = "20158"
  17.  
  18. 'Low Bandwith File Transfer Settings
  19. Application("LOW_FTS_IP") = "237.111.114.32"
  20. Application("LOW_FTS_PORT") = "20152"
  21.  
  22. 'Show start time and show end time
  23. 'THESE DATES MUST BE STORED IN GMT (AKA UTC)
  24. Application("SHOW_TIME") = "04/15/1998 21:32:01"
  25. Application("SHOW_END_TIME") = "05/19/1998 10:00:02"
  26.  
  27. 'Event Title
  28. Application("EVENT_TITLE") = "Test Presentation"
  29.  
  30. 'Name and E-mail Address of person responsible for Event/person filling out this form
  31. 'Feel free to leave either of the values below blank if you do not want to provide this information to the user should an error occur.
  32. Application("ADMIN_NAME") = ""        'Name
  33. Application("ADMIN_EMAIL") = ""        'E-mail Address
  34.  
  35. 'Dimensions of NSPlayer
  36. Application("VIDEO_WIDTH") = 176    'Pixel Width of Video Screen
  37. Application("VIDEO_HEIGHT") = 133   'Pixel Height of Video Screen
  38.  
  39. 'The path to the asx file for the Presentation
  40. Application("ASX") = "yourfilehere.asx"
  41.  
  42. 'Multicast - enter value of "True" or "False"
  43. Application("MULTICAST") = "True"
  44.  
  45. End Sub
  46. </SCRIPT>