home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999_B.iso / Lotus123 / FRENCH / LOTUS007.DSK / 025.LSS < prev    next >
Text File  |  1996-09-23  |  2KB  |  61 lines

  1. ' Copyright 1995-97, Lotus Development Corporation. All rights reserved.
  2. %if GEMINI
  3. %elseif IBM_OS2
  4. %end if
  5. %if GEMINI
  6. Use "LTAPGN11"
  7. %elseif IBM_OS2
  8. Use "LTAPGO11"
  9. %end if
  10.  
  11. Sub Initialize
  12.    ClientMainWinClass = GEMINI_MAINWINCLASS
  13.    ClientID = AN_GEMINI
  14.    ClientModName = GEMINI_PERSMODNAME
  15.    ClientLotusAppID = "GEMINI"
  16.    ShowMeModName = "025"
  17.    AnimVersionNum =  2.24 
  18.    NumFramesThisAnim =  4 
  19.    AnimationType = "QuickDemo"
  20.    SampleFile = "ssdn02??.123"
  21.    AnimName = GetString( "0250000", IResult% )
  22. End Sub
  23.  
  24. Public Sub ShowMe (theNextStep As Integer)
  25.  
  26. GetCursorPos TempPos
  27. CursorPosForStep(theNextStep) = TempPos
  28.  
  29. Select Case theNextStep
  30.  
  31. Case  1 
  32.    StepsText = GetString( "0251001", IResult% )
  33.    X = SetTargetWindow (ToolWin_G, "ssdn02??.123", ClientID, DeskwHdl.val)
  34.    X = DoWhereIs (COLUMN_SELECTOR_G,"",5,1,0,0,ClientID)
  35.    ShowTextBubble StepsText,  1,  .5, NorthEast
  36.    HideTextBubble
  37.    Exit Sub
  38.  
  39. Case  2 
  40.    X = SetTargetWindow (ToolWin_G, "ssdn02??.123", ClientID, DeskwHdl.val)
  41.    X = DoWhereIs (COLUMN_SELECTOR_G,"",5,1,0,0,ClientID)
  42.    MoveToObj RightCenter
  43.    DoMouse WM_LBUTTONDOWN%, 0
  44.    Exit Sub
  45.  
  46. Case  3 
  47.    StepsText = GetString( "0251002", IResult% )
  48.    ShowTextBubble StepsText,  1,  .5, NorthEast
  49.    HideTextBubble
  50.    MoveToObj LeftCenter
  51.    Exit Sub
  52.  
  53. Case  4 
  54.    StepsText = GetString( "0251003", IResult% )
  55.    ShowTextBubble StepsText,  0,  .5, SouthEast
  56.    HideTextBubble
  57.    DoMouse WM_LBUTTONUP%, 0
  58.    Exit Sub
  59. End Select
  60. End Sub
  61.