OFP uses two 'channels' to place resources/text/fade ins/outs.
Title and
Cut.
You can have two sets of text/pictures or whatever on the screen at the same time.
If you were to put:
titletext ["Text 1 here","PLAIN"]
~2
cuttext [" Text 2 here","PLAIN"]
the two text lines will overwrite each other. However if you used titletext (or cuttext) for
both of them, the second one would replace the first.
You can use similar things for resources (pictures). You can use the two channels to get two different pictures on the screen at the same time.
Take a look at the fade in/out command...
titlecut ["","BLACK IN",5]
Notice it sort of has elements of both?
The command Ref states that
cut is the background channel, and
title the foreground channel.
A fade in/out will override the
cut channel (ie. I'll be removed from the screen), but not the
title channel.
So if you ever want to put up a picture/text/resource on the screen during a fade in/out, just use title
text/
rsc/
obj