home *** CD-ROM | disk | FTP | other *** search
/ Pegasus 5 / Pegasus_Vol_5_CD2.iso / lotus / lotus039.dsk / 080.LSS < prev    next >
Text File  |  1995-08-09  |  1KB  |  56 lines

  1. Use "av_mod"
  2.  
  3. Sub Initialize
  4.    ClientMainWinClass = "FLWApp"
  5.    ClientID = AN_AVERY
  6.    ClientModName = "av_mod"
  7.    ClientLotusAppID = "FLW"
  8.    ShowMeModName = "080"
  9.    AnimVersionNum =  .58 
  10.    NumFramesThisAnim =  4 
  11.    AnimationType = "QuickDemo"
  12.    SampleFile = "sizeobj.prz"
  13.    AnimName = GetString( "0800000", IResult% )
  14. End Sub
  15.  
  16. Public Sub ShowMe (theNextStep As Integer)
  17.  
  18. GetCursorPos TempPos
  19. CursorPosForStep(theNextStep) = TempPos
  20.  
  21. Select Case theNextStep
  22.  
  23. Case  1 
  24.    StepsText = GetString( "0801001", IResult% )
  25.    X = DoWhereIs (DRAW_OBJ,"",1,0,0,0,ClientID)
  26.    ShowTextBubble StepsText,  .8,  .8, NorthEast
  27.    HideTextBubble
  28.    MoveToObj Center
  29.    DoMouse WM_LBUTTONDOWN%, 0
  30.    DoMouse WM_LBUTTONUP%, 0
  31.    Exit Sub
  32.  
  33. Case  2 
  34.    StepsText = GetString( "0801002", IResult% )
  35.    X = DoWhereIs (DRAW_OBJ,"",1,0,0,0,ClientID)
  36.    ShowTextBubble StepsText,  1,  .5, NorthEast
  37.    HideTextBubble
  38.    MoveToObj RightCenter
  39.    DoMouse WM_LBUTTONDOWN%, 0
  40.    Exit Sub
  41.  
  42. Case  3 
  43.    X = DoWhereIs (DRAW_OBJ,"",1,0,0,0,ClientID)
  44.    MoveToObjRel  200 , 50 
  45.    Exit Sub
  46.  
  47. Case  4 
  48.    StepsText = GetString( "0801003", IResult% )
  49.    X = DoWhereIs (DRAW_OBJ,"",1,0,0,0,ClientID)
  50.    ShowTextBubble StepsText,  2,  .5, NorthEast
  51.    HideTextBubble
  52.    DoMouse WM_LBUTTONUP%, 0
  53.    Exit Sub
  54. End Select
  55. End Sub
  56.