"Bruno" <
[hidden email]> wrote in message
news:attkf4$2n1a3$
[hidden email]...
> Hi all,
>
> Is there any way in Dolphin to display aString (in HTML format) in
> aURLPresenter without creating a File on hard drive ?
>
presenter := URLPresenter createIn: shell.
browser := presenter view controlDispatch.
"We must wait until the browser has loaded the blank document..."
[browser readyState == READYSTATE_COMPLETE]
whileFalse: [SessionManager inputState pumpMessages].
"... and then we can stuff in the HTML"
browser document body innerHTML: stream contents
HTH
Blair