4 lines
138 B
Text
4 lines
138 B
Text
DynamicModule[{n = 0},
|
|
CreateDialog[{Dynamic@
|
|
TextCell@If[n == 0, "There have been no clicks yet", n],
|
|
Button["click me", n++]}]]
|