home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 November / Pcwk1197.iso / LOTUS / Eng-ins / WORDPRO / 080.LSS < prev    next >
Text File  |  1996-08-20  |  2KB  |  79 lines

  1. %if GEMINI
  2. %elseif IBM_OS2
  3. %end if
  4. %if GEMINI
  5. Use "LTAPMN11"
  6. %elseif IBM_OS2
  7. Use "LTAPMO11"
  8. %end if
  9.  
  10. Sub Initialize
  11.    ClientMainWinClass = WORDPRO_MAINWINCLASS
  12.    ClientID = AN_AMIPRO
  13.    ClientModName = WORDPRO_PERSMODNAME
  14.    ClientLotusAppID = "WORDPRO"
  15.    ShowMeModName = "080"
  16.    AnimVersionNum =  2.28 
  17.    NumFramesThisAnim =  7 
  18.    AnimationType = "QuickDemo"
  19.    SampleFile = "la2n71??.lwp"
  20.    AnimName = GetString( "0800000", 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( "0801001", IResult% )
  32.    X = DoWhereIs (INSERTION_POINT_M,"",0,0,0,0,ClientID)
  33.    ShowTextBubble StepsText,  .5,  .5, SouthEast
  34.    HideTextBubble
  35.    MoveToObj Center
  36.    DoMouse WM_RBUTTONDOWN%, 0
  37.    DoMouse WM_RBUTTONUP%, 0
  38.    Exit Sub
  39.  
  40. Case  2 
  41.    StepsText = GetString( "0801002", IResult% )
  42.    ShowTextBubble StepsText,  170,  24, NorthEast
  43.    HideTextBubble
  44.    Exit Sub
  45.  
  46. Case  3 
  47.    SendCtrlKeys  "{down 2}{enter}", 100
  48.    Exit Sub
  49.  
  50. Case  4 
  51.    StepsText = GetString( "0801003", IResult% )
  52.    WhereIsIBControl IBCITABS, 1
  53.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  54.    HideTextBubble
  55.    Exit Sub
  56.  
  57. Case  5 
  58.    StepsText = GetString( "0801004", IResult% )
  59.    WhereIsIBControl IBCICONTROL, PAGESIZELIST_M
  60.    ShowTextBubble StepsText,  .5,  .5, SouthEast
  61.    HideTextBubble
  62.    MoveToObj Center
  63.    DoMouse WM_LBUTTONDOWN%, 0
  64.    Exit Sub
  65.  
  66. Case  6 
  67.    MoveToObj Center
  68.    DoMouse WM_LBUTTONUP%, 0
  69.    Exit Sub
  70.  
  71. Case  7 
  72.    WhereIsIBControl IBCICLOSEBOX, 1
  73.    MoveToObj Center
  74.    DoMouse WM_LBUTTONDOWN%, 0
  75.    DoMouse WM_LBUTTONUP%, 0
  76.    Exit Sub
  77. End Select
  78. End Sub
  79.