Full screen in firefox1.5.0.1

I did try making flash in full screen according to Kirupa tutorial. However I found that whenever the flash file is launched in Firefox browser, it is full screen only in horizontal direction. The vertical direction of the flash file was displayed only one forth. This problem was found only via Fire Fox.

Anyway I found the way to cope up this problem. :party:

In order to let firefox display full screen flash file. You have to delete the following code:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>

It is always at the first and second line of HTML file.

enjoy

Thats the not the correct way to do that. :sigh: It sends IE and other browsers into Quirks mode. The correct way is to use CSS in the head tags.


html, body {
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
}