Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app that has an IFrame with a page flash overly allowing you to draw on webpages. When I go to Facebook with the application, an overlay pops up covering everything at 50% opacity (Which is fine). The problem is that the overlay is all black in some installations of IE7. Can anyone advise on how to get around this?

Here is my code:

<iframe name="test" ID="test" src="http://www.facebook.com/cyberkruz" height="200" style="width: 100%; height: 100%" allowtransparency="true"></iframe>

Here is the code that they generate that does this.

<div style="z-index: 1000001; position: absolute; filter: alpha(opacity = 50); WIDTH: 9999px; background: black; height: 9999px; top: 0px; left: 0px; opacity: 0.5;" onclick="top.location.href=window.location.href"/>

Is there something I can do with meta tags or something to get the filter alpha to work correctly?

share|improve this question
I'd bet there's a good chance they've purposely put code in to make this very difficult for you. – Beska Mar 12 '10 at 21:32
They did, but it is supposed to show 50% opacity. In some IE7 instances it works, and others it doesn't. – Matthew Kruskamp Mar 12 '10 at 21:34
looks like someone just wasted some bounty points, huh? ;) – naugtur Mar 23 '10 at 21:41
Yes I have indeed wasted bounty points :(. – Matthew Kruskamp Jan 12 '11 at 17:43

5 Answers

up vote 1 down vote accepted

Basically, you cannot do this as you cannot modify items inside an IFrame like this. The only option is to screenshot the requested page and then display it over top.

share|improve this answer

Hum, try this in a css class (order is important) on the iframe :

-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity = 50);
opacity: .5;

The first line is the new IE8 syntax, yep another one....

EDIT: The logic should be to move the opacity filter outside the iframe source but after your edit I guess you can't.

share|improve this answer
Since that is the code that facebook is creating I cannot modify it. I can only house it in an iFrame. – Matthew Kruskamp Mar 17 '10 at 23:21
Oh well, the opacity is set IN the IFRAME. Then if you can't modify the code in the IFRAME I don't know if its possible. The IE filter: alpha() is a method and I think what your are experiencing is a security behavior : IE7 may block/ignore your script (filter: alpha()) inside the iframe for security reason. – JoeBilly Mar 18 '10 at 12:03

If this is a security restriction and your application page is stored locally you might try to add the mark of the web (http://msdn.microsoft.com/en-us/library/ms537628(VS.85).aspx ) to your web page (this will prevent IE to consider it a local page and run local security policy on it )

share|improve this answer
Unfortunately it is not. It is a hosted page. I tried every configuration of the mark of the web anyways and it still isn't working. – Matthew Kruskamp Mar 26 '10 at 21:30

I suppose this can be solved with CSS...

I don't see why this shouldn't work if You put a div above it, but I belive You that it doesn't work:) As for the solution with weird ie8 namespaces - there is something similiar for ie7. I saw that on MSDN

...but

You can try using PNG background. Not an ordinary PNG, but a 8-bit one that works in ie6 and above and almost everything! It's like a transparent gif, but with opacity instead of full transparency.

read HERE

You'll need to find a tool that creates them. GIMP doesnt (AFAIK)

share|improve this answer

Matthew Kruskamp

Loading Facebook into an Iframe and using overlay on the page falls into Facebooks Prohibited Functionality. MORE: http://developers.facebook.com/docs/guides/policy/examples_and_explanations/Prohibited_Functionality/

Apps that appear to take over a person’s Profile or other pages on Facebook.com are not permitted. This functionality runs counter to our efforts to educate users on how to identify safe and authentic Facebook services to avoid situations such as being phished. For more information on use of Facebook brand assets, please visit the Brand Permissions Center.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.