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

[REBOL] Re: How to simulate action on one button

From: greggirwin:mindspring at: 10-May-2003 21:12

Hi Ronald, r> I'd like to get the same effect as if I had done a mouse click on r> one button, but this "action" is originated from script itself. If you create a reference to the face (e.g. my-btn: button), then you can do this: click-face: func [face][ face/feel/engage face 'down none ] -- Gregg