1 <?xml version="1.0" encoding="utf-8"?>
  2 <page>
  3   <config delay="">
  4     <setBrowserWindowStyles>
  5       { color : 'none' }
  6     </setBrowserWindowStyles>
  7     
  8     <setPageContentPosition>
  9       { left : 0, top : 0, width : -1, height : -1, scrollbars : '', transBG : true }
 10     </setPageContentPosition>
 11   </config>
 12 
 13     
 14   <userGroup>
 15     <pgStyleObject>
 16       { theStyle  : 'cursor',
 17         propVals  : 'pointer' }
 18     </pgStyleObject>
 19 
 20     <function name="myClick" event="click" params="evt,undef,target,mX,mY,isShift,isCntrl" useTB="true">
 21       <![CDATA[
 22         var htmlText = 'Parent: <span style="color:green;">' + this.name + '</span><br>' + 
 23                   'Object: <span style="color:red;">' + target.name + '</span>';
 24         tbfunction_pgTBObjSet('Info', 'htmlText', htmlText);
 25       ]]>
 26     </function>
 27   </userGroup>
 28   
 29   <Info>
 30     <pgStyleObject>
 31       { theStyle  : 'height, color',
 32         propVals  : 'auto, black' }
 33     </pgStyleObject>
 34     
 35     <htmlText>
 36       <![CDATA[
 37         <span style="color:blue;">Click on an object for details.</span>
 38       ]]>
 39     </htmlText>
 40   </Info>
 41   
 42   <!--Additional <config#> ... </config#> sections as required.-->
 43     
 44 </page>