Hi,
Thanks for your reply. I ended up with the dirtiest trick ever, but it works for me this way, and do what I want... hehe 
After the page load has ended, I simple move the scrollbars to the position I wanted, and then just hide them...
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, 900);
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Horizontal, 640);
ui->webView->page()->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);
ui->webView->page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Vertical, 900);
ui->webView->page()->mainFrame()->setScrollBarValue(Qt::Horizontal, 640);
ui->webView->page()->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAlwaysOff);
ui->webView->page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOff);
To copy to clipboard, switch view to plain text mode
And that's all!
Bookmarks