Date: prev next · Thread: first prev next last
2013 Archives by date, by thread · List index


Bonjour



maou70 wrote
Est-il possible, dans LibreOfficeWriter, d'afficher en bas, à côté du
nombre de mots, par exemple, le nombre de caractères saisis par ligne ?

Pas à ma connaissance...

Une petite macro pourrait aider. Elle sélectionne la ligne courante en
reproduisant
la frappe de la touche   Début
<http://fr.wikipedia.org/wiki/Touche_d%C3%A9but>   suivie de la combinaison
de touches Fin+Maj

Ceci sélectionne la ligne. 
Ouvrir le dialogue Outils> Statistiques et lancer la macro pour avoir
l'information 
dans le dialogue (on peut affecter la macro à un raccourci-clavier).
 
Pour l'installer la macro:
1. Copier le texte de la macro entre "sub PysCarParLigne" et "end sub" (ces
expressions comprises), 
2. faire Outils> Macros> Gérer les macros> LibreOffice Basic
3. "Déplier" à gauche "Mes macros", puis "Standard", puis "Module1".
Dans la partie droite devrait s'afficher "Main" (macro "principale" vide par
défaut)
4. Cliquer sur Edit.
L'éditeur de programme s'ouvre. Coller le texte à la fin, sur une nouvelle
ligne
après :
sub main
end sub

Ci-dessous la macro:

sub PysCarParLigne
rem ----------------------------------------------------------------------
rem define variables
dim document   as object
dim dispatcher as object
rem ----------------------------------------------------------------------
rem get access to the document
document   = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")

rem ----------------------------------------------------------------------
dispatcher.executeDispatch(document, ".uno:GoToStartOfLine", "", 0, Array())

rem ----------------------------------------------------------------------
dispatcher.executeDispatch(document, ".uno:EndOfLineSel", "", 0, Array())
end sub

Cordialement
Pierre-Yves



--
View this message in context: 
http://nabble.documentfoundation.org/Est-il-possible-d-afficher-le-nombre-de-caracteres-saisis-tp4032129p4032150.html
Sent from the Users mailing list archive at Nabble.com.

-- 
Envoyez un mail à users+help@fr.libreoffice.org pour savoir comment vous désinscrire
Les archives de la liste sont disponibles à http://listarchives.libreoffice.org/fr/users/
Tous les messages envoyés sur cette liste seront archivés publiquement et ne pourront pas être 
supprimés

Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.