Results 1 to 3 of 3

Thread: flash file

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 2008
    Posts
    198

    flash file

    hi all.
    how can i know when the shockwaveflash commander know when the file play is done/finesh. using vb6?
    thanks all

  2. #2
    Member
    Join Date
    Oct 2007
    Posts
    34

    Re: flash file

    I've needed something like this before and this worked fine for me..

    1 Code:
    1. Private status     As Boolean
    2.  
    3. Private Sub Timer1_Timer()
    4.  
    5.    If shockwaveflash.IsPlaying = True Then
    6.       status = True
    7.     Else
    8.       status = False
    9.    End If
    10.  
    11.    If status = False Then
    12.       Call rarity
    13.     Else
    14.       Exit Sub
    15.    End If
    16.  
    17. End Sub

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Apr 2008
    Posts
    198

    Re: flash file

    i try it before i ask in the form
    sometimes its true and the flash still play'n
    IT CTO & System Administrator.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width