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'm building a mobile game and wanted to make it free with a banner ad on the start screen. I was going to use Smaato but it seems according to their api that they require that I pass them the UDID and the device ip in the query string. Is there anyway to do that with Actionscript 3? The code I'm using is below but it only pulls in an ad and when that ad is clicked on it points to a 2x2 gif on Smaato's servers. I got this code out of a book titled "iOS Development with Flash" and it's only a few months old. Smaato's "support" guy is not much help. Am I trying to accomplish the impossible?

Has anyone accomplished Smaato ingratiation with AS3?

/* SMAATO Advertising Code for Start Page
var request:URLRequest = new URLRequest("http://soma.smaato.com/oapi/reqAd.jsp");
var variables:URLVariables = new URLVariables();
variables.adspace = "65741799";
variables.pub = "923842495";
//variables.devip = "127.0.0.1"; The book had this line but it's not right so I commented it out
variables.format = "IMG";
variables.adcount = "1";
variables.response = "XML";
request.data = variables;
var loader:URLLoader = new URLLoader();

var l:Loader = new Loader();

loader.addEventListener(Event.COMPLETE, onComplete);
loader.load(request);


function onComplete(e:Event):void
{
    var data:XML = new XML(loader.data as String);
    var status:String = data.*::status.toString(); 
    if(status == "success")
    {
        var ad:XMLList = data.*::ads.*::ad;
        var link:String = ad.*::link.toString();

        var l:Loader = new Loader();
        l.load(new URLRequest(link));
        addChild(l);
        l.x = 80;
        l.y = 255;
        var clickurl:String = ad.*::action.@target.toString();
        l.addEventListener(MouseEvent.CLICK, onAdClick);
     }

   function onAdClick(e:MouseEvent):void
   {
       var request:URLRequest = new URLRequest(clickurl);
       navigateToURL(request);
   }
}

Thanks for any help you can offer.

Rich

share|improve this question

3 Answers

up vote 0 down vote accepted

If the requests are coming from a mobile directly (which is the case here because it's an app) the devIP is not mandatory. Also you can skip the UDID if it's not available. The adspacer.gif issue probably results in a user agent mismatch. Out support team will get back to you regarding this.

Best, Michael (Smaato Inc.)

share|improve this answer

The reason for the adspacer.gif issue is a user-agent mismatch between request (reqAd.jsp) and click (lp.jsp). If you have further questions please use our support ticket system within the portal.

Best regards Robert (Smaato Inc.)

share|improve this answer

I added a button over the area where the banner ad is so it is clickable, then call the same function with a listener

ad_click.addEventListener(MouseEvent.CLICK,onAdClick);

Still getting the gif issue though. Rich have you figure that out yet?

share|improve this answer
Robert, unfortunately I was never able to resolve this issue. I went through several support tickets with Smaato and in the end was unsuccessful. – Rich Jul 28 '11 at 10:49

protected by Community Jul 13 '12 at 20:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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