by osetivo » Sun Jan 24, 2010 9:03 am
Nevermind, I figured it out.
My old code was setting the PlayerObject to a width/height of (1, 1) which would automatically resize to the proper OnResize(width, height) using....
po = new PlayerObject("player");
po.createPlayer(1, 1);
Apparently it no longer automatically resize, so I have a 1x1 pixel player. :D (yes the sound was working)
Just had to set the PlayerObject size to fix "my" issue.
po = new PlayerObject("player");
po.createPlayer(<?php echo $player_width?>, <?php echo $player_height?>);