Create a Message Box from a Script.
Hello,
I like to create a message box from a rule-based event.
Trying to use command "window.alert" I always get error 'not defined'.
Using lookupbean I fail cause I find a message only for package siEnvironmentBean, which does work for IM.
Does anyone have an idea that works?
My script example:
function abort(s)
{
eb.abortScript(s, true);
}
var eb = bsf.lookupBean("siEnvironmentBean");
main()
{
abort("Attention! \You copied Content. \Please check whether copied content is still correct!");
};
Happy for all hints,
Klaus


