home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 November
/
Pcwk1197.iso
/
LOTUS
/
Eng-ins
/
FLG
/
080.LSS
< prev
next >
Wrap
Text File
|
1996-05-16
|
1KB
|
56 lines
Use "LTAPVN11"
Sub Initialize
ClientMainWinClass = "FLWApp"
ClientID = AN_AVERY
ClientModName = "LTAPVN11"
ClientLotusAppID = "FLW"
ShowMeModName = "080"
AnimVersionNum = 2.18
NumFramesThisAnim = 4
AnimationType = "QuickDemo"
SampleFile = "sizeobj.prz"
AnimName = GetString( "0800000", IResult% )
End Sub
Public Sub ShowMe (theNextStep As Integer)
GetCursorPos TempPos
CursorPosForStep(theNextStep) = TempPos
Select Case theNextStep
Case 1
StepsText = GetString( "0801001", IResult% )
X = DoWhereIs (DRAW_OBJ_V,"",1,0,0,0,ClientID)
ShowTextBubble StepsText, .8, .8, NorthEast
HideTextBubble
MoveToObj Center
DoMouse WM_LBUTTONDOWN%, 0
DoMouse WM_LBUTTONUP%, 0
Exit Sub
Case 2
StepsText = GetString( "0801002", IResult% )
X = DoWhereIs (DRAW_OBJ_V,"",1,0,0,0,ClientID)
ShowTextBubble StepsText, 1, .5, NorthEast
HideTextBubble
MoveToObj RightCenter
DoMouse WM_LBUTTONDOWN%, 0
Exit Sub
Case 3
X = DoWhereIs (DRAW_OBJ_V,"",1,0,0,0,ClientID)
MoveToObjRel 200 , 50
Exit Sub
Case 4
StepsText = GetString( "0801003", IResult% )
X = DoWhereIs (DRAW_OBJ_V,"",1,0,0,0,ClientID)
ShowTextBubble StepsText, 2, .5, NorthEast
HideTextBubble
DoMouse WM_LBUTTONUP%, 0
Exit Sub
End Select
End Sub