Código:
y ahora me encuentro trabajando en el mismo ejemplo en VB 2010 y el evento es asi :Private Sub ShockwaveFlash1_FSCommand(ByVal command As String, ByVal args As String) Dim i As Integer Select Case command Case "CheckButs" 'in this case the only command we aspect from Flash noaction = True 'necessary to avoid reaction of the VB-Checkboxes CheckButs = args 'in args is the CheckButs-String from Flash! For i = 0 To 2 Check1(i).Value = Split(args, ";")(i) 'set the VB-CheckBoxen according to the values in args Next noaction = False 'and give them free again! End Select End Sub
Código:
Me ayudan a adaptarlo por que aun no entiendo como trabaja la devolucion de los eventos en este .NET Private Sub ShockwaveFlash1_FSCommand(sender As Object, e As FlashControlV71._IShockwaveFlashEvents_FSCommandEvent) Handles ShockwaveFlash1.FSCommand '??? End Sub