Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[ALLY] no-border

 [1/2] from: ptretter:norcom2000 at: 15-Apr-2001 20:13


I'm confused. Take the following: test: layout [text "TEST"] view/options test [no-border] --------------------------------------------- Problem is there is still a border. Also the help for view seems to indicate a word or block value can be passed to options however that is not the case with this windows distribution - I can only pass the value in a block to the /options refinement. Paul Tretter

 [2/2] from: larry::ecotope::com at: 16-Apr-2001 18:45


Hi Paul About no-border in View 1.1 beta. Try this:
>> view/options layout [text "Test" button "Close" [unview]] [no-title]
Notice the thin black border.
>> view/options layout [text "Test" button "Close" [unview]] [no-border
no-title] Now the border is gone. So no-border refers to any rebol border on the highest level face. About word args.
>> view/options layout [text "Test" button "Close" [unview]] 'no-title
Be sure to use the apostrophe. HTH -Larry ----- Original Message ----- From: "Paul Tretter" <[ptretter--norcom2000--com]> To: "[Ally-List--Rebol--Com]" <[ally-list--rebol--com]> Sent: Sunday, April 15, 2001 6:13 PM Subject: [ALLY] no-border
> I'm confused. Take the following: > > test: layout [text "TEST"] > view/options test [no-border] > > --------------------------------------------- > > Problem is there is still a border. > Also the help for view seems to indicate a word or block value can be
passed to options however that is not the case with this windows distribution - I can only pass the value in a block to the /options refinement.