scroll_to_view(true) doesn't seem to work in all situations. For example, with html:
<html>
<head>
<style>
#box
{
border: 1px solid blue;
height: 70px;
width: 100px;
overflow: auto;
}
</style>
</head>
<body>
<br>
<div id="box">
<br><br><br><br><br><br><br><br>
<div id="ScrollToMe">
Hello!
</div>
<br><br><br><br><br><br><br><br>
</div>
</body>
</html>
scroll_to_view(true) on <div id="ScrollToMe"> sets the element to just outside of the div (and not visible). scroll_to_view(false) works fine.
Can you confirm this effect? (I've only tested with HTMLite)