The Game...
Out of context: Reply #45
- Started
- Last post
- 92 Responses
- blackspade0
o what! hes gonna be on the simpsons 2, lol
http://www.underworldhiphop.com/…fucks sake.
--------------------------re the flash re-size:
heres the actionscript:
-----------------------
Stage.align = "TL";
// Position the movie at top, center
Stage.scaleMode = "noBorder"; // Prevent scaling (required!)// Create the listener object
/*
resizeListener = new Object();
resizeListener.onResize = function () {
fIRatio = 1024 / 768;
iWidth = Stage.width;
iHeight = Stage.height;
fSRatio = iWidth / iHeight;
trace("New width: " + iWidth);
trace("New height: " + iHeight);
trace("Image Ratio: " + fIRatio);
trace("Stage Ratio: " + fSRatio);if(fSRatio > fIRatio)
{
mcCruiser.width = Stage.width;
}
else
{
mcCruiser.height = Stage.height;
};};
Stage.addListener(resizeListener...
*/-----------------
heres the bug fix for Firefox (put it in yer head or CSS)