[REBOL]
From: inetw3::mindspring::com at: 29-Aug-2003 17:36
Hello ML,
I've put together a browser in Rebol/view but I'm
finding my ability to code is limiting me in moving
ahead.
problem: I have a function being called by a button
which resets (or shows) a new HTML page in a box
panel
;
inside-the-function [
*document: layout/offset/size xmlview 0x0 500x350
page/pane: document show page*
]
but the *page: box ends up becoming a type? string
when I click some HTML page links:
page: {Connection: Keep-Alive
Date: Fri, 29 Aug 2003 22:21:07 GMT
Set-Cookie: PREF=ID=7be8eed63a024f27:TM=10621
95667:LM=1062 etc...}
Any ideas why this happens?
After some pages are built, they don't reset (show),
rebol says they are *Out of range or past end.
what does this mean?
By the way, this happens with some web pages and not others
(www.rebol.com pages works perfectly in browser).
The browser works perfectly for local pages and pages built
in the editor's browser.