Menús

KaoS-GFX

Buenas, alguien me puede decir como hacer lo siguiente:

Un link, con el cual cuando le das, se abre una lista con unos links y yo ponga, y si le vuelves a dar se cierre.

Y si hay varios, que de la opcion de abrirlos y cerrarlos todos.

Aunque sepais solo 1 cosa, decid plz, me hace mucha falta

Kartalon

javascript, flash...

Salu2

KaoS-GFX

Sí, eso lo se, pero a ver si me lo podeis pasar el codigo por favor

-

q

BlisZ

tu web tiene algo original? siempre estas copiando codigo...

KaoS-GFX

Si, y?

BlisZ

pues que podrias intentar aprender no? porque parece que te gusta el tema de las webs y todo esto. No me extraña que te tengan tanta mania

_BoJa_69

Di NO a los menús desplegables...

Whose

Recuerdo haberte pasado yo ese javascript ¿Donde lo has metido?

LiuM

<script type="text/javascript">
if (document.getElementById){
document.write('<style>\n')
document.write('.submenu{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj){
if(document.getElementById){
var el = document.getElementById(obj);
var ar = document.getElementById("mainmenu").getElementsByTagName("span");
if(el.style.display != "block"){
for (var i=0; i<ar.length; i++){
if (ar.className=="submenu")
ar.style.display = "none";
}
el.style.display = "block";
}else{
el.style.display = "none";
}
}
}

</script>

PD: Ahora pones en tu curriculum que eres experto en Javascript.

KaoS-GFX

whose, esque no me iba el msn, y con el tuyo no me aclaro soz.

PD: LiuM, te e faltado yo al respeto?

guiye

KaoS-GFX encima que te ayudan, anormal.

pd: el anormal me lo podeis editar.

LiuM

No creo que te falte el respeto por decirte eso. Tontode mi que buske en hotscripts para ponerte el puto codigo, en fin...denada.

PD: ya que lo pongo te expliko, demostrando asi mi faceta masokista) que eso tal cual no funciona, tienes que poner a las etiquetas las ids del codigo o viceversa.

guiye

http://img15.exs.cx/img15/341/hiba3pc.jpg

disculpa

Phoenix4

El Kaos en vez de palante, va patras!
xD

IS4kO

Siendo original ale aer quien me pilla el error, mañana la solucion lolaiallioiaoioalaoisalsiasoi to er dia programandoo loalaeleaealoaeloeloaeloae

import java.util.; import java.io.; import java.text.; import javax.swing.; public class clases1 { public static void main(String[] args) { Cine c=new Cine(); Pelicula p=new Pelicula(); Visita v=new Visita(); Lectura l=new Lectura(); FileWriter pw=null; try { pw=new FileWriter("cine2.txt"); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR "); System.exit(0); } c.introducir(); p.introducir(); v.introducir(); c.grabar(pw); p.grabar(pw); v.grabar(pw); try { pw.close(); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL CERRAR EL FICHERO"); System.exit(0); } l.leer();//la lectura despues de que se cierre el archivo System.exit(0); } } class Cine { String nombre;//ATRIBUTO void introducir() { nombre=JOptionPane.showInputDialog("Nombre"); } void grabar(FileWriter p) { try { p.write(nombre+"\r\n"); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL ESCRIBIR"); System.exit(0); } } } class Pelicula { String titulo,genero; double duracion; void introducir() { String entrada; titulo=JOptionPane.showInputDialog("Titulo:"); entrada=JOptionPane.showInputDialog("Duración:"); Validar v=new Validar(); v.validarDouble(entrada); genero=JOptionPane.showInputDialog("Género"); } void grabar(FileWriter p) { try { p.write("TITULO: "+titulo+"\r\n"); p.write("GENERO: "+genero+"\r\n"); p.write("DURACION:"+duracion+"\r\n"); }catch(Exception e) { JOptionPane.showMessageDialog(null,"EEROR DE ESCRITURA"); System.exit(0); } } } class Validar { void validarDouble(String txtdouble) { try { Double.parseDouble(txtdouble); }catch( Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL VALIDAR DOUBLE"); System.exit(0); } } void validarFecha(String txtfecha) { DateFormat df=DateFormat.getDateInstance(DateFormat.SHORT); try { df.parse(txtfecha); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL VALIDAR LA FECHA"); System.exit(0); } } void validarHora(String txthora) { DateFormat form=DateFormat.getTimeInstance(DateFormat.SHORT); try { form.parse(txthora); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL VALIDAR HORA"); System.exit(0); } } } class Visita { String fecha,hora_ini,hora_fin,entrada; int acompanantes; void introducir() { fecha=JOptionPane.showInputDialog("Fecha:"); Validar v=new Validar(); v.validarFecha(fecha); hora_ini=JOptionPane.showInputDialog("Hora de Inicio"); v.validarHora(hora_ini); hora_fin=JOptionPane.showInputDialog("Hora de fin :"); v.validarHora(hora_fin); entrada=JOptionPane.showInputDialog("Número de acompañantes:"); try { acompanantes=Integer.parseInt(entrada); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL VALIDAR ACOMPAÑANTES"); System.exit(0); } } void grabar(FileWriter p) { try { p.write("FECHA: "+fecha+"\r\n"); p.write("HORA INICIO: "+hora_ini+"\r\n"); p.write("HORA FIN :"+hora_fin+"\r\n"); p.write("NUMERO ACOMPAÑANTES :"+acompanantes+"\r\n"); }catch(Exception e) { JOptionPane.showMessageDialog(null,"ERROR AL ESCRIBIR EN ARCHIVO"); System.exit(0); } } } class Lectura { void leer () { FileInputStream fis=null; InputStreamReader isr=null; BufferedReader br=null; String cineleido=""; String tituloleido=""; String duracionleido=""; String inicioleido=""; String finalleido=""; String acompañantesleido=""; try { fis=new FileInputStream("cine2.txt"); isr=new InputStreamReader(fis); br=new BufferedReader(isr); cineleido=br.readLine(); tituloleido=br.readLine(); duracionleido=br.readLine(); inicioleido=br.readLine(); finalleido=br.readLine(); acompañantesleido=br.readLine(); br.close(); isr.close(); fis.close(); }catch(Exception e) { System.out.println("ERROR"); } System.out.println("\r\n"+cineleido+"\r\n"+tituloleido+"\r\n"+duracionleido+"\r\n"+inicioleido+"\r\n"+finalleido+"\r\n"+acompañantesleido); } }

#14 xDDDDDDdd ke vueno, séra berdaz eso de las encuestas europeas sovre el nibel de la enseñanza espaniola juju

-SpecTruM-

entonces q es lo k no te hiba?

Whose

IS4kO tu no usas saltos de linea ni tabulas? XD mas rallao

sergio_fuste

Hola me podriais poner el cogido del menu.. del contenido .. bla bla bla

Es que no se hacer nada y lo tengo que copiar todo. Por ejemplo cojo las imagenes de la gente y me las pongo de avatar.

erdanblo

Illo no jugais al cs?, no os habeis bajado nunca el cheating death?, ak mola el menu de su web... :D...
pos tomar http://www.milonic.net/dm.php.

gL

(Yo una ve intente kitarlo desde el código de la web del cd,no conocia la web del creador :D, kasi me muero, y por cierto si lo pasais por el Dreamweaver, te lo pone en colores y to ordenao.)

Usuarios habituales

  • erdanblo
  • Whose
  • Phoenix4
  • guiye
  • LiuM
  • KaoS-GFX
  • BlisZ