PDA

View Full Version : resizing a flash site?



zpewish
September 10th, 2003, 11:05 AM
hey guys,

just wondering if there is a way to resize or possibly redirect a flash site based on monitor size. any ideas?

Eric Jr.
September 10th, 2003, 11:29 AM
function do_it()
{
var xw = System.capabilities.screenResolutionX;
var yh = System.capabilities.screenResolutionY;

getURL(xw + "x" + yh + ".htm");
}

do_it();

zpewish
September 10th, 2003, 08:43 PM
thanks!! you guys are always a big help.