home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Editor / FREDV19A.LHA / FrexxEd / fpl / RememberMenuAction.FPL < prev    next >
Encoding:
Text File  |  1995-07-19  |  371 b   |  12 lines

  1. export string LastMenuCommand;
  2.  
  3. export int RepeatMenuHook(int title, int item, int subitem)
  4. {
  5.   string type, name, key;
  6.   MenuRead(&type, &name, &LastMenuCommand, &key, title, item, subitem);
  7. }
  8.  
  9. LastMenuCommand="Request(\"There is no last command.\",\"Oops.\",\"Ok\");";
  10. Hook("MenuSelect", "RepeatMenuHook");
  11. AssignKey("ExecuteString(LastMenuCommand);","Amiga Shift a");
  12.