Witam!
Chciałbym za pomocą greasemonkey edytować troche parametrów obiektu flash
Szukałem troche wszędzie inne informacje a pozatym w skryptach GM jestem troche zielony.
W kodzie strony widnieje linia:
Kod:
<script type="text/javascript" src="html/script.js"></script>
Plik script.js wygląda tak:
Kod:
$(function()
{
flashInit();
});
function flashInit()
{
var flash = {
url: "DM.swf",
id: "dreamFlash",
width: "100%",
height: "100%",
ver: "10.0",
vars: {},
params: {},
attrs: {}
};
with (flash)
swfobject.embedSWF(url, id, width, height, ver, null, vars, params, attrs, function(e)
{
if (!e.success)
{
var tishiWrapper = $("#tishiWrapper");
$(document.body).css("background-color", "#DCDCDC");
$("#tishi", tishiWrapper).css({"background-image": "url(html/bg.jpg)"});
tishiWrapper.fadeIn("normal");
setInterval(function()
{
swfobject.embedSWF(url, id, width, height, ver, null, vars, params, attrs, null);
}, 10000);
}
});
}
chciałbym aby skrypt zmieniał mi np width na 75% czy dodawał taki parametr jak wmode
Pozdrawiam i dzięki za każdą odp ; )