RosettaCodeData/Task/Mouse-position/Icon/mouse-position.icon

7 lines
213 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
until *Pending() > 0 & Event() == "q" do { # loop until there is something to do
px := WAttrib("pointerx")
py := WAttrib("pointery")
# do whatever is needed
WDelay(5) # wait and share processor
2013-10-27 22:24:23 +00:00
}