init.agi 523 B

1234567891011121314151617181920212223
  1. /*
  2. Dummy Module Registration Information
  3. Do not try to call any AJGI users / filepath functions in this script.
  4. */
  5. //Define the launchInfo for the module
  6. var moduleLaunchInfo = {
  7. Name: "Recorder",
  8. Desc: "A basic audio recorder",
  9. Group: "Media",
  10. IconPath: "Recorder/img/small_icon.png",
  11. Version: "1.0",
  12. StartDir: "Recorder/index.html",
  13. SupportFW: true,
  14. LaunchFWDir: "Recorder/index.html",
  15. SupportEmb: false,
  16. InitFWSize: [540, 232]
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));