|
first, copy the wmv. file to the media folder..and name it screensaver.wmv
open the mxm_skin.xml with notepad.
you need to first define the resource. So up near the top of the file, find all those other tags that have "resource" in them and paste:
<Resource Type="Image" Name="screensaver"> <File>Media\screensaver.wmv</File> </Resource>
be careful not to overlap a resource element or cut the end off of one.
Done? Ok, now scroll almost all the way to the bottom until you see this block of text
<Layout Screen="Load"> <LayoutElement Type="Image" Source="devload"> <Pos t="0" l="0" w="640" h="480" /> <Scale x="true" y="true" /> <Proportional>false</Proportional> <Loop>0</Loop> <Sound Enable="true" SuspendMusic="true" /> </LayoutElement> </Layout>
and paste this bolded text:
<Layout Screen="Saver"> <LayoutElement Type="Image" Source="screensaver"> <Pos l="351" t="143" w="220" h="150" /> <Scale x="true" y="true" /> <Justify x="center" y="center" /> <Proportional>true</Proportional> <Modifier Type="Bounce"> <Bounds l="15" t="10" b="470" r="630" /> </Modifier> </LayoutElement> </Layout>
Save the file and reboot.. if you did everything right .. after a few minutes you will see the video bouncing around.
This post has been edited by koldfuzion: Nov 10 2003, 10:31 AM
|