Welcome! Log In Create A New Profile

Advanced

scrolling Msg not displaying

Posted by Anneli 
Announcements Last Post
Announcement SoC Curricula 09/30/2017 01:08PM
Announcement Demarcation or scoping of examinations and assessment 02/13/2017 07:59AM
Announcement School of Computing Short Learning Programmes 11/24/2014 08:37AM
Announcement Unisa contact information 07/28/2011 01:28PM
scrolling Msg not displaying
April 25, 2007 07:44AM
Dear TvD,

I have tested my work over and over, but have a problem as soon as I upload to the FTP Server, my scrolling- and status bar messages does not display, what am i doing wrong?
This is my example for a scrolling message that i used, please help!


//Scroll message in status barr

var msg = "bla bla bla... "
function showMsg()
{
window.status = msg
msg = msg.substring(1, msg.length) + msg.substring(0, 1)
scrollmsgID = setTimeout("showMsg()", 150)
}
TvD
Re: scrolling Msg not displaying
April 25, 2007 09:30PM
This works for me - did you remember to add the onLoad in the body:

<html>
<head>
<title>*** Your Title Here ***</title>

<script>
//Scroll message in status barr

var msg = "bla bla bla... "
function showMsg()
{
window.status = msg
msg = msg.substring(1, msg.length) + msg.substring(0, 1)
scrollmsgID = setTimeout("showMsg()", 150)
}

</script>
</head>
<body onLoad="showMsg()">

yyyyyyyyyyyyyyyyyyyyyyy
</body>
</html>

Else see the post in the 2006 forums: http://osprey.unisa.ac.za/phorum/read.php?10,41216

If you still cannot get it going post here again, but upload the html file with the javascript to your folder on osprey (let me know what is your surname) and I will look at your code over the weekend
TvD
Re: scrolling Msg not displaying
September 19, 2008 07:35AM
Download the JavaSCript editor from here:
http://www.c-point.com/javascript_editor.php
this will allow you to debug your code - i.e. step through it line by line

Problems with the scroll message comes up year after year and many solutions have been offered over the years - search for scroll in the Internet and Web Design forums from about 2003 onwards such as
http://osprey.unisa.ac.za/phorum/read.php?193,48670,48718#msg-48718
http://osprey.unisa.ac.za/phorum/read.php?10,41216
http://osprey.unisa.ac.za/phorum/read.php?193,48670,48670#msg-48670
Re: scrolling Msg not displaying
September 19, 2008 11:21AM
Sorry, only registered users may post in this forum.

Click here to login