bopp
Member
Posts: 13
Registered: 9/9/2005
Member Is Offline
|
| posted on 9/9/2005 at 08:53 PM |
|
|
problems in ie and safari
I have put your scroller script on a page...it works fine in mozilla (1.7.8) but won't scroll in either ie on a windoze machine or in safari
http://216.147.31.209/test.html
Also am noticing the coding is pretty inconsistent in the files...ie, in scroll.html, the semi-colons after lines are sometimes there, sometimes not
or are sometimes commas... hard to follow your convention...lol...
var auto = BEHAVE.auto,
vertical = BEHAVE.vertical,
items = ITEMS,
o_up = new Image(16,16),
o_dn = new Image(16,16),
o_class = DEFAULT.clas,
o_container = parent.document.getElementById ?
parent.document.getElementById("Tscr" + n_id) : parent.document.all["Tscr" + n_id],
w = LOOK.size[0] ? LOOK.size[0] : DEFAULT.size[0],
h = LOOK.size[1] ? LOOK.size[1] : DEFAULT.size[1],
n_wheight = vertical ? h : w,
n_step = BEHAVE.speed != 0 ? BEHAVE.speed : 1,
n_timeout=n_interval = n_pos = n_cur = prior = 0,
n_astep = Math.abs(n_step),
n_num = items.length;
main = getElem('mn');
o_cont = getElem('mnc');
o_container.style.width = w + 'px';
o_container.style.height = h + 'px';
-------------------
arrdn.onmouseover = function () {
n_step = n_astep;
move(1)
}
arrdn.onmouseout = arrup.onmouseout = function () {
n_pos += n_step
stop(1)
was this done on purpose or...? will need to get the pro version to deal with the spaces between items in the scroll...
thanks, bopp
|
|
|
bopp
Member
Posts: 13
Registered: 9/9/2005
Member Is Offline
|
| posted on 9/9/2005 at 11:12 PM |
|
|
changed the image files to html files and that took care of the problems in ie and safari...still can't get the content to refresh on demand...
|
|
|
|