Administrador de Titulares

01/06/2004 - 21:39 por Edgar Buller Soft | Informe spam
Amigos,

Tengo una pagina con Front Page XP, en la cual tengo
el componente Administrador de Titulares cuando publique
la pagina solo las maquinas con Windows 2000 Pro pueden
ver los titulares las de XP no , Que puede estar pasando

Gracias por su ayuda
 

Leer las respuestas

#1 Julio Galindo
17/07/2004 - 16:45 | Informe spam
La razon para que no se vea nada se debe a que este componente funciona con Java en el computador que ejecuta la visualizacion. La mayor parte de los computadores que corren Windows XP no tienen instalada esta opcion, (existe forma de instalar esta opcion, pero tendria que convencer a algunos millones de usuarios que lo hagan cuando vean su pagina) por lo que los titulares no se muestran correctamente con Windows.

Informacion sobre este tema puede verse en ingles en:
http://www.interlacken.com/winnt/ti...x?tip&

Una solucion consiste en utilizar J-Bots:
http://www.websunlimited.com/order/...banner.htm

Tambien existe codigo Java gratis que permite poner slideshows como el creado por Randy Bennett que trancribo a continuacion.

Saludos

Julio Galindo
La Paz, Bolivia

<!-- FIVE STEPS TO INSTALL WEB SLIDESHOW:

1. Open a new page, save it as: slideshow-left.html
2. Copy the coding into the HEAD of slideshow-left.html
3. Add the onLoad code into the BODY of slideshow-left.html
4. Put the BODY coding into the BODY of slideshow-left.html
5. Save the FRAMESET code as slideshow.html -->

<!-- STEP ONE: Create a new page, save as: slideshow-left.html page -->

<!-- STEP TWO: Save this page as slideshow-left.html page -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Randy Bennett () -->
<!-- Web Site: http://home.thezone.net/~rbennett/sitemap.htm -->
<!-- Modified by: Ronnie T. Moore, Editor -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var repeatshow = 1; // 1 = yes, 0 = no
var timedelay = 15000; // time in milliseconds, 15000 = `15 secs
// be sure to allow enough time for each page to load !!!

var page = new Array(
"web-slideshow-demo1.html",
"web-slideshow-demo2.html",
"web-slideshow-demo3.html",
); // note no comma after last page!

// your "the end" page. Necessary if repeatshow = 0;
var endpage = "the-end.html";

var slidenum = 0;
var slidecount = page.length;
var timerID = 0;
var win2;
function showSlideShow() {
slidenum++;
if (slidenum < slidecount+1) {
parent.main.location.href = page[slidenum-1];
}
if (slidenum == slidecount+1) { // if finished
if (repeatshow) {
slidenum = 0;
timerID = setTimeout('showSlideShow()', timedelay)
}
else parent.main.location.href = endpage;
}
else timerID = setTimeout('showSlideShow()', timedelay);
}
// End -->
</script>
</HEAD>

<!-- STEP THREE: Insert the onLoad code in slideshow-left.html -->

<BODY onLoad="timerID=setTimeout('showSlideShow()',timedelay)">

<!-- STEP FOUR: Copy this code into the BODY of slideshow-left.html -->

<center>
<a href="web-slideshow-demo.html" target="main" onClick="clearTimeout(timerID)"><B>MAIN MENU</B></A><br>
<br>
<a href="web-slideshow-demo1.html" target="main" onClick="clearTimeout(timerID)">Page One</a><br>
<a href="web-slideshow-demo2.html" target="main" onClick="clearTimeout(timerID)">Page Two</a><br>
<a href="web-slideshow-demo4.html" target="main" onClick="clearTimeout(timerID)">Page Three</a><br><br>
<a href="javascript:showSlideShow();" onClick="clearTimeout(timerID)">Cycle Pages</a><br>
</center>

<p><center>
<font face="arial, helvetica" SIZE="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>

<!-- STEP FIVE: Save this final FRAMESET code into a new page -->
<!-- Save that page as: slideshow-left.html page -->

<html>
<frameset cols="150,*" border=5>
<frame src="slideshow-left.html" name="side" sideborder=1 Scrolling="yes" marginwidth="5" marginheight="5" noresize>
<frame src="main.html" name="main" sideborder=1 Scrolling="yes" marginwidth="5" marginheight="5" noresize>
</frameset>
</frameset>
</html>

"Edgar Buller Soft" escribió:

Amigos,

Tengo una pagina con Front Page XP, en la cual tengo
el componente Administrador de Titulares cuando publique
la pagina solo las maquinas con Windows 2000 Pro pueden
ver los titulares las de XP no , Que puede estar pasando

Gracias por su ayuda

Preguntas similares