Quote:
Originally Posted by Deviant++
I give this mod a LICENSE TO PWN :P
|
Deviant++ requested to make the media player view the controls when playing audio formats ... here is how its done ...
open vb_jukebox.php and look for
PHP Code:
if ($fext == "mpg" or $fext == "mpeg")
{
$viewheight = "290";
$viewwidth = "320";
}
else
{
$viewheight = "0";
$viewwidth = "0";
}
and replace with
PHP Code:
if ($fext == "mpg" or $fext == "mpeg")
{
$viewheight = "290";
$viewwidth = "320";
}
else
{
$viewheight = "45";
$viewwidth = "230";
}
you can play with these dimentions to suit your needs