Printing a Webview

2008-07-10 Thread Western Botanicals
I am trying to print a whole page in a webview, but it is only printing the portion that I can see in the window (there is more if I scroll down), how can I print the whole thing. I think the problem may be that the page setup is not the right size. What can I do? Thank you Justin

Re: Printing a Webview

2008-07-10 Thread Frédéric Testuz
Hello, If your have : WebView *myView; Don't print myView, but print [[[myView mainFrame] frameView] documentView]. Consider WebView and frameView like NSScrolView. You don't want to print the scroll view but its content. Frédéric Testuz Le 10 juil. 08 à 17:44, Western Botanicals a