2

我正在 Android 平台上使用 Livecode v5.5.4 ... 我已经能够成功发布应用程序,但是,无法弄清楚如何安装 inneractive 广告... 由于 LC 与 inneractive 合作,他们提供了方向建议它就像...一样简单

mobileAdRegister "YOUR-AD-KEY" //I've replaced with my APP ID from inneractive

local tDetails

put "30" into tDetails["refresh"] // The advert refresh interval in seconds
put 25 into tDetails["age"] // The age of the target audience
put "male" into tDetails["gender"] // The expected gender of the target audience 
mobileAdCreate "myAd1", "banner", (0,0), tDetails

但是,似乎没有任何效果......有任何LC ppl有建议吗??......谢谢

4

2 回答 2

2

如果 Mark 的建议没有报告错误,您可能希望确保它通过以下方式可见:

mobileAddSetVisible "myAd1",true

如果失败了,您能否发布 mobileAds 函数的结果并让我们知道是否正在将 adLoaded 或 adLoadFailed 消息发送到执行 mobileAdCreate 的对象?

于 2013-03-07T03:05:48.680 回答
1

您需要检查结果的值:

mobileAdCreate "myAd1","banner",(0,0),tDetails
put the result into rslt
if rslt is not empty then
  beep
  answer error rslt
end if

亲切的问候,

标记

于 2013-03-06T00:45:53.047 回答