User manual

Automation Protocol Easytext Commands
Miranda Technologies Ltd Page 220
If a box number of 255 (0xFF) is sent, then ALL boxes are re-rendered with
their latest values. This is useful to guarantee that all boxes update
simultaneously.
.
Note: This command must be sent to cause boxes to be re-rendered after
adjusting their parameters via automation
Example:
void RenderBox(int Layer, int BoxNo)
{
remote_send("Z3%01x%02x", Layer, BoxNo);
}
Change Image Z4
This command allows the image associated with an image box to be replaced
with another image held on disk.
Only .OXT image files are supported for this command.
CMD Param_1 Param_2 Param_3
Z4 %01x
Layer No.
%02x
Image Box No.
%s
Image Filename
Example:
void UpdateBoxImage(int Layer, int BoxNo)
{
remote_send("Z4%01x%02x%s", Layer, BoxNo,
"NewLogo.oxt");
}
Set Text Font and Colour Z2
The font and colour of the text contained in a text box can be changed with
this command.
CMD Param_1 Param_2 Param_3 Param_4 Param_5
Z2 %01x
Layer No.
%02x
Text Box No.
%02x
Point Size
%06x
Colour
%s
Font File Name