如何使用iFrame在Flex 3网站上设置AdBrite

时间:2011-01-13 14:15:45

标签: flex iframe

我想在我的Flex 3网站上设置AdBrite。 AdBrite建议我使用iFrame。我之前从未使用过iFrame。关于如何设置它的任何建议?

谢谢。

-Laxmidi

UPDATE Flextras.com非常友好地发布了一些链接。 (我在发布之前就把Google做了)。我打算使用在http://code.google.com/p/flex-iframe/找到的flex-iframe。但是,我不确定如何调整此示例代码以使用AdBrite:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                xmlns:flexiframe="http://code.google.com/p/flex-iframe/">

              <flexiframe:IFrame id="googleIFrame"
                            label="Google"
                            source="http://www.google.com"
                            width="80%"
                            height="80%"/>
<mx:Application>

有关如何进行的任何建议?谢谢。

-Laxmidi

更新:

请在下面找到广告代码。我需要弄清楚如何在iFrame中使用它:

<script type="text/javascript">
var AdBrite_Title_Color = 'FFFFFF';
var AdBrite_Text_Color = '000000';
var AdBrite_Background_Color = '8C9DD1';
var AdBrite_Border_Color = 'CCCCCC';
var AdBrite_URL_Color = '008000';
try{var AdBrite_Iframe=window.top!=window.self?2:1;var AdBrite_Referrer=document.referrer==''?document.location:document.referrer;AdBrite_Referrer=encodeURIComponent(AdBrite_Referrer);}catch(e){var AdBrite_Iframe='';var AdBrite_Referrer='';}
</script>
<span style="white-space:nowrap;"><script type="text/javascript">document.write(String.fromCharCode(60,83,67,82,73,80,84));document.write(' src="http://ads.adbrite.com/mb/text_group.php?sid=2345566&zs=2222385f3630&ifr='+AdBrite_Iframe+'&ref='+AdBrite_Referrer+'" type="text/javascript">');document.write(String.fromCharCode(60,47,83,67,82,73,80,84,62));</script>
<a target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=2345566&afsid=1"><img src="http://files.adbrite.com/mb/images/adbrite-your-ad-here-banner.gif" style="background-color:#CCCCCC;border:none;padding:0;margin:0;" alt="Your Ad Here" width="11" height="60" border="0" /></a></span>

感谢您的帖子。

-Laxmidi

1 个答案:

答案 0 :(得分:1)

你有Google Flex iFrame吗?它提供了一些有用的链接:

http://code.google.com/p/flex-iframe/

http://www.themidnightcoders.com/blog/2006/12/mixing-html-and-flex-using-iframe.html

http://www.ohloh.net/p/flex-iframe

Drumbeat Insight还有一个HTML Component用于Flex,它使用iFrame技巧。

更新

原始海报发布了代码,因此此更新与此相关。要将iFrame与adBrite配合使用,只需通过更改来源指定包含adBrite信息的HTML页面的URL:

根据用户的代码:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                xmlns:flexiframe="http://code.google.com/p/flex-iframe/">

              <flexiframe:IFrame id="googleIFrame"
                            label="Google"
                            source="http://www.mysite.com/adBright.html"
                            width="80%"
                            height="80%"/>
<mx:Application>