[REBOL] VIEW Backdop Re:
From: petr:krenzelok:trz:cz at: 16-Sep-2000 18:12
----- Original Message -----
From: <[trobrock--crosswinds--net]>
To: <[list--rebol--com]>
Sent: Saturday, September 16, 2000 5:41 PM
Subject: [REBOL] VIEW Backdop
> Someone HELP!!!
>
> I am using this code:
>
> REBOL [
> title: "test"
> ]
>
> view layout [
> size 500x500
> backdrop %backdrop.jpg
> ]
>
> and when i try to run the file it says:
>
> ** Script Error: Cannot use path on word! value.
> ** Where: size: image/size
What are you trying to achieve? 'size is not part of VID dialect :-) If you
want to have your view window of particular size, your code should look like
following one:
view layout/size [backdrop %backdrop.jpg] 500x500
HTH,
Cheers,
-pekr-