Wulfgar
Newbie
Posts: 1
Registered: 2/23/2005
Member Is Offline
|
| posted on 2/23/2005 at 05:17 PM |
|
|
Can't seem to get install going
Hi,
I've read the documentation, and I've read lots of install messages on this forum, but I still can't seem to get it.
Here's my directory structure;
main
_____scroller
__________s0_data
__________s1_data
__________ts_files
I'm trying to place the scroller in my index.html that resides in /main.
My index.html header looks like this;
<HEAD>
<script language="javascript" src="/scroller/ts_files/scroll.js"></script>
</head>
and my scroller instance looks like this;
<td ALIGN=CENTER>
<script language="JavaScript">
<UL>
<!-- //
Tscroll_init(0);
// -->
</UL>
</script>
My scroll.js file looks like this;
// Title: Tigra Scroller
// Description: See the demo at url
// URL: http://www.softcomplex.com/products/tigra_scroller/
// Version: 1.5
// Date: 07-03-2003 (mm-dd-yyyy)
// Note: Permission given to use this script in ANY kind of applications if
// header lines are left unchanged.
// set correct path to Tigra Scroller files
var Tscroll_path_to_files = 'scroller/ts_files/'
// please, don't change anything below this line
function Tscroll_init (id) {
document.write ('<iframe id="Tscr' + id + '" scrolling=no frameborder=no src="' + Tscroll_path_to_files + 'scroll.html?' + id + '"
width="1" height="1"></iframe>');
}
I'm sure it's just a matter of wrong path, but I've tried every combination I can think of.
Anyone seeing something I'm not?
|
|
|
|