home *** CD-ROM | disk | FTP | other *** search
- Use "am_mod"
-
- Sub Initialize
- ClientMainWinClass = "WordProAppWnd"
- ClientID = AN_AMIPRO
- ClientModName = "am_mod"
- ClientLotusAppID = "WORDPRO"
- ShowMeModName = "040"
- AnimVersionNum = .62
- NumFramesThisAnim = 6
- AnimationType = "QuickDemo"
- SampleFile = ""
- AnimName = GetString( "0400000", IResult% )
- End Sub
-
- Public Sub ShowMe (theNextStep As Integer)
-
- GetCursorPos TempPos
- CursorPosForStep(theNextStep) = TempPos
-
- Select Case theNextStep
-
- Case 1
- StepsText = GetString( "0401001", IResult% )
- X = DoWhereIs (INSERTION_POINT,"",0,0,0,0,ClientID)
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- Exit Sub
-
- Case 2
- StepsText = GetString( "0401002", IResult% )
- SetBubblePosforMenus
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- ChooseMenuItem Footnote_Endnote
- Exit Sub
-
- Case 3
- StepsText = GetString( "0401003", IResult% )
- X = DoWhereIs (DIALOG_CONTROL,"",25975,0,0,0,ClientID)
- ShowTextBubble StepsText, .5, 1, NorthEast
- HideTextBubble
- Exit Sub
-
- Case 4
- StepsText = GetString( "0401004", IResult% )
- X = DoWhereIs (DIALOG_CONTROL,"",1,0,0,0,ClientID)
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- MoveToObj Center
- DoMouse WM_LBUTTONDOWN%, 0
- DoMouse WM_LBUTTONUP%, 0
- Exit Sub
-
- Case 5
- StepsText = GetString( "0401005", IResult% )
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- SendTextKeys GetString( "0402005", IResult% ), 50
- Exit Sub
-
- Case 6
- StepsText = GetString( "0401006", IResult% )
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- SendCtrlKeys "{ESC}", 100
- Exit Sub
- End Select
- End Sub
-