If you absolutely need it at the bottom of the screen, then why not just use a frame? Make it a few pixels high, let the rest of it scroll.... yeah.
Or you could use a <div> to hold everything else above it, and set that so that so you have it scrolling if it's bigger than the space given. (Do divs even work with height settings? Haven't tried that much, but I think it might not work well. Or maybe use a table or something if that fails.) Then just put whatever you want after the </div> tag, and that would stay at the bottom, or at least after the scrolling div... you'd just need to be sure to set the heights corrently.
(probably use pixels for the bottom and percent for the upper one. Or, rather, set the whole thing to 100% somehow, then set the bottom to pixels, and the upper part would fill the remaining space. ...should work, anyway. Might be complex to set up like that, though.)
You can also use layers, but that would cause it to overlap with the content under it.
For example:
HTML Code:
<div style="z-index:1">put your stuff here, bottom align it in a table, div, or something, and put the rest of the content as you would normally on a page. the z index... height will put this on top of the rest. I think that 1 means above... but you might want 2... haven't done that in a while.</div>
As for the dragging thing, look at the scripts here, find one that does what you want:
then.. remove the stuff you don't like, such as the code that makes it clickable, or whatever.
but, since you want it to work on double click, just replace onClick with onDblClick. look that up to be sure it's right, but I think I saw that yesterday when I was looking for something else.
Hope this helps.
Bookmarks