-
Notifications
You must be signed in to change notification settings - Fork 3
/
EruditeHelp.pck.st
38 lines (25 loc) · 1.35 KB
/
EruditeHelp.pck.st
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'From Cuis 6.0 [latest update: #5065] on 9 February 2022 at 10:05:51 am'!
'Description Provides online help for Cuis tools via Erudite.
Open halos on one of the tools (system browser, workspace, etc) using middle click over the tool, then click on the help halo at the bottom.'!
!provides: 'EruditeHelp' 1 7!
!requires: 'Erudite' 1 165 nil!
!CodePackageListWindow methodsFor: '*EruditeHelp' stamp: 'MM 2/9/2022 10:05:25'!
mouseDownOnHelpHandle: anEvent
"The mouse went down in the show-balloon handle"
CuisManual openInSection: 'Installed Packages'! !
!BrowserWindow methodsFor: '*EruditeHelp' stamp: 'MM 2/8/2022 12:07:32'!
mouseDownOnHelpHandle: anEvent
"The mouse went down in the show-balloon handle"
CuisManual openInSection: 'The System Browser'! !
!DebuggerWindow methodsFor: '*EruditeHelp' stamp: 'MM 2/8/2022 14:22:20'!
mouseDownOnHelpHandle: anEvent
"The mouse went down in the show-balloon handle"
CuisManual openInSection: 'The Debugger'! !
!TranscriptWindow methodsFor: '*EruditeHelp' stamp: 'MM 2/8/2022 18:24:38'!
mouseDownOnHelpHandle: anEvent
"The mouse went down in the show-balloon handle"
CuisManual openInSection: 'The Transcript'! !
!WorkspaceWindow methodsFor: '*EruditeHelp' stamp: 'MM 2/8/2022 16:06:51'!
mouseDownOnHelpHandle: anEvent
"The mouse went down in the show-balloon handle"
CuisManual openInSection: 'Workspace'! !