home *** CD-ROM | disk | FTP | other *** search
- ' Copyright 1995-97, Lotus Development Corporation. All rights reserved.
- %if GEMINI
- %elseif IBM_OS2
- %end if
- %if GEMINI
- Use "LTAPGN11"
- %elseif IBM_OS2
- Use "LTAPGO11"
- %end if
-
- Sub Initialize
- ClientMainWinClass = GEMINI_MAINWINCLASS
- ClientID = AN_GEMINI
- ClientModName = GEMINI_PERSMODNAME
- ClientLotusAppID = "GEMINI"
- ShowMeModName = "085"
- AnimVersionNum = 2.24
- NumFramesThisAnim = 3
- AnimationType = "QuickDemo"
- SampleFile = "ssdn02??.123"
- AnimName = GetString( "0850000", IResult% )
- End Sub
-
- Public Sub ShowMe (theNextStep As Integer)
-
- GetCursorPos TempPos
- CursorPosForStep(theNextStep) = TempPos
-
- Select Case theNextStep
-
- Case 1
- StepsText = GetString( "0851001", IResult% )
- X = SetTargetWindow (ToolWin_G, "ssdn02??.123", ClientID, DeskwHdl.val)
- X = DoWhereIs (ROW_SELECTOR_G,"",1,1,0,0,ClientID)
- ShowTextBubble StepsText, .5, 1, NorthEast
- HideTextBubble
- MoveToObj CenterBottom
- DoMouse WM_LBUTTONDOWN%, 0
- Exit Sub
-
- Case 2
- StepsText = GetString( "0851002", IResult% )
- ShowTextBubble StepsText, .5, 1, NorthEast
- HideTextBubble
- MoveToObjRel 50 , 150
- Exit Sub
-
- Case 3
- StepsText = GetString( "0851003", IResult% )
- Delay 1000
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- DoMouse WM_LBUTTONUP%, 0
- Exit Sub
- End Select
- End Sub
-