I followed the doc about ads api.
The ads shows on portrait properly but
never show on Landscape.
I used 320X48 size of ads.
Do I miss something?
about axis??? So confusing… [import]uid: 65906 topic_id: 20089 reply_id: 320089[/import]
I followed the doc about ads api.
The ads shows on portrait properly but
never show on Landscape.
I used 320X48 size of ads.
Do I miss something?
about axis??? So confusing… [import]uid: 65906 topic_id: 20089 reply_id: 320089[/import]
Which Ad supplier are you using?
I’m using Inneractive in landscape mode with no problems -
[code]
– Ads
local ads = require( “ads” );
– init the ads
ads.init( “inneractive”, “XXXXXXXXXX” );
– Show the ads. if we are on simulator, display a white rectangle
if( system.getInfo(“environment”) == “simulator” ) then
local ads = display.newRect( 36, 215, 410, 50 );
else
ads.show( “banner”, { x=36, y=215, interval=30 } );
end;
– End Ads
[/code] [import]uid: 13553 topic_id: 20089 reply_id: 78471[/import]
I used inmobi and got problem [import]uid: 65906 topic_id: 20089 reply_id: 78486[/import]