Changes between Version 1 and Version 2 of documentation/tutorials/PythonEventSystem

Show
Ignore:
Author:
lloydw (IP: 202.68.89.228)
Timestamp:
01/08/08 20:50:56 (10 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • documentation/tutorials/PythonEventSystem

    v1 v2  
    8686}}} 
    8787 
    88 At this point the ''RocketInvaders'' will now run, however you'll get a nasty script error as Python attempts to execute the ''onload'' event in mainmenu.rml. Update the ''onload'' and ''onclose'' events to use Python script which will correctly display and hide the logo. 
    89 {{{ 
    90 <body template="window" onload="document.context.LoadDocument('data/logo.rml').Show()" onclose="document.context.logo.Close()"> 
     88At this point the ''RocketInvaders'' will now run, however you'll get a nasty script error as Python attempts to execute the ''onload'' event in mainmenu.rml. Update the ''onload'' and ''onunload'' events to use Python script which will correctly display and hide the logo. 
     89{{{ 
     90<body template="window" onload="document.context.LoadDocument('data/logo.rml').Show()" onunload="document.context.logo.Close()"> 
    9191}}}  
    9292