To make full screen work:
1. Open ufo.js;
2. Find line 192 which is:
var _obj = UFO.createElement("object");
3. Add this line after that:
_obj.setAttribute("allowfullscreen", "true");
Vincent
I tried it also. but it don't work
This is it:
writeSWF: function(id) {
var _fo = UFO.foList[id];
var _e = document.getElement
ById(id);
if (UFO.pluginType == "npapi") {
if (UFO.uaHas("gecko") || UFO.uaHas("xml")) {
while(_e.hasChildNodes()) {
_e.removeChild(_e.firstChild);
}
var _obj = UFO.createElement("object");
_obj.setAttribute("type", "application/x-shockwave-flash");
_obj.setAttribute("data", _fo.movie);
_obj.setAttribute("width", _fo.width);
_obj.setAttribute("height", _fo.height);
_obj.setAttribute("allowfullscreen", "true");
var _l = UFO.optAtt.length;
for (var i = 0; i < _l; i++) {
if (typeof _fo[UFO.optAtt
] != "undefined") _obj.setAttribute(UFO.optAtt, _fo[UFO.optAtt]);
}
is there anything wrong.
I've changed the ufo.js in he Zip-file then I installed the Modu.