This script will alter d:\web\index.html so any user on the show's network can surf the show report served from the desk. To use, just drop ShowReporter.lua in your show file directory and apply the following scripts to relivant cues' actions. KillIndex() -- this call should not be automated - should only be called when you want to clear the logs -- Call this before calling any other logging macros - I put it in Cue 0.5 - House to half - then follow it with StartShow() StartTodaysLog('Tale of Two Cities') -- This is called when house goes to half StartShow() -- This is a called in when the curtain is raised (must put in text argument) StartAct('Act 1') -- call as many of these as you like - only one works in succession to the other StartScene('blah1') -- last cue of the scene (might be start of another or you may want to wait for next cue to call StartScene('asdf') again EndScene() StartScene('blah2') EndScene() EndAct() StartInterval() EndInterval() StartAct('Act 2') StartScene('blah3') -- if you want a new scene's start to end the last scene - call with true argument StartScene('blah4',true) EndScene() EndAct() LogThisCue(true) -- this can be called at any time EndShow()