
there are .txt log files for text, warning and errors...if something dies
check the log files..but it still might not help you ;)

////////////////////////////////////////////////////////////////////////////////
>videoplayer, mayaplayer - setframe
you can now set your frame in the videoplayer and the mayaplayer.
there are 2 parameters, 'frame' and 'play',
frame will set the frame number and play is an on/off(0/1) value
which will set the animation to play or stop.

so to pause at a frame:
<mplay play="0"></mplay>

or to pause at a specific frame:
<mplay frame="401" play="0"></mplay>

and of course to start the playback again set play="1"

<key mode="set" control="keybank+" val="q"/>

<keybank num="0" key="1"></keybank>
<keybank num="1" key="2"></keybank>
<keybank num="2" key="3"></keybank>
<event key="q" bank="0"></event>

////////////////////////////////////////////////////////////////////////////////
>multi keymapping, support weird keys : " ;'. "  etc..

i haven't fixed 'weird keys', but i found out why its not working
so i can fix it soon.

keybanks:

the demoengine has 10 keybanks( so thats 0..9, not 1..10 ) .  you can add events to any of these banks.
the demoengine also keeps track of which is the current selected keybank.

<keybank set="0"></keybank>
will set the current bank to 0
<keybank inc="1"></keybank>
will increase the current bank by 1
<keybank inc="3"></keybank>
will increate the current bank by 3
<keybank dec="2"></keybank>
will decrease the current bank by 2

whenever the current bank is less than zero, it will stop at 0, if it
goes higher than 9, it will stop at 9.  the default keybank is 0.

also there is a change to the way events are specified:

<event key="Q" bank="0">
	<clear color="0xffff0000"></clear>
</event>

easy... if you don't put the bank parameter it will default to -1,
-1 means it will work GLOBALLY, it doesn't matter what bank the current keybank
is set to.

so..here is an example of how to use it completely:


	<add type="clear" name="clear"></add>
	<clear color="0xff000000"></clear>

	<event key="1" bank="-1">
		<keybank inc="1"></keybank>
	</event>
	<event key="2" bank="-1">
		<keybank dec="1"></keybank>
	</event>
	<event key="3" bank="-1">
		<keybank set="3"></keybank>
	</event>


	<event key="Q" bank="0">
	<clear color="0xffff0000"></clear>
	</event>
	<event key="W" bank="1">
	<clear color="0xff00ff00"></clear>
	</event>
	<event key="E" bank="-1">
	<clear color="0xff0000ff"></clear>
	</event>

	<draworder effect="clear"></draworder>

so keys 1,2,3 will change the current keybank
keys Q,W,E are events, but Q,W only work when you are on curtain current keybank
E will work no matter what your current keybank selected is.

////////////////////////////////////////////////////////////////////////////////