• User

    Clicktag come inserirlo?

    Ciao ragazzi, mi ritrovo un problema con un clicktag, penso che sia quello di Doubleclick:

    Link_1.addEventListener(MouseEvent.MOUSE_UP, function(event: MouseEvent):
    void { var sURL: String;
    if ((sURL = root.loaderInfo.parameters.clickTAG)) {
    navigateToURL(new
    URLRequest(sURL), "_blank"); }
    }

    ho già il mio bel banner in flash finito.
    Dove integro il clicktag?
    Oltre al link 1 (che dovrebbe essere il nome istanza), devo modificare altro nel codice?

    Cordiali Saluti


  • Super User

    Ciao senti a me quel codice da errore prova questo:

    
    var paramList:Object = this.root.loaderInfo.parameters;
    
    // Listen for the CLICK event on the button clip.
    buttonClip.addEventListener(MouseEvent.CLICK, openURL);
    
    // When the button is clicked then the navigateToURL function will open the
    // specified URL. The function does not accept the URL directly as a String.
    // You need to specify the URL as a URLRequest object.
    function openURL(evtObj:MouseEvent):void {
        var request:URLRequest = new URLRequest(paramList["clickTag"]);
        navigateToURL(request, "_blank");
    }