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

[ALLY] loops & events ?

From: olivier::auverlot::ac-lille::fr at: 3-Aug-2000 17:28

This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BFFD70.4DBC1700 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I want to make a window with two buttons. The first ("START") is running a loop (1,2,3,4,...). The second ("STOP") is stopping this work. How can i do this ??? REBOL [] a: 0 view layout [ button "Start" [ continuer: true print "start" until [ a: a + 1 print a (continuer = false) ] ] button "Stop" [ print "stop" continuer: false ] ] Regards Olivier ;-) ------=_NextPart_000_0005_01BFFD70.4DBC1700 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content="text/html; charset=iso-8859-1" http-equiv=Content-Type> <META content="MSHTML 5.00.2614.3500" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <DIV><FONT face=Arial size=2>I want to make a window with two buttons. The first ("START") is running a loop (1,2,3,4,...). The second ("STOP") is stopping this work.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=Arial size=2>How can i do this ???</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=Arial size=2><BR>REBOL []</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=Arial size=2>a: 0</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=Arial size=2>view layout [<BR>&nbsp;button "Start" [<BR>&nbsp;&nbsp;continuer: true<BR>&nbsp;&nbsp;print start <BR>&nbsp;&nbsp;until [ <BR>&nbsp;&nbsp;&nbsp;a: a + 1<BR>&nbsp;&nbsp;&nbsp;print a<BR>&nbsp;&nbsp;&nbsp;(continuer false)<BR>&nbsp;&nbsp;]<BR>&nbsp;]</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=Arial size=2>&nbsp;button "Stop" [<BR>&nbsp;&nbsp;print stop <BR>&nbsp;&nbsp;continuer: false<BR>&nbsp;]<BR>]<BR></FONT></DIV> <DIV><FONT face=Arial size=2>Regards</FONT></DIV> <DIV><FONT face=Arial size=2>Olivier ;-)</FONT>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_0005_01BFFD70.4DBC1700--