diff -r a472042fd298 -r 688f4186d4f2 MethodFinderWindow.st --- a/MethodFinderWindow.st Fri Jul 19 16:31:29 2019 +0200 +++ b/MethodFinderWindow.st Fri Jul 19 16:53:23 2019 +0200 @@ -1775,7 +1775,7 @@ ! showMeHowItWorks - ShowMeHowItWorks do:#( + ShowMeHowItWorks do: #( show: 'this little presentation shows, how to find a method when the desired result is known' intro @@ -1810,7 +1810,7 @@ )) wait: 0.5 (showing: 'Click into the "answer" field' do:( - moveTo: AnswerEditor + fastMoveTo: AnswerEditor click )) (showing: 'Enter the expected result value into the "answer" field' do:( @@ -1821,28 +1821,26 @@ fastMoveTo: SearchButton click )) - wait: 0.5 show: 'now, the finder searches for combinations that produce the desired result' - wait: 0.5 + fastMoveTo: ResultList show: 'and present code which would produce it in the answer list below' - moveTo: ResultList + show: 'if you select any item there,' wait: 0.5 - show: 'if you select any item there,' selectIndex: 2 wait: 0.5 + fastMoveTo: ImplementorsList show: 'the implementations will be shown in the top right implementor list' - moveTo: ImplementorsList show: 'if you select any item there,' selectIndex: 1 wait: 0.5 show: 'the implementation is shown in the bottom code editor' - moveTo: CodeView + fastMoveTo: CodeView wait: 0.5 show: 'Thank you for watching, indeed' ) "Created: / 18-07-2019 / 21:59:06 / Claus Gittinger" - "Modified: / 19-07-2019 / 16:26:39 / Claus Gittinger" + "Modified: / 19-07-2019 / 16:52:01 / Claus Gittinger" ! ! !MethodFinderWindow methodsFor:'private'!