Page 1 of 1

Transparency when PopUp

Posted: Fri Sep 11, 2009 8:38 am
by tubaplayer93
Hi,
I am working on C++ dot Net environment and trying to make my falsh UI being transparent.

What we did in the project is making public ref class Form1 inherit f_in_box__lib::f_in_box__form.
And in function Form1(void), we only write

Code: Select all

this->FlashMethod_LoadMovie(0, swf_file);


Now the transparent background can be well done through f-in-box demo version.
But when I have a popUp or Alarm showing, the backgound appeared again.
I mean I can see the ActiveX Control window.
I post the snapshot on the website.
http://www.wretch.cc/album/show.php?i=tubaplayer93&b=1&f=1753667767&p=1

Is this supported and if so, how would I go about doing that?

Posted: Fri Sep 11, 2009 11:37 am
by Softanics
Thank you for your question.

To check who is responsible for this behavior I would create a HTML page with some background and the movie placed over it. Could you please check it?

Thank you.

Posted: Mon Sep 14, 2009 2:39 am
by tubaplayer93
Hi,
I have tried to embed the same falsh into a HTML page with background.
And the snapshot is posted in the link below.

http://www.wretch.cc/album/show.php?i=tubaplayer93&b=1&f=1753667768&p=2

I am sure that the backgournd I saw in C++ dot Net is ActiveX Control Window.

Could you help checking out the problem I got?
Thank you!

Posted: Mon Sep 14, 2009 5:43 am
by Softanics
Could you please send me this movie and the HTML page to support (at) f-in-box.com, I'll check it.

Thank you!

Posted: Mon Sep 14, 2009 7:42 am
by tubaplayer93
I've mailed you my flash and HTML files.
Thanks for your help and Looking forward to getting reply from you.

Posted: Tue Sep 15, 2009 4:44 pm
by Softanics
Thank you for your letter.

Now I understand what's the problem.

Set the width and the height correctly:

Code: Select all

FlashPlayerForm.Width = 440;
FlashPlayerForm.Height = 275;


Rebuild the project, launch the application -- you don't see this shadow!

Thank you.