/    Sign up×
Community /Pin to ProfileBookmark

should be real easy to do some help me

ok so i do not have any javascript knowledge what so ever so I need someone to help me (im good in vb and c++ tho)..

here is the code

[CODE]<script language=”JavaScript1.2″>

// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth=”150px”

// Scrollers height here
var scrollerheight=”350px”

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1

// Scrollers content goes here! Keep all of the message on the same line!

var scrollercontent='<font face=”Arial, Helvetica, sans-serif;” color=”white” size=”1″><b>Monday August 15, 2005</b><br><hr noshade color=”#808080″ size=”1″><br><b></b><b>Upcoming Birthdays</b><br><b><font color=”#FF6600″><br>Raza – Aug 20<br>Azam – Aug 25<br><br><hr noshade color=”#808080″ size=”1″></b><font color=”#FFFFFF”><b>A word from Akbar:</b><br><br>”Im so icceyyy…so icceey”<br><br>-Akbar Khan<br><br><hr noshade color=”#808080″ size=”1″><b><br><b>Random Quotes:</b><br><br>”You aint gonna win anything by stayin in 2nd”<br><br>”I got attacked by a ladybug”<br><br>”The E36 is OG”<br><br>”Im not white, and Im not a guy”</font>’

var pauseit=1

// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=”
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById(“iescroller”) : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+8+”px”
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval(“scrollscroller()”,20)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+”px”
else
cross_scroller.style.top=parseInt(scrollerheight)+8+”px”
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write(‘<div style=”position:relative;width:’+scrollerwidth+’;height:’+scrollerheight+’;overflow:hidden” onMouseover=”copyspeed=pausespeed” onMouseout=”copyspeed=scrollerspeed”>’)
write(‘<div id=”iescroller” style=”position:absolute;left:0px;top:0px;width:100%;”>’)
write(‘</div></div>’)
}
else if (document.layers){
write(‘<ilayer width=’+scrollerwidth+’ height=’+scrollerheight+’ name=”ns_scroller”>’)
write(‘<layer name=”ns_scroller2″ width=’+scrollerwidth+’ height=’+scrollerheight+’ left=0 top=0 onMouseover=”copyspeed=pausespeed” onMouseout=”copyspeed=scrollerspeed”></layer>’)
write(‘</ilayer>’)
}
}
}

</script>[/CODE]

and if you look at the 10th line of text there is the varscrollercontent…in there there is the date, which I have to manually change with is really a PITA, because I have to change it everyday…

so my request is can someone code something for me that it changes the date automatically…please I would really appreicate this..(rememebr just the date, no time or anything)

thank you so much

to post a comment
JavaScript

3 Comments(s)

Copy linkTweet thisAlerts:
@LocalHeroOct 16.2005 — I think that this would work, you can also search the web for different formats.

[CODE] <script language="JavaScript">
<!-- Begin
// Get today's current date.
var now = new Date();
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
function fourdigits(number) {
return (number < 1000) ? number + 1900 : number;
}

today = months[now.getMonth()] + " " +
date + ", " +
(fourdigits(now.getYear())) ;
// Print out the data.
document.write(today);
// End -->
</script>[/CODE]
Copy linkTweet thisAlerts:
@adnanhauthorOct 16.2005 — umm can someone insert that into the original code for me..

i need it to actually scroll with the text...not seperately

im a noob

thanks again

update...i tried this..
var scrollercontent='&lt;font face="Arial, Helvetica, sans-serif;" color="white" size="1"&gt;&lt;b&gt;' + document.write(today) + '&lt;/b&gt;&lt;br&gt;&lt;hr noshade color="#808080" size="1"&gt;&lt;br&gt;&lt;b&gt;&lt;/b&gt;&lt;b&gt;Upcoming Birthdays&lt;/b&gt;&lt;br&gt;&lt;b&gt;&lt;font color="#FF6600"&gt;&lt;br&gt;Raza - Aug 20&lt;br&gt;Azam - Aug 25&lt;br&gt;&lt;br&gt;&lt;hr noshade color="#808080" size="1"&gt;&lt;/b&gt;&lt;font color="#FFFFFF"&gt;&lt;b&gt;A word from Akbar:&lt;/b&gt;&lt;br&gt;&lt;br&gt;"Im so icceyyy...so icceey"&lt;br&gt;&lt;br&gt;-Akbar Khan&lt;br&gt;&lt;br&gt;&lt;hr noshade color="#808080" size="1"&gt;&lt;b&gt;&lt;br&gt;&lt;b&gt;Random Quotes:&lt;/b&gt;&lt;br&gt;&lt;br&gt;"You aint gonna win anything by stayin in 2nd"&lt;br&gt;&lt;br&gt;"I got attacked by a ladybug"&lt;br&gt;&lt;br&gt;"The E36 is OG"&lt;br&gt;&lt;br&gt;"Im not white, and Im not a guy"&lt;/font&gt;'

but it outputs "undefined" instead of the date. any clues?
Copy linkTweet thisAlerts:
@vwphillipsOct 16.2005 — see

[URL]http://www.codingforums.com/showthread.php?p=365378#post365378[/URL]
×

Success!

Help @adnanh spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.27,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...