Page 1 of 1

how to pass parameter from flash to vb.net

Posted: Thu Jul 26, 2007 7:44 pm
by shimi2001
when i click on button in flash i whould to do something
in vb.net (acording to the button click)
how can i do it

there is sample to transfer data between flash to vb.net

thanks
shimon

Re: how to pass parameter from flash to vb.net

Posted: Thu Jul 26, 2007 8:15 pm
by Softanics
Thank you for your question.

shimi2001 wrote:when i click on button in flash i whould to do something
in vb.net (acording to the button click)
how can i do it

there is sample to transfer data between flash to vb.net


In Flash IDE:

Code: Select all

on (release) {
   fscommand("OnClick", "YourData");
}


In .NET just handle OnFSCommand event. You receive "OnClick" and "YourData".