Page 1 of 1

f_in_box__control and the webbrowser 2.0 control

Posted: Tue Nov 06, 2007 7:05 am
by martijnv
Hi,

When I add a f_in_box__control to the control collection of a .Net 2.0 webbrowser control, so it flows above the html in it, it looks like the webbrowser eats all the mouseclick events. For example. If the flash contains scrollbars or buttons, they don't work anymore.

Anyone any idea to get working again?
Thnx

Posted: Tue Nov 06, 2007 8:20 am
by martijnv
Nevermind. Can't find why it won't work, but I will use a container where I send the webbrowser control to the back.

Posted: Tue Nov 06, 2007 9:45 am
by Softanics
Thank you for your question.

Yes, that's strange. Could you please send me zipped project source to support (at) f-in-box.com ?

Posted: Tue Nov 06, 2007 1:48 pm
by Softanics
I've received your project, thank you.

As a solution I can suggest you the following. Set TransparentMode to True. Notice that changing this property causes all others properties will be set to default values, so you need additionally to write something like that:

Code: Select all

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim form2 As New Form2()
        form2.Show()

        Me.Interaction1.TransparentMode = True
        Me.Interaction1.FlashProperty_Movie = "http://PRIVATE_AREA/Movement-sliders.swf"
        ' Set background and others...
    End Sub

Posted: Tue Nov 06, 2007 2:33 pm
by martijnv
Thank you for you're time. You're suggestion is acceptable. Don't understand why it didn't worked with TransparentMode set to false, but my propblem seems to be solved. So I probably need a license soon ;-)

Posted: Thu Dec 06, 2007 2:30 pm
by martijnv
Hmm should have test this earlier, but with TransparentMode on the mouse works fine but then the keyboard hits don't reach my flash object anymore. I recently tried one with a textbox in it.

With TransparentMode off my keyboard works just fine...

Hope you can help me again ;-)

Posted: Thu Dec 06, 2007 8:11 pm
by Softanics
martijnv wrote:Hmm should have test this earlier, but with TransparentMode on the mouse works fine but then the keyboard hits don't reach my flash object anymore. I recently tried one with a textbox in it.

With TransparentMode off my keyboard works just fine...

Hope you can help me again ;-)


:)

OK, just send me again the project with the problem (and the movie too) to support (at) f-in-box.com