init.agi 538 B

1234567891011121314151617181920212223
  1. /*
  2. Video Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Video",
  7. Desc: "The basic video player for ArOZ Online",
  8. Group: "Media",
  9. IconPath: "Video/img/module_icon.png",
  10. Version: "0.0.6",
  11. StartDir: "Video/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Video/index.html",
  14. SupportEmb: true,
  15. LaunchEmb: "Video/embedded.html",
  16. InitFWSize: [585, 840],
  17. InitEmbSize: [700, 424],
  18. SupportedExt: [".webm",".mp4",".ogg"]
  19. }
  20. //Register the module
  21. registerModule(JSON.stringify(moduleLaunchInfo));