I am imbedding a swf movie file in dreamweaver and when it opens it is in proportion but if you drag the browser window to a larger size the movie dose not stay in proportion.
screenWidth=screen.availWidth;
screenHeight=screen.availHeight;
if (screenWidth<=780) w=screenWidth-10;
else w=780;
h=w*7/10;
x=(screenWidth-w-10)/2;
y=(screenHeight-h-40)/2;
if (x<0) x=0;
if (y<0) y=0;
Dose anyone have any idears, im pulling my hair out so any help would be much apreceated.
screenWidth=screen.availWidth;
screenHeight=screen.availHeight;
if (screenWidth<=780) w=screenWidth-10;
else w=780;
h=w*7/10;
x=(screenWidth-w-10)/2;
y=(screenHeight-h-40)/2;
if (x<0) x=0;
if (y<0) y=0;
Dose anyone have any idears, im pulling my hair out so any help would be much apreceated.