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

[REBOL] Newbie VIEW problem

From: kpeters-vu:ware at: 22-Nov-2005 20:33

Hi all ~ when I press the New button from the script below, Rebol complains with ** Script Error: foreach expected data argument of type: series ** Where: clear-fields ** Near: foreach face panel/pane [ if all [series? face/text flag-face? face field] [ clear face/text face/line-list: none and I have no clue as to why? Can someone enlighten me? TIA, Kai ... snip ;------------------------------------------------------------------------------------------------ entrypanel: layout [ across label "First Name" field_FirstName: field 200 "Joe" label "Last Name" field_LastName: field 200 return ] ;------------------------------------------------------------------------------------------------ form_ClientMaintenance: layout [ across clientpanel: box entry-panel/size with [ pane: entrypanel ] return newbutton: button "New" [ rec-new ] ] ;------------------------------------------------------------------------------------------------ rec-new: func [][ clear-fields clientpanel focus field_FirstName ] ...snip