Click to See Complete Forum and Search --> : how to position an embed element


vcorn4
01-09-2004, 11:42 AM
hi,
i want to position embed element created using document.createElement("embed");

i try

var embedNode = document.createElement("embed");
embedNode.setAttribute("id","flashMov");
embedNode.setAttribute("src","intro1.swf");
embedNode.setAttribute("height","25%");
embedNode.setAttribute("width","25%");
embedNode.setAttribute("quality","high");
embedNode.setAttribute("type","application/x-shockwave-flash");

then i want to position it using div...how to do that?

vcorn4
01-10-2004, 12:22 AM
hi all,
thx for reading
i already solved it