|
-
Jun 12th, 2000, 07:05 PM
#1
Thread Starter
Lively Member
Hi,
I'm embedding a Flash movie in my VB app. There are 4 buttons in my Flash movie. Each button in the movie, when clicked, should load a different form of my VB app.
Does anybody know why this VB code doesn't work? Only the button with args ="1" works, and nothing else.
Private Sub ShockwaveFlash1_FSCommand(ByVal command As String, ByVal args As String)
If args = "1" Then
form2.show
If args = "2" Then
form3.show
If args = "3" Then
form4.show
If args = "4" Then
form5.show
End If
End If
End If
End If
End Sub
Thanks for any help!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|