home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pegasus 5
/
Pegasus_Vol_5_CD2.iso
/
lotus
/
lotus039.dsk
/
080.LSS
< prev
next >
Wrap
Text File
|
1995-08-09
|
1KB
|
56 lines
Use "av_mod"
Sub Initialize
ClientMainWinClass = "FLWApp"
ClientID = AN_AVERY
ClientModName = "av_mod"
ClientLotusAppID = "FLW"
ShowMeModName = "080"
AnimVersionNum = .58
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,"",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,"",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,"",1,0,0,0,ClientID)
MoveToObjRel 200 , 50
Exit Sub
Case 4
StepsText = GetString( "0801003", IResult% )
X = DoWhereIs (DRAW_OBJ,"",1,0,0,0,ClientID)
ShowTextBubble StepsText, 2, .5, NorthEast
HideTextBubble
DoMouse WM_LBUTTONUP%, 0
Exit Sub
End Select
End Sub