admob 广告在 Android Air 应用程序中不起作用

发布于 2024-12-19 14:55:02 字数 1147 浏览 0 评论 0原文

这是我在 adobe flash 中使用的代码

var _stageWebView:StageWebView;
var myAdvertURL:String = "http://www.xxxxx.com/admob/admob.html";
//
createAd()
//
function createAd():void {
    // check that _stageWebView doersn't exist
    if (! _stageWebView) {
        _stageWebView = new StageWebView () ;
        // set the size of the html 'window'
        _stageWebView.viewPort = new Rectangle(0,0,800,50);
        // add a listener for when the content of the StageWebView changes
        //_stageWebView.addEventListener(LocationChangeEvent.LOCATION_CHANGE,onLocationChange);
        // start loading the URL;
        _stageWebView.loadURL(myAdvertURL);
    }
    // show the ad by setting it's stage property;
    _stageWebView.stage = stage;
}

这是 admob.html 中的 html 代码

<body>
<script type="text/javascript">
var admob_vars = {
 pubid: 'xxxxxxxxxxxxxx',
 bgcolor: '000000', 
 text: 'ffffff', 
 ama: false,
 test: false
};
</script>
<script type="text/javascript" src="http://mmv.admob.com/static/iphone/iadmob.js"></script>
</body>

任何人都可以指导我哪里出了问题吗?

This is the code i have used in adobe flash

var _stageWebView:StageWebView;
var myAdvertURL:String = "http://www.xxxxx.com/admob/admob.html";
//
createAd()
//
function createAd():void {
    // check that _stageWebView doersn't exist
    if (! _stageWebView) {
        _stageWebView = new StageWebView () ;
        // set the size of the html 'window'
        _stageWebView.viewPort = new Rectangle(0,0,800,50);
        // add a listener for when the content of the StageWebView changes
        //_stageWebView.addEventListener(LocationChangeEvent.LOCATION_CHANGE,onLocationChange);
        // start loading the URL;
        _stageWebView.loadURL(myAdvertURL);
    }
    // show the ad by setting it's stage property;
    _stageWebView.stage = stage;
}

This is the html code in admob.html

<body>
<script type="text/javascript">
var admob_vars = {
 pubid: 'xxxxxxxxxxxxxx',
 bgcolor: '000000', 
 text: 'ffffff', 
 ama: false,
 test: false
};
</script>
<script type="text/javascript" src="http://mmv.admob.com/static/iphone/iadmob.js"></script>
</body>

Can any one please guide me where have i gone wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

第七度阳光i 2024-12-26 14:55:02

您好,我认为这段代码可能有效,

import flash.media.StageWebView;
import flash.geom.Rectangle;
import flash.display.Graphics;

var webAd:StageWebView = new StageWebView();
webAd.viewPort = new Rectangle( 0,0,800,50);
webAd.stage = this.stage;

webAd.loadURL( "http://www.google.co.uk" );

只需将 Google.co.uk 替换为您的网址即可。

Hi I think this code might work,

import flash.media.StageWebView;
import flash.geom.Rectangle;
import flash.display.Graphics;

var webAd:StageWebView = new StageWebView();
webAd.viewPort = new Rectangle( 0,0,800,50);
webAd.stage = this.stage;

webAd.loadURL( "http://www.google.co.uk" );

Just replace Google.co.uk with your URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文