How did you register them?
This should work:
unit MyPackageReg;
interface
uses
ActnList, MyActionUnit;
procedure Register;
implementation
procedure Register;
begin
RegisterActions('Category', [TMyActionType], nil);
end;
end.
Note the capital R in both register declarations.
Compile this package and install it.
NGLN source
share