2010-12-07 69 views
0

嘗試爲客戶端創建橫幅廣告作爲一次性項目。我正在使用Flash Builder/AS 3以及我簡單的hello world示例。 Google Adwords拒絕添加:遇到Flash錯誤 - 廣告無法使用鼠標跟蹤。Adword:遇到Flash錯誤 - 廣告不能使用鼠標跟蹤

我一直無法弄清楚我在做什麼,這些信號給我的鼠標跟蹤的Adwords。 Follows是我的簡單mxml文件:(handleClick是要粘附到他們的clickTAG規範)

謝謝!

<?xml version="1.0" encoding="utf-8"?> 
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
       xmlns:s="library://ns.adobe.com/flex/spark" 
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="336" minHeight="280" width="336" height="280" includeInLayout="true" click="handleClick(event)"> 

    <fx:Script> 
     <![CDATA[ 

      public function handleClick(mouseEvent:MouseEvent):void { 
       navigateToURL(new URLRequest(root.loaderInfo.parameters.clickTAG),"_blank");  
      } 

     ]]> 
    </fx:Script> 

</s:Application> 

回答

1

很可能無論Google對提交的廣告所做的自動分析都被Flex框架混淆了,您可以嘗試在Flash Builder中創建一個ActionScript項目而不是Flex項目,並查看這是否有所幫助。

如果您使用ActionScript項目,您將無法使用MXML創建廣告,但您可能不想在Flex框架中拖動,因爲它需要一段時間才能加載(第一次在最小)。

+0

謝謝你!這工作。男人很難在其他地方就這個問題得到任何指導。 – Jonathan 2010-12-08 15:56:57