' 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 = "100"
   AnimVersionNum =  2.24 
   NumFramesThisAnim =  7 
   AnimationType = "QuickDemo"
   SampleFile = "ssdn14??.123"
   AnimName = GetString( "1000000", IResult% )
End Sub

Public Sub ShowMe (theNextStep As Integer)

GetCursorPos TempPos
CursorPosForStep(theNextStep) = TempPos

Select Case theNextStep

Case  1 
   StepsText = GetString( "1001001", IResult% )
   SetBubblePosforMenus
   ShowTextBubble StepsText,  .5,  .5, NorthEast
   HideTextBubble
   ChooseMenuItem  DtChooseVersion_g
   Exit Sub

Case  2 
   StepsText = GetString( "1001002", IResult% )
   WhereIsDlgControl  DID_VC_VERSIONEDRANGES_g, "", 0
   ShowTextBubble StepsText,  .5,  .5, SouthWest
   HideTextBubble
   MoveToObj Center
   Exit Sub

Case  3 
   StepsText = GetString( "1001003", IResult% )
   WhereIsDlgControl  DID_VCD_VERSIONS_g, "", 0
   ShowTextBubble StepsText,  .5,  .5, SouthEast
   HideTextBubble
   MoveToObjRel  50 , 10 
   DoMouse WM_LBUTTONDOWN%, 0
   DoMouse WM_LBUTTONUP%, 0
   Exit Sub

Case  4 
   StepsText = GetString( "1001004", IResult% )
   WhereIsDlgControl  DID_VC_GOTORANGE_g, "", 0
   ShowTextBubble StepsText,  .5,  .5, SouthEast
   HideTextBubble
   Exit Sub

Case  5 
   StepsText = GetString( "1001005", IResult% )
   WhereIsDlgControl  DID_VC_DISPLAY_g, "", 0
   ShowTextBubble StepsText,  .5,  .5, NorthEast
   HideTextBubble
   MoveToObj Center
   DoMouse WM_LBUTTONDOWN%, 0
   DoMouse WM_LBUTTONUP%, 0
   Exit Sub

Case  6 
   StepsText = GetString( "1001006", IResult% )
   ShowTextBubble StepsText,  0,  .5, SouthWest
   HideTextBubble
   Exit Sub

Case  7 
   StepsText = GetString( "1001007", IResult% )
   WhereIsDlgControl  DID_VC_CLOSE_g, "", 0
   ShowTextBubble StepsText,  .5,  .5, NorthEast
   HideTextBubble
   MoveToObj Center
   DoMouse WM_LBUTTONDOWN%, 0
   DoMouse WM_LBUTTONUP%, 0
   Exit Sub
End Select
End Sub