# HG changeset patch # User Claus Gittinger # Date 1563479970 -7200 # Node ID 530f3998b3a2c90eaf2f026d16fbaf5ffb380a63 # Parent bc4ff07233d7137a93a6804a24cc73fd3b50aee1 #DOCUMENTATION by cg class: MethodFinderWindow added: #showMeHowItWorks diff -r bc4ff07233d7 -r 530f3998b3a2 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