Pages: 1
But I want to add some box for the clock, Playlist, etc... I don't know how to start the code for the box. Even I read the comments, and tutorial in the forums. Can someone help me with this?
This is my JS code.
[spoiler]var css = document.createElement("link");
css.setAttribute("rel","stylesheet");
css.setAttribute("href","http://h1.ripway.com/vanraid/html/myfs.css");
document.getElementsByTagName("head")[0].appendChild(css);
//Moving Friends Box
var marqueeFriends = document.getElementById("content_2").innerHTML;
document.getElementById("content_2").innerHTML ="<marquee direction='up' height='350' scrollamount='2' onMouseOver='stop()' onMouseOut='start()'>"+
marqueeFriends+"</marquee>";
// Marquee Fan of Box
var marqueeFanof = document.getElementById("content_7").innerHTML;
document.getElementById("content_7").innerHTML ="<marquee direction='up' height='350' scrollamount='2' onMouseOver='stop()' onMouseOut='start()'>"+
marqueeFanof+"</marquee>";
// Groups
var marqueeGroups = document.getElementById('content_8').innerHTML;
var Friends = document.getElementById('content_8');
Friends.innerHTML = "<marquee id=\"marquee\" direction=\"up\" height=\"200\" scrollamount=\"2\" onMouseOver=\"stop()\" onMouseOut=\"start()\">" +
marqueeGroups + "<marquee>";
//Moving Photo Gallery
if ( ! attachOnLoadHandler(function () { movingPhotos();}))
window.onload = function () { movingPhotos();};
function movingPhotos() {
var marqueePhotos = document.getElementById("content_1").innerHTML;
document.getElementById("content_1").innerHTML ="<marquee direction='left' height='100%' scrollamount='5' onMouseOver='stop()' onMouseOut='start()'>"+
marqueePhotos+"</marquee>";[/spoiler]
How, can I position the box? Without touching my CSS extension.
Also, can my marquee can be in your script? What I mean, can I just add a another JS extension within the JS extension?
Sorry for lot of question. I'm very confuse using JS code. There are lot of tutorial and trick but only the marquee part that I know. Please help me with this. Thanks in advance.
How, can I position the box? Without touching my CSS extension.[/quote]
try to visit diz links.
[url]http://theftalk.com/viewtopic.php?id=20860[/url]
[url]http://theftalk.com/t7253-Positioning-Boxes-Script.html[/url]
[url]http://theftalk.com/t21070-Short-Script.html[/url]
[url]http://theftalk.com/t6483-Main-Box-Sidebar-%5BShort-Script%5D.html[/url]
and then for the second question.
aw, sorry im not that good in codes.
i cant help u on the 2nd question.
btw,
gudluck.
[b]Try This [/b]
[spoiler][url]http://h1.ripway.com/dementer/NewLayoutRico/adbox.html[/url][/spoiler]
[url]http://theftalk.com/t21727-WayS-Compile.html[/url]
How can I put the code in my JS code. I mean, how can I edit it and put it in my JS extension? That is why I don't get this part.
Please, I really need a serious answer and not a link. Or someone PM me. I got lot of headache understanding JS.
@enriko... the link is not working to me.


Last edited by vanraid (2009-01-07 00:13:55)
http://w3schools.com/default.asp
then, just find the codes you need, heheheh just edit the parts of the code!
Pages: 1