tengo el siguiente codigo de flash, y quiero modificarlo PARA que quede como esta pero QUE ABRA LAS PAGINAS EN OTRA PESTAÑA. OSEA NO EN LA MISMA.
Código :
// Code Credit: Lee Brimelow // Tutorial Reference URL: www.gotoandlearn.com // Modified by www.flashmo.com stop(); // total is length of label_list OR link_list // OR total frames inside "flashmo thumbnails" var total:Number = 12; // length of label_list array and length of link_list array must be equal // to length of frames inside "flashmo thumbnails" movieclip var label_list:Array = new Array( "Descargas", "26Noticias", "Clarin", "Infobae", "La Nacion", "24Con", "San Martin Noticias", "Me Gusta", "Ventas", "Consejos Utiles", "Precios", "Links Informaticos", "YouTube", "Descargas", "Me Gusta"); var link_list:Array = new Array("http://www.cumbresdigitales.com.ar/Web/descargas.html", "http://www.26noticias.com.ar/index.html", "http://www.clarin.com/", "http://www.infobae.com/", "http://www.lanacion.com.ar/", "http://24con.infonews.com/", "http://www.smnoticias.com/", "http://www.cumbresdigitales.com.ar/Web/formulario.html", "http://www.cumbresdigitales.com.ar/Web/combos.html", "http://www.cumbresdigitales.com.ar/Web/tips.html", "http://www.cumbresdigitales.com.ar/Web/precios.html", "http://www.cumbresdigitales.com.ar/Web/linksinformaticos.html", "http://www.youtube.com", "http://www.cumbresdigitales.com.ar/Web/descargas.html", "http://www.cumbresdigitales.com.ar/Web/formulario.html"); var radiusX:Number = 330; var radiusY:Number = 90; var centerX:Number = 400; var centerY:Number = 120; var speed:Number = 0.005; tn_group_mc._visible = false; info.text = ""; fm_label.text = ""; for( var i = 0; i < total; i++) { var t = tn_group_mc.duplicateMovieClip("tn"+i, i); t.tn_mc.gotoAndStop(i+1); t.tn_shadow_mc.gotoAndStop(i+1); t.fm_label = label_list[i]; t.fm_url = link_list[i]; t.angle = i * ((Math.PI*2)/total); t.onEnterFrame = mover; t.fm_button.onRollOver = function() { fm_label.text = "Title: " + this._parent.fm_label; info.text = "URL: " + this._parent.fm_url; } t.fm_button.onRollOut = function() { info.text = ""; fm_label.text = ""; } t.fm_button.onRelease = function() { getURL( this._parent.fm_url ); } } function mover() { this._x = Math.cos(this.angle) * radiusX + centerX; this._y = Math.sin(this.angle) * radiusY + centerY; var s = this._y /(centerY+radiusY); this._xscale = this._yscale = s*100; this.angle += this._parent.speed; this.swapDepths(Math.round(this._xscale) + 100); } this.onMouseMove = function() { speed = (this._xmouse-centerX) * 0.0001; }