home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 February
/
PCWK0297.iso
/
lotus
/
english
/
lotus034.dsk
/
005.LSS
< prev
next >
Wrap
Text File
|
1995-11-02
|
2KB
|
58 lines
Use "am_mod"
Sub Initialize
ClientMainWinClass = "WordProAppWndNT"
ClientID = AN_AMIPRO
ClientModName = "am_mod"
ClientLotusAppID = "WORDPRO"
ShowMeModName = "005"
AnimVersionNum = .64
NumFramesThisAnim = 4
AnimationType = "QuickDemo"
SampleFile = "la1n70??.lwp"
AnimName = GetString( "0050000", IResult% )
End Sub
Public Sub ShowMe (theNextStep As Integer)
GetCursorPos TempPos
CursorPosForStep(theNextStep) = TempPos
Select Case theNextStep
Case 1
StepsText = GetString( "0051001", IResult% )
WhereIsArg$ = GetString( "0053001", IResult% )
X = DoWhereIs (DIVISION_TABS, WhereIsArg$, 0,0,0,0,ClientID)
ShowTextBubble StepsText, .5, .5, NorthEast
HideTextBubble
MoveToObj Center
DoMouse WM_LBUTTONDBLCLK%, 0
Exit Sub
Case 2
WhereIsArg$ = GetString( "0053002", IResult% )
X = DoWhereIs (DIVISION_TABS, WhereIsArg$, 0,0,0,0,ClientID)
MoveToObjRel 25 , 175
Exit Sub
Case 3
StepsText = GetString( "0051002", IResult% )
WhereIsArg$ = GetString( "0053003", IResult% )
X = DoWhereIs (DIVISION_TABS, WhereIsArg$, 0,0,0,0,ClientID)
ShowTextBubble StepsText, .5, .5, NorthEast
HideTextBubble
SendTextKeys GetString( "0052003", IResult% ), 50
Exit Sub
Case 4
StepsText = GetString( "0051003", IResult% )
ShowTextBubble StepsText, .75, 2.5, NorthEast
HideTextBubble
MoveToObjRel 75 , 250
DoMouse WM_LBUTTONDOWN%, 0
DoMouse WM_LBUTTONUP%, 0
Exit Sub
End Select
End Sub