home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Exec 3 / CD_Magazyn_EXEC_nr_3.iso / Recent / dev / e / BetterString_E.readme < prev    next >
Text File  |  2000-07-13  |  2KB  |  62 lines

  1. Short:    Module to use BetterString.mcc in AmigaE
  2. Author:   Allan Odgaard, translated to E by Daniel Westerberg
  3. Uploader: Daniel Westerberg (deniil@algonet.se)
  4. Version:  11.5
  5. Type:     dev/e
  6.  
  7. This is a translation of the BetterString_mcc.h V11.5 (21-May-00)
  8. Copyright © 2000 Allan Odgaard. All rights reserved. to Amiga-E.
  9.  
  10. Get the complete achive at http://www.diku.dk/students/duff/
  11. for full documentation and the .mcc itself!
  12.  
  13. Place the file BetterString_mcc.m in EModules:mui/ .
  14.  
  15.  
  16. I also made 8 simplifying macros and included them into the e-module:
  17.  
  18. * BString(contents)
  19. - Create a simple BetterString.
  20. Ex. Child, BString('test')
  21.  
  22. * BStringID(contents,id)
  23. - Create a BetterString with an ID so it can remember the string contents.
  24. Ex. Child, BString('better test',"ID01")
  25.  
  26. * BKeyString(contents,controlchar)
  27. - Create a BetterString that can be activated with an hotkey.
  28. Ex. Child, BString('even better test',"a")
  29.  
  30. * BKeyStringID(contents,controlchar,id)
  31. - Create a BetterString that can be activated with an hotkey and that
  32.   has an ID so it can remember the string contents.
  33. Ex. Child, BString('best test :)',"b","ID02")
  34.  
  35. The following 4 is the same as above but they have the
  36. MUIA_String_MaxLen attribute set, note the "L" in the macro name:
  37.  
  38. * BLString(contents,maxlen)
  39. - Create a simple BetterString.
  40. Ex. Child, BString('test',100)
  41.  
  42. * BLStringID(contents,maxlen,id)
  43. - Create a BetterString with an ID so it can remember the string contents.
  44. Ex. Child, BString('better test',100,"ID03")
  45.  
  46. * BLKeyString(contents,maxlen,controlchar)
  47. - Create a BetterString that can be activated with an hotkey.
  48. Ex. Child, BString('even better test',200,"c")
  49.  
  50. * BLKeyStringID(contents,maxlen,controlchar,id)
  51. - Create a BetterString that can be activated with an hotkey and that
  52.   has an ID so it can remember the string contents.
  53. Ex. Child, BString('best test :)',150,"d","ID04")
  54.  
  55.  
  56. --
  57. Other creations by Deniil 715! can be found on OnyxSoft homepage at:
  58.  
  59.  http://www.onyxsoft.nu/
  60.  
  61. Feel free to mail me if you found bugs or have suggestions!
  62.