Click to See Complete Forum and Search --> : (Newbie alert): Embedding a blogger etc in a scrolling website frame


rodeo
11-22-2003, 04:28 PM
Gday.
I'm as newbie as they come so please excuse anything that sounds dumb in the following. The thing is I have tried searching for and googling for this problem but I don't get what I want, probably because I don't really know what words to search for.

Basically I want to have a homepage like this site: http://burnish.net <-- I'm sure this is just one of zillions of sites with the scrolling journal feature I want, but I'm familiar with this one.
I've looked at the source code for this site and it seems to say that the 'journal box' is run via Blogger.

There's this series of <script> commands in the <head> section of the source code, so mabe that makes as much sense to some of you:

<script language="javascript" type="text/javascript" src="http://burnish.net/imisc/ypSimpleScrollC.js"></script>
<script language="javascript" type="text/javascript">
<!--
var test = new ypSimpleScroll("myScroll", 272, 158, 228, 329, 100)
//-->
</script>
<script src="http://burnish.net/cgi-bin/sc2/comment.pl?id=01&action=getjava" type="text/javascript"></script>

I've tried googling and searching for things like 'embedded blog' etc but without much luck. Anyone with a guess as to how this is done?

96turnerri
11-23-2003, 07:35 AM
yeah thats fine put that in your head recommend moving external .js file to your directory heres the scrolling bit


<div id="up" style="position:absolute; left: 519px; top: 160px; width:16px; height:19px; z-index:3; visibility: visible">
<a href="#"
onmousedown="test.scrollNorth(); return false;"
onmousemove="return false;"
onmouseout="test.endScroll();"
onmouseup="test.endScroll();"
onclick="return false;"
><img src="http://burnish.net/up1.gif" width="16" height="19" border="0" alt="up"></a>
</div>

<div id="down" style="position:absolute; left: 519px; top: 185px; width:16px; height:19px; z-index:3; visibility: visible">
<a href="#"
onmousedown="test.scrollSouth(); return false;"
onmousemove="return false;"
onmouseout="test.endScroll();"
onmouseup="test.endScroll();"
onclick="return false;"
><img src="http://burnish.net/down1.gif" width="16" height="19" border="0" alt="down"></a>
</div>