User manual
Automation Protocol Video Commands
Miranda Technologies Ltd Page 38
Example:
void FadeKeyer(int Layer, bool Up)
{
remote_send("1%x %d", Layer, Up ? 1:0);
}
Cut to Black / Cut from Black 2
These commands are identical to an instant fade to / from black.
CMD Param_1 Param_2
2 Layer No. 0=To black, 1=From black
2=Cut to/from black
Example:
void CutToBlack(int Layer, bool Black)
{
remote_send("2%x %d", Layer, Black ? 0:1);
}
Cut Keyer Up / Cut Keyer Down 3
These commands are identical to an instant fade in the designated direction.
CMD Param_1 Param_2
3 Layer No. 0=Down, 1=Up
2=Cut up/down
Example:
void CutKeyer(int Layer, bool Up)
{
remote_send("3%x %d", Layer, Up ? 1:0);
}