hi all.
how can i know when the shockwaveflash commander know when the file play is done/finesh. using vb6?
thanks all
Printable View
hi all.
how can i know when the shockwaveflash commander know when the file play is done/finesh. using vb6?
thanks all
I've needed something like this before and this worked fine for me..
1 Code:
Private status As Boolean Private Sub Timer1_Timer() If shockwaveflash.IsPlaying = True Then status = True Else status = False End If If status = False Then Call rarity Else Exit Sub End If End Sub
i try it before i ask in the form
sometimes its true and the flash still play'n