how to link a button from flash to open my VB?.. this is my code that i used..
Private Sub Form_Load()
xWin.Movie = App.Path & "\Bounce.swf"
'The name and location of our .swf file
xWin.Left = 0 'The rest of these commands are just to dynamically size your
'xWin window to be the same size as the flash movie. (Makes everything
'in proportion and what-not). But they aren't essential
xWin.Top = 0
xWin.Width = 550
xWin.Height = 400
xWin.Play 'This starts your movie!
End Sub
Private Sub xWin_FSCommand(ByVal command As String, ByVal args As String)
MsgBox args
End Sub
Comments
Leave a comment