Shadoware
Aug 17 2005, 09:52 PM
Is there some way to add more levels of zoom in the dvd player ?
The minimum zoom is 2x(like original dashboard), it would be great if we could use others zooms like 1.5x or 1.8x. This would be cool to watch those widescreem movies that doesnt have actual pan&scan, so we could watch them in full screem.
Odb718
Aug 18 2005, 08:25 AM
I know that having the xbox settings as widescreen and watching a widescreen dvd on a regular TV gets cut off. See if setting it to letterbox and the different settings gets ya to where you want to be.
Shadoware
Aug 18 2005, 05:06 PM
I could change the zoom steps using Jbone tips, from forum #TeamUIX.
I used winxip to edit dvd.xap in default.xip.
Under function DoMenuCOmmand() there is a loop if(curMenuItem == 5) , so I made the lines like that:
// All of the DVD zoom code
if (nZoom == 1)
{
SetZoom(1.2);
}
else if (nZoom < 2)
{
SetZoom(nZoom + 0.2);
}
else if (nZoom < 10)
{
SetZoom(nZoom + 2);
}
else if (nZoom == 10)
{
SetZoom(1);
}
Now I want to change one more thing, when I use zoom, the subtitles are increased too, I need to make subtitles stand unaltered.
If somebody there knows how to do that, tell me ok.
Rezzo
Sep 8 2005, 10:24 PM
thanks for the code Shadoware.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.