home *** CD-ROM | disk | FTP | other *** search
/ Pegasus 5 / Pegasus_Vol_5_CD2.iso / lotus / lotus035.dsk / 040.LSS < prev    next >
Text File  |  1995-09-26  |  2KB  |  70 lines

  1. Use "am_mod"
  2.  
  3. Sub Initialize
  4.    ClientMainWinClass = "WordProAppWnd"
  5.    ClientID = AN_AMIPRO
  6.    ClientModName = "am_mod"
  7.    ClientLotusAppID = "WORDPRO"
  8.    ShowMeModName = "040"
  9.    AnimVersionNum =  .62 
  10.    NumFramesThisAnim =  6 
  11.    AnimationType = "QuickDemo"
  12.    SampleFile = ""
  13.    AnimName = GetString( "0400000", 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( "0401001", IResult% )
  25.    X = DoWhereIs (INSERTION_POINT,"",0,0,0,0,ClientID)
  26.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  27.    HideTextBubble
  28.    Exit Sub
  29.  
  30. Case  2 
  31.    StepsText = GetString( "0401002", IResult% )
  32.    SetBubblePosforMenus
  33.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  34.    HideTextBubble
  35.    ChooseMenuItem Footnote_Endnote
  36.    Exit Sub
  37.  
  38. Case  3 
  39.    StepsText = GetString( "0401003", IResult% )
  40.    X = DoWhereIs (DIALOG_CONTROL,"",25975,0,0,0,ClientID)
  41.    ShowTextBubble StepsText,  .5,  1, NorthEast
  42.    HideTextBubble
  43.    Exit Sub
  44.  
  45. Case  4 
  46.    StepsText = GetString( "0401004", IResult% )
  47.    X = DoWhereIs (DIALOG_CONTROL,"",1,0,0,0,ClientID)
  48.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  49.    HideTextBubble
  50.    MoveToObj Center
  51.    DoMouse WM_LBUTTONDOWN%, 0
  52.    DoMouse WM_LBUTTONUP%, 0
  53.    Exit Sub
  54.  
  55. Case  5 
  56.    StepsText = GetString( "0401005", IResult% )
  57.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  58.    HideTextBubble
  59.    SendTextKeys  GetString( "0402005", IResult% ), 50
  60.    Exit Sub
  61.  
  62. Case  6 
  63.    StepsText = GetString( "0401006", IResult% )
  64.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  65.    HideTextBubble
  66.    SendCtrlKeys  "{ESC}", 100
  67.    Exit Sub
  68. End Select
  69. End Sub
  70.