【问题标题】:Received an error when uploading a file to DoubleClick将文件上传到 DoubleClick 时收到错误
【发布时间】:2018-07-06 01:51:15
【问题描述】:

有谁知道错误“您为此广告素材上传了错误数量的带有启动器组件的资产。该广告素材必须正好有 2 个带有启动器的资产。” 是什么意思?

我假设 DoubleClick 最终改变了一些东西。我尝试上传旧广告并收到同样的错误。

我正在使用 Hype3 制作我的广告。这是文件头中的脚本。我想知道启动器是否发生了一些变化。

  <head>
  	
	<script src="https://s0.2mdn.net/ads/studio/Enabler.js"></script>
	<meta name="ad.size" content="width=1000,height=90">


<script>
		// If true, start function. If false, listen for INIT.
		window.onload = function() {
		  if (Enabler.isInitialized()) {
		    enablerInitHandler();
		  } else {
		    Enabler.addEventListener(studio.events.StudioEvent.INIT, enablerInitHandler);
		  }
		}

		function enablerInitHandler() {
		  // Start ad, initialize animation,
		  // load in your image assets, call Enabler methods,
		  // and/or include other Studio modules.
		  // Also, you can start the Polite Load
		}

		//If true, start function. If false, listen for VISIBLE.
		//So your pageLoadedHandler function will look like the following:

		function pageLoadedHandler() {
		  if (Enabler.isVisible()) {
		    adVisibilityHandler();
		  } else {
		    Enabler.addEventListener(studio.events.StudioEvent.VISIBLE,
		    adVisibilityHandler);
		  }
		}	
		
		function bgExitHandler1(e) {
		  Enabler.exitOverride('Background Exit1', 'URL');
		}
		
		function exitClose(e) {
		  Enabler.reportManualClose();
		  Enabler.close();
		}
		
		document.getElementById('exit').addEventListener('click', bgExitHandler1, false);
		document.getElementById('close_btn').addEventListener('click', exitClose, false);
	
</script>
<head>

【问题讨论】:

    标签: banner double-click ads banner-ads double-click-advertising


    【解决方案1】:

    我意识到问题是由于我选择了错误的格式造成的。我需要选择“插页式”才能使用我的文件。

    【讨论】:

      猜你喜欢
      • 2023-01-30
      • 1970-01-01
      • 2012-11-27
      • 2015-09-28
      • 1970-01-01
      • 1970-01-01
      • 2013-06-08
      • 1970-01-01
      • 2016-01-03
      相关资源
      最近更新 更多