-- invoke the table by calling the following handler:
-- <itemlist> and <tableformatlist> specify the values and properties of the table. these lists can be composed on the fly
-- or the values can be stored in a container (see my script "sampleTableList" for details)
-- if you want to compose the table only without to show it right away => prepare or preprocess it, then set the onlyPrepare flag
-- since it can take some time to compose huge tables, especially if the text must be renderend, instead of images
-- or if you need to know the dimension of the table in case of setting the #adjustToFit property to #none
-- (which may change the dimension of the displayrect according to the contents), before displaying the table
-- optional you can specify a callbackhandler to get an event as soon as the table is prepared,
-- if left out, the mTablePrepared() handler of this script receives the event and can be customized to fit your needs
-- if you have specified a callbackhandler you can also specify an instance which receives the call
-- if left out, the callbackhandler is called on moviescript level with 'do'
-- so if you specify a custom callbackhandler without callbackInstance, make sure the handler does exist to avoid script errors
-- as soon as callbackInstance is specified, a missing callBackHandler won't cause errors, but just fails silently
mShowTable me, itemlist, tableformatlist, tabname, onlyPrepare, callBackHandler, callbackInstance