home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EDG-MF1.DMS / in.adf / S / Messages.mform
Encoding:
Text File  |  1995-07-08  |  1.3 KB  |  47 lines

  1. /******************************************************************
  2. Error Messeges
  3. ******************************************************************/
  4. Messeges.mform:
  5. parse arg n,A B . , mess1, name
  6.  
  7. if name = "" then name = " "
  8.  
  9.  
  10. messlist = "MANUAL PATHERR EXERR MAKERR FILERR NUNERR ACSERR EMPTYERR NOEMPTYERR"
  11.  
  12.  
  13. mess.1 = "For further information please"
  14. cmess.1 = "consult your MacroForm manual."
  15.  
  16. mess.2 = "Destination does not exists!"
  17. cmess.2 = "Choose a different "||name||" path."
  18.  
  19. mess.3 = "You can only perform this operation"
  20. cmess.3 = "with curves in the back layer!"
  21.  
  22. mess.4 = "Could not create the "||name||" directory!"
  23. cmess.4 = "Specify a valid directory name."
  24.  
  25. mess.5 = name||" is not a directory!"
  26. cmess.5 = "Specify a valid directory name."
  27.  
  28. mess.6 = "You MUST specify a "name" directory!"
  29. cmess.6 = "Specify a valid directory name."
  30.  
  31. mess.7 = "Sorry...can't perform the '"||name||"' operation!"
  32. cmess.7 = "There is no empty layer or 'Auto Curve Set' is turned off."
  33.  
  34. mess.8 = "This layer is empty! There is no data on"
  35. cmess.8 = "which to perform the '"||name||"' operation."
  36.  
  37. mess.9 = "Sorry...can't perform the '"||name||"' operation!"
  38. cmess.9 = "'"||name||"' MUST have an empty layer for scratch work."
  39.  
  40.  
  41.  
  42.  
  43. t = Find(messlist,mess1)
  44.  
  45. return notify(n,A||mess.t,B||cmess.t)
  46.  
  47.