sebakan29 Posted July 12, 2012 Report Share Posted July 12, 2012 Saludos, ando en busca de un codigo para as2, lo cual lo estoy programando en adobe flash cs4 y es para validar caracteres minusculas y mayusculas. Como por ejemplo: Si el usuario escribe "hola" q el programa tambien lo valide como "HOLA" no se si me logro entender.Bueno espero alguna respuesta.Saludos! Link to comment Share on other sites More sharing options...
AshWilliams Posted July 12, 2012 Report Share Posted July 12, 2012 myChar == myChar.toLowerCase() ;) ..asi transformas tu entrada a minusculas. Saludos :krider: Link to comment Share on other sites More sharing options...
sebakan29 Posted July 13, 2012 Author Report Share Posted July 13, 2012 Vale Grax pero ahora estoy con otro incombeniente, tengo una pelicula con drag and drop, pero al ser cargada de un contenedor se pierde el efecto ya q tengo mala la ruta para aquello y no se donde estaria el error para cargar bien la pelicula del contenedor, este es mi codigo: on(press){ startDrag(this); xx=getProperty(this,_x); yy=getProperty(this,_y); } on(release){ stopDrag(); contenedor=getProperty(this,_droptarget); trace(contenedor); if(contenedor=="/c_b"){ b.enabled=0; _root.bb._x=_root.c_b._x; _root.bb._y=_parent.c_b._y; _root.Puntaje=_root.Puntaje+10; }else{ setProperty(this,_x,xx); this._y=yy; _root.Puntaje=_root.Puntaje-5; } } Bueno espero si me pueden ayudar, Se agradece! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now