-
I have made a menu in macromedia flash 4 for a VB5 program I am writing.
I have a problam with the flash menu in vb. It works fine, but my problam is I want to click on the menu flash buttons for vb to do a command. I used a lable as a button and put it over the flash menu. But the flash program will not do the animation because the lable is in the way. If I move the lable the animation will work fine, but I won't be able to click on a buttton!
Is there any way I can have animation flash and still be able to click over the flash button to send a command to vb?
thanks you.
-
Look at:
http://www.macromedia.com/support/di...ivex_in_vb.htm
I saw your question answered a few months ago when I did a search of the past questions database, but it isn't there now. Who deletes these messages?
-
Fs command
If you set the menu button's onclick action (in flash) to an FS command sending a command like "menuclick", and then set the flash controll FScommand event in VB (it will be like: Private Sub Flashscreen_FScommand(command,args as string)
Use a select case or if statement to distinguish between your FS commands
That should handle it for you!:cool: