tags:

views:

28

answers:

1

I use this code:

view layout [

    box sky 200x100  
    font [
      shadow 0x0
      align: 'center 
      size: 16 
      color: blue 
      colors: [255.255.255 255.255.255]
    ] "Test Shadow"
]

But still get shadow. Is it possible to get rid off it ? Thanks.

+1  A: 

Because there is an error in your code. You might save yourself sometime if you check your code before posting here.

Try

shadow: 0x0
Peter W A Wood
I'm too used to IDE in other languages that makes my brain lazy to even detect basic syntax error :)
Rebol Tutorial
It did give no error, I would expect him to say something bad then I would have known.
Rebol Tutorial
Would you expect a C compiler (or JavaScript) to notice that if you wrote (if x = -1) instead of (if x == -1)?I think Rebol is good, but it's not clairvoyant!
Peter W A Wood
The Compiler no but Visual Studio or VBA IDE yes :)
Rebol Tutorial
Still my question is not answered ;) I would like multiple lines with MULTIPLE fonts / colors.
Rebol Tutorial
I've given you a workable suggestion in the comments to the other question you posted about this and have recently added the essence of the answer for you.
Peter W A Wood