| View previous topic :: View next topic |
| Author |
Message |
tubaplayer93
Joined: 11 Sep 2009 Posts: 4
|
Posted: Fri Sep 11, 2009 8:38 am Post subject: Transparency when PopUp |
|
|
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: | | 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?
Last edited by tubaplayer93 on Mon Sep 14, 2009 2:40 am; edited 1 time in total |
|
| Back to top |
|
 |
Softanics Site Admin
Joined: 18 Sep 2004 Posts: 1386 Location: Russia, St. Petersburg
|
Posted: Fri Sep 11, 2009 11:37 am Post subject: |
|
|
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. _________________ Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html |
|
| Back to top |
|
 |
tubaplayer93
Joined: 11 Sep 2009 Posts: 4
|
Posted: Mon Sep 14, 2009 2:39 am Post subject: |
|
|
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! |
|
| Back to top |
|
 |
Softanics Site Admin
Joined: 18 Sep 2004 Posts: 1386 Location: Russia, St. Petersburg
|
Posted: Mon Sep 14, 2009 5:43 am Post subject: |
|
|
Could you please send me this movie and the HTML page to support (at) f-in-box.com, I'll check it.
Thank you! _________________ Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html |
|
| Back to top |
|
 |
tubaplayer93
Joined: 11 Sep 2009 Posts: 4
|
Posted: Mon Sep 14, 2009 7:42 am Post subject: |
|
|
I've mailed you my flash and HTML files.
Thanks for your help and Looking forward to getting reply from you. |
|
| Back to top |
|
 |
Softanics Site Admin
Joined: 18 Sep 2004 Posts: 1386 Location: Russia, St. Petersburg
|
Posted: Tue Sep 15, 2009 4:44 pm Post subject: |
|
|
Thank you for your letter.
Now I understand what's the problem.
Set the width and the height correctly:
| Code: |
FlashPlayerForm.Width = 440;
FlashPlayerForm.Height = 275;
|
Rebuild the project, launch the application -- you don't see this shadow!
Thank you. _________________ Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html |
|
| Back to top |
|
 |
|