Skip to main content
added 99 characters in body
Source Link
Dr. belisarius
  • 116.8k
  • 13
  • 208
  • 466

Perhaps something like this may help you.

c = Dynamic@a a = {}; tt = Table[AppendTo[a, {i, Pause[0.1*i]}]; i, {i, 8}] 

MostHere, most code has to do with "automatic" abortion

kill = 0; t = CreateScheduledTask[kill = 1]; StartScheduledTask[t]; c = Dynamic@a a = {}; tt = Table[If[kill == 1, Abort[], AppendTo[a, {i, Pause[0.1*i]}]]; i, {i, 8}] RemoveScheduledTask[t]; 

Perhaps something like this may help you.

Most code has to do with "automatic" abortion

kill = 0; t = CreateScheduledTask[kill = 1]; StartScheduledTask[t]; c = Dynamic@a a = {}; tt = Table[If[kill == 1, Abort[], AppendTo[a, {i, Pause[0.1*i]}]]; i, {i, 8}] RemoveScheduledTask[t]; 

Perhaps something like this may help you.

c = Dynamic@a a = {}; tt = Table[AppendTo[a, {i, Pause[0.1*i]}]; i, {i, 8}] 

Here, most code has to do with "automatic" abortion

kill = 0; t = CreateScheduledTask[kill = 1]; StartScheduledTask[t]; c = Dynamic@a a = {}; tt = Table[If[kill == 1, Abort[], AppendTo[a, {i, Pause[0.1*i]}]]; i, {i, 8}] RemoveScheduledTask[t]; 
Post Undeleted by Dr. belisarius
Post Deleted by Dr. belisarius
Source Link
Dr. belisarius
  • 116.8k
  • 13
  • 208
  • 466

Perhaps something like this may help you.

Most code has to do with "automatic" abortion

kill = 0; t = CreateScheduledTask[kill = 1]; StartScheduledTask[t]; c = Dynamic@a a = {}; tt = Table[If[kill == 1, Abort[], AppendTo[a, {i, Pause[0.1*i]}]]; i, {i, 8}] RemoveScheduledTask[t];