Page 1 of 1

그리스몽키와 embed태그 질문

Posted: 2006 04 27 10:02 37
by amire
embed태그에서 autostart를 false로 지정해놓은걸 찾아서 모두 0으로 수정하는 유저스크립트를 짜고싶습니다

<pre>
el = document.getElementsByTagName('embed');
for (i = 0; i < el.length; i++) {
if (el.getAttribute('autostart') == 'false') {
el.setAttribute('autostart', '0;');
alert(el.getAttribute('autostart'));
}
}
</pre>

이렇게 하니 autostart 값이 0으로 바뀌기는 하는데 여전히 자동으로 플레이되네요
(ff에 윈도미디어 씁니다)
autostart가 false로 지정되어있으면 자동으로 재생하지 않도록 하는 방법이 없을까요?
꼭 그리스몽키가 아니라도 괜찮습니다