Ver Mensaje Individual
  #13 (permalink)  
Antiguo 09/02/2006, 07:00
Avatar de -=ArgoN=-
-=ArgoN=-
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 18 años, 6 meses
Puntos: 1
Cita:
Iniciado por clara0_0
Código:
poslastslash = this._url.lastIndexOf("\\");
if (poslastslash == -1) {
poslastslash = this._url.lastIndexOf("/");
}
folderurl = this._url.substr(0, poslastslash+1);
poscolon = folderurl.indexOf("|");
if (poscolon<>-1) {
folderurlstart = folderurl.substr(0, poscolon);
folderurlend = folderurl.substr(poscolon+1);
folderurl = folderurlstart+":"+folderurlend;
}
targeturl = folderurl+"tu archivo en tu ruta relativa.zip";
getURL(targeturl, "_self");
Madre de Dios Bendita
Ya probaste con las demas opciones "_parent" y "_top" ?

Última edición por -=ArgoN=-; 09/02/2006 a las 07:10