home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 November / Pcwk1197.iso / LOTUS / Eng-ins / WORDPRO / 085.LSS < prev    next >
Text File  |  1996-08-20  |  2KB  |  82 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 = "085"
  16.    AnimVersionNum =  2.28 
  17.    NumFramesThisAnim =  7 
  18.    AnimationType = "QuickDemo"
  19.    SampleFile = "la2n71??.lwp"
  20.    AnimName = GetString( "0850000", 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( "0851001", 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( "0851002", IResult% )
  42.    ShowTextBubble StepsText,  172.5,  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( "0851003", IResult% )
  52.    WhereIsIBControl IBCITABS, 1
  53.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  54.    HideTextBubble
  55.    Exit Sub
  56.  
  57. Case  5 
  58.    StepsText = GetString( "0851004", IResult% )
  59.    WhereIsIBControl IBCICONTROL, PAGEORIENTATION_M
  60.    ShowTextBubble StepsText,  .25,  .5, SouthEast
  61.    HideTextBubble
  62.    Exit Sub
  63.  
  64. Case  6 
  65.    StepsText = GetString( "0851005", IResult% )
  66.    WhereIsIBControl IBCICONTROL, PAGEORIENTATION_M
  67.    ShowTextBubble StepsText,  .75,  .5, SouthEast
  68.    HideTextBubble
  69.    MoveToObjRel  75 , 50 
  70.    DoMouse WM_LBUTTONDOWN%, 0
  71.    DoMouse WM_LBUTTONUP%, 0
  72.    Exit Sub
  73.  
  74. Case  7 
  75.    WhereIsIBControl IBCICLOSEBOX, 1
  76.    MoveToObj Center
  77.    DoMouse WM_LBUTTONDOWN%, 0
  78.    DoMouse WM_LBUTTONUP%, 0
  79.    Exit Sub
  80. End Select
  81. End Sub
  82.