The Debug window delivered this message,
TRACE: Home-> On Show
TRACE: 0: local this="Home";
TRACE: 1:Audio.Toggle.Play(CHANNEL_BACKGROUND);
TRACE: LastError = 0("Success.")
What does it mean?
Thanks,
handuma
Professional Software Development Tools
The Debug window delivered this message,
TRACE: Home-> On Show
TRACE: 0: local this="Home";
TRACE: 1:Audio.Toggle.Play(CHANNEL_BACKGROUND);
TRACE: LastError = 0("Success.")
What does it mean?
Thanks,
handuma
TRACE: Home-> On Show
TRACE: 0: local this="Home";
TRACE: 1:Audio.Toggle.Play(CHANNEL_BACKGROUND);
TRACE: LastError = 0("Success.")
This is my interpretation
TRACE: Home-> On Show --The On Show event happened on the page named home
TRACE: 0: local this="Home"; -- automatically set the variable this to "Home"
TRACE: 1:Audio.Toggle.Play(CHANNEL_BACKGROUND); --execute command on line one which is to toggle the play of audio in the background channel
TRACE: LastError = 0("Success.") --command completed successfully.
HTH
Tigg
TJ-Tigger
"A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
"Draco dormiens nunquam titillandus."
Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine
Thanks TJ-Tiger,
I'll stop worrying about the debug messages I've received so far. Your interpretaition makes them seem friendly but why are there messages about the first page and none about the others?
Handuma