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

[ALLY] Re: How can I hide the field?

From: allenk:powerup:au at: 10-Apr-2001 9:58

Hi Brett, Until the layout has been shown 'hide won't have any effect. So you could do it this way to keep that face from showing. l: layout [ f: field with [show?: false] t: text "test"] view l Once shown 'hide works as expected. e.g l: layout [ f: field t: text "test" button "Hide F" [hide f] ] view l Cheers, Allen K this is fun!