zoukankan      html  css  js  c++  java
  • Tandem广告类型笔记

    1.For consistent animation sync behavior, avoid using a polite load with a tandem creative whenever possible. Polite load can make users wait for a website to load completely before the creative loads, increasing the risk that tandem creatives will time out or fail to sync with each other.

    2.It's important that each ad's instance of the Local Connect component load at the same time so that the units can easily establish a connection

    3.In the Properties panel, give every Local Connect component the same instance name. For example, localConnectComponent. 

    4.You can send data from parent to child and child to parent, but never from child to another child

    5.we recommend that you define a timeout behavior for all Tandem creatives. If one of the creatives doesn't load, this allows creatives that do load to continue with their own animation instead of remaining stopped indefinitely:

    import com.google.ads.studio.events.StudioEvent;

    //Set up Timeout function
    function timeoutHandler(e:StudioEvent) {
        //insert function here
        trace("Local Connect Failed");
    }

    //Add EventListener for StudioEvent.TIMEOUT
    localConnectComponent.addEventListener(StudioEvent.TIMEOUT, timeoutHandler);

    6 lc.sendData("data send");

      if(e.data=="data send")

  • 相关阅读:
    快捷键打开远程桌面
    织梦Dedecms后台登陆密码忘记怎么办?
    Windows curl开启注意事项
    Composer教程
    composer.json和composer.lock有什么区别?
    Web.config 文件例子
    win10回收站右键有2个“CCleaner”怎么删除
    sublime快捷键
    Json 文件注意事项
    加入购物车流程
  • 原文地址:https://www.cnblogs.com/1000pen/p/2742252.html
Copyright © 2011-2022 走看看