#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Fri, 14 Sep 2018 18:16:15 +0200
changeset 8467 0c1a2545c932
parent 8466 9a4be2369088
child 8468 2c9d1cc97466
#DOCUMENTATION by cg class: DisplaySurface comment/format in: #setPointerPosition:
DisplaySurface.st
--- a/DisplaySurface.st	Fri Sep 14 18:16:00 2018 +0200
+++ b/DisplaySurface.st	Fri Sep 14 18:16:15 2018 +0200
@@ -828,7 +828,9 @@
 !
 
 setPointerPosition:aRelativePoint
-    "set the pointer to aRelativePoint relative to the view's origin"
+    "set the pointer to aRelativePoint relative to the view's origin.
+     Warning: moving the mouse pointer may lead to the mouse falling off the table
+     after a while. So it should be used very very seldom (if at all)"
 
     device setPointerPosition:aRelativePoint in:self drawableId.
 
@@ -836,6 +838,8 @@
         Transcript setPointerPosition:Transcript extent // 2.
         Screen current rootView setPointerPosition:100@100.
     "
+
+    "Modified (comment): / 14-09-2018 / 17:59:18 / Claus Gittinger"
 !
 
 uuid