[EMAIL PROTECTED] wrote:
> I was trying the embedded scripts example from rebol.com and I was
> wondering should this execute when the browser loads the page?
>
> <SCRIPT language="REBOL">
No, it can't. REBOL is separate language, not some browser embedded one.
Of course, you can "do" your .html file, it will find rebol code inside
of it, and execute it, but we are still talking console here. To be able
perform client side browser scripting, you will have to wait for
REBOL/Browse and pray browser of your liking is supported :-)
btw: to REBOL Tech. - what browsers are REBOL/Browse plug-ins to be
created for? I also hope /Browse is going to be based upon /Command
rather than /Core ...
-pekr-
>
>
> [
> REBOL [
> Title: "REBOL Script in HTML File"
> Date: 24-Apr-1999
> File: %inhtml.r
> Purpose: {
> Shows how to embed a REBOL subscript within an
> HTML document.
> }
> ]
>
> print "REBOL spoken here!"
> ]
>
> </SCRIPT>
>
> tom johnson