[REBOL] Passing arguments to a function in another script
From: warren:howsoft at: 7-Feb-2008 14:19
Just for the record, I have discovered that the following also works. I think I am discovering that "Core" and "Vid" are not as integrated as I am assuming, or something like that. Rebol[] mylay: layout[ tx1: text "3" tx2: text "2" button [do %arithfunc.r sum arg1: to-integer tx1/text arg2: to-integer tx2/text] ] view mylay --------------------------------------------- Bob