home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 November / Pcwk1197.iso / LOTUS / Eng-ins / FLG / 215.LSS < prev    next >
Text File  |  1996-06-24  |  2KB  |  69 lines

  1. %if GEMINI
  2. %elseif IBM_OS2
  3. %end if
  4. %if GEMINI
  5. Use "LTAPVN11"
  6. %elseif IBM_OS2
  7. Use "LTAPVO11"
  8. %end if
  9.  
  10. Sub Initialize
  11.    ClientMainWinClass = FLW_MAINWINCLASS
  12.    ClientID = AN_AVERY
  13.    ClientModName = FLW_PERSMODNAME
  14.    ClientLotusAppID = "FLW"
  15.    ShowMeModName = "215"
  16.    AnimVersionNum =  2.23 
  17.    NumFramesThisAnim =  6 
  18.    AnimationType = "QuickDemo"
  19.    SampleFile = "edittext.prz"
  20.    AnimName = GetString( "2150000", IResult% )
  21. End Sub
  22.  
  23. Public Sub ShowMe (theNextStep As Integer)
  24.  
  25. GetCursorPos TempPos
  26. CursorPosForStep(theNextStep) = TempPos
  27.  
  28. Select Case theNextStep
  29.  
  30. Case  1 
  31.    StepsText = GetString( "2151001", IResult% )
  32.    X = DoWhereIs (DRAW_OBJ_V,"",3,0,0,0,ClientID)
  33.    ShowTextBubble StepsText,  .2,  .5, NorthEast
  34.    HideTextBubble
  35.    MoveToObjRel  20 , 50 
  36.    DoMouse WM_LBUTTONDOWN%, 0
  37.    DoMouse WM_LBUTTONUP%, 0
  38.    Exit Sub
  39.  
  40. Case  2 
  41.    X = DoWhereIs (DRAW_OBJ_V,"",3,0,0,0,ClientID)
  42.    DoMouse WM_LBUTTONDOWN%, 0
  43.    DoMouse WM_LBUTTONUP%, 0
  44.    Exit Sub
  45.  
  46. Case  3 
  47.    StepsText = GetString( "2151002", IResult% )
  48.    ShowTextBubble StepsText,  .1,  .5, NorthEast
  49.    HideTextBubble
  50.    SendCtrlKeys  "{HOME}", 100
  51.    Exit Sub
  52.  
  53. Case  4 
  54.    SendTextKeys  GetString( "2152004", IResult% ), 50
  55.    Exit Sub
  56.  
  57. Case  5 
  58.    StepsText = GetString( "2151003", IResult% )
  59.    X = DoWhereIs (DRAW_OBJ_V,"",3,0,0,0,ClientID)
  60.    ShowTextBubble StepsText,  .55, -.2, NorthEast
  61.    HideTextBubble
  62.    Exit Sub
  63.  
  64. Case  6 
  65.    SendCtrlKeys  "{ESC}", 100
  66.    Exit Sub
  67. End Select
  68. End Sub
  69.