There is no unpress, but you can query the Down property.
The example took some dirty casts, but it works both for the action and for the OnClick.
procedure Form1.ActionExecute(Sender: TObject);
var
sb : TSpeedButton;
begin
if Sender is TSpeedButton then
sb := TSpeedButton(Sender)
else if (Sender is TAction) and (TAction(Sender).ActionComponent is TSpeedButton) then
sb := TSpeedButton(TAction(Sender).ActionComponent)
else
sb := nil;
if sb=nil then
DoNormalAction(Sender)
else if sb.Down then
DoDownAction(sb)
else
DoUpAction(sb);
end;
