overlay <overlay_ref> {
statement 1;
...
statement n;
}
FDM Function - opcode 9
Defines an overlay. The overlay definition (statements 1...255) must consist of on instructions. The maximum number of overlays you can have in a script is 50.
<overlay_ref> is an overlay name.
SR-INS-002461.
No parameter substitutions are possible with this statement.
Also see Defining alternative FDM overlays.
main {
on MAKING_CALL
load_overlay offHook;
end
}
overlay offHook {
on OUT_CALL_ANS
load_overlay ...
end
on DIAL_TONE
display "Dial Now";
end
on AUDIBLE_RINGING
display "Ringing";
end
}