home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Examples / AppKit / SimpleService / CustomInfo.plist next >
Encoding:
Text File  |  1997-01-13  |  631 b   |  28 lines

  1. {
  2.     NSServices = (
  3.       {
  4.     NSPortName = SimpleService;
  5.         NSMessage = doOpenFileService;
  6.         NSSendTypes = (NSStringPboardType);
  7.         NSMenuItem = {
  8.             default = "Open File";
  9.         };
  10.         NSKeyEquivalent = {
  11.             default = F;
  12.         };
  13.     NSExecutable = SimpleService;
  14.       },
  15.       {
  16.     NSPortName = SimpleService;
  17.         NSMessage = doCapitalizeService;
  18.         NSSendTypes = (NSStringPboardType);
  19.         NSReturnTypes = (NSStringPboardType);
  20.         NSMenuItem = {
  21.             default = "Capitalize String";
  22.         };
  23.     NSExecutable = SimpleService;
  24.       }
  25.     );
  26. }
  27.  
  28.