Subrayar texto editable
HOLA. Mi pregunta hace referencia a poder subrayar una parte seleccionada de un texto editable. Necesito q el texto editable este contenido en un field. Lo he probado en un text y si me funciona, pero lo necesito en un field. Tengo hecho el siguiente codigo pero no me funciona:
property pselec
on mouseUp me
pselec = the selectedText of field ("block")
if pselec.fontstyle = [#underline] then
pselec.fontstyle = [#plain]
else
pselec.fontstyle = [#underline]
end if
end
A ver si me ayudas. Gracias y un saludo.
property pselec
on mouseUp me
pselec = the selectedText of field ("block")
if pselec.fontstyle = [#underline] then
pselec.fontstyle = [#plain]
else
pselec.fontstyle = [#underline]
end if
end
A ver si me ayudas. Gracias y un saludo.
1 respuesta
Respuesta de bedelludrica
1