init.agi 448 B

12345678910111213141516171819202122
  1. /*
  2. Video Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "cyinput",
  7. Desc: "Cyinput 速型輸入法",
  8. Group: "IME",
  9. IconPath: "Cyinput/img/small_icon.png",
  10. Version: "0.1.0",
  11. StartDir: "Cyinput/index.html",
  12. SupportFW: true,
  13. LaunchFWDir: "Cyinput/index.html",
  14. SupportEmb: false,
  15. InitFWSize: [170, 260],
  16. SupportedExt: []
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));