#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 18 Jul 2019 21:59:30 +0200
changeset 3696 530f3998b3a2
parent 3695 bc4ff07233d7
child 3697 46c77420db3b
#DOCUMENTATION by cg class: MethodFinderWindow added: #showMeHowItWorks
MethodFinderWindow.st
--- a/MethodFinderWindow.st	Thu Jul 18 21:57:25 2019 +0200
+++ b/MethodFinderWindow.st	Thu Jul 18 21:59:30 2019 +0200
@@ -1692,6 +1692,39 @@
 ^receiverWithArgument
 ! !
 
+!MethodFinderWindow methodsFor:'help - demonstration'!
+
+showMeHowItWorks
+    ShowMeHowItWorks do:#(
+        showing: 'Choose the number of arguments'
+        do: (
+            moveTo: NumberOfArguments
+            select: '1'
+        )    
+        showing: 'Click into the "receiver" field'
+        do: (
+            moveTo: ReceiverEditor
+            click: ReceiverEditor
+        )
+        showing: 'Enter a value (or expression) into "receiver" field'
+        do: (
+            enter: '100'
+        )
+        showing: 'Click into the "first argument" field'
+        do: (
+            moveTo: Arg1Editor
+            click: ReceiverEditor
+        )
+        showing: 'Enter a value (or expression) into "receiver" field'
+        do: (
+            enter: '100'
+        )
+        
+    )
+
+    "Created: / 18-07-2019 / 21:59:06 / Claus Gittinger"
+! !
+
 !MethodFinderWindow methodsFor:'initialization'!
 
 argument1WidgetCreated: aWidget