hola
pachinn :
pregunta de nuevo aquí y no repitas los temas, por favor.
Crear un botón para "seleccionar todo" y "Copiar" en una página web
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html><head>
<script>
function SyC(){
document.getElementById("alfa").focus();
document.execCommand('SelectAll');
document.execCommand('Copy');
}
</script>
</head>
<body id="alfa">
<h1>QWERTYUIOP QWERTYUIOP^</h1>
ASDFGHJKLÑ
<br />
sdfghjk
<br />
<input type="button" value="SELECCIONAR Y COPIAR" onclick="SyC()" />
</body></html>
Te debo el de mandar directamente al Word.
[edit]
Ya no. Lo encontré en un
bookmarklet ( más exacamente en un
favlet )
Código:
<a href="
javascript:try{var X=new ActiveXObject('Word.Application');var S=new ActiveXObject('WScript.Shell');X.visible=true;document.body.focus();S.sendKeys('^e');S.sendKeys('^c');setTimeout('pasteIt()',1000);document.selection.empty();}catch(e){alert('No se puede abrir Word.');}function pasteIt(){X.documents.add().content.pasteSpecial(5);document.selection.empty();}
" >
!copiar a WORD.
</a>
Donde dice
es para un
Internet Explorer en español, si lo tienes en inglés sería
Por supuesto que al ser un ActiveX va a pedir confirmación y quizá hasta ponga nerviosos al antivirus y al
antispyware.
Hay bastante información sobre cómo se usa e instala un
bookmarklet , en internet y en el foro (yo mismo puse algo).
Y te dejo un enlace más
Abrir el Microsoft Word desde un boton
[/edit]