[GastForen Programme Print/Bildbearbeitung Adobe InDesign Anzahl der Zeichen in einem Textfeld?

  • Suche
  • Hilfe
  • Lesezeichen
  • Benutzerliste
Print/Bildbearbeitung - Photos, Layout, Design
Themen
Beiträge
Moderatoren
Letzter Beitrag

Anzahl der Zeichen in einem Textfeld?

Anonym
Beiträge gesamt: 22827

8. Jul 2003, 11:37
Beitrag # 1 von 9
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Ich habe schon im Forum gesucht, aber nix gefunden...
Weiss einer von Euch, wo ich die Anzahl der Zeichen in einem Textfeld angezeigt bekomme... Wir brauchen das dummerweise finden es aber weder in der Hilfe noch im Handbuch...
Danke
Marita
X

Anzahl der Zeichen in einem Textfeld?

Torsten Keuhne
Beiträge gesamt: 219

8. Jul 2003, 12:04
Beitrag # 2 von 9
Beitrag ID: #42940
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Hallo Marita,

dafür gibt es ein Plug-In namens "Text-O-Meter", was auch noch viel mehr kann, z.B. Länge des Übersatzes anzeigen etc.

Demo: http://www.softcare.de/downloads/index.html

Gruß Torsten


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

Anonym
Beiträge gesamt: 22827

8. Jul 2003, 12:22
Beitrag # 3 von 9
Beitrag ID: #42945
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Danke fuer den Tipp, aber es kann doch eigentlich nicht sein, das das Programm das nicht eigenstaendig kann :-((
Das ist vielleicht was fuer die 3er Version ..


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

Torsten Keuhne
Beiträge gesamt: 219

8. Jul 2003, 12:41
Beitrag # 4 von 9
Beitrag ID: #42948
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Naaa, ja. ;-) Ich seh das eher wie beim Autokauf. Wenn ich ein Navigationssystem haben will, muß ich es halt extra bezahlen.

Gruß Torsten


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

Anonym
Beiträge gesamt: 22827

8. Jul 2003, 12:49
Beitrag # 5 von 9
Beitrag ID: #42950
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
 
Ein Navigationssystem erforder allerdings einiges mehr arbeit.
Ein Zeichenmesser dürfte für die Coder eine Fingerübung sein.


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

Kurt Gold
Beiträge gesamt: 2383

8. Jul 2003, 13:04
Beitrag # 6 von 9
Beitrag ID: #42952
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Hallo,

mit dem Script TextCounter (Win) findest Du einen guten Zähler, der kostenlos ist:

http://share.studio.adobe.com/...mp;t=54&pgsel1=2

Mit freundlichem Gruß

Kurt Gold


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

tomreuter
Beiträge gesamt: 800

8. Jul 2003, 23:42
Beitrag # 7 von 9
Beitrag ID: #43061
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Oder kopier Dir den Text in die Zwischenablage und setz ihn in BBedit (-> http://www.Versiontracker.com) oder was Ähnlichem für PC ein. Dann sagt er Dir die Textlänge auf's Byte genau. Wesentlich schneller gehen die PlugIns auch nicht, nur teurer


Viele Grüße,
Thomas Reuter
(Mac G4DP867, OS 10.2.6)


als Antwort auf: [#42929]

Anzahl der Zeichen in einem Textfeld?

Lukas M.
Beiträge gesamt: 301

9. Jul 2003, 11:55
Beitrag # 8 von 9
Beitrag ID: #43114
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
TextCounter für Mac ist ein AppleScript und sieht so aus:

<code>

-- this script counts the characters and words in the selected text
-- select a range of text with the text tool and only that range is counted
-- select a text frame or have a simple insertion point in a story
-- and all words in that story are counted.

tell application "InDesign 2.0.2"
 try
  set theSel to object reference of selection
  if class of theSel is text frame then
   set theSel to object reference of parent story of theSel
  else if class of theSel is insertion point then
   set theSel to object reference of parent story of parent text frame of theSel
  else if class of theSel is not in {text, character} then
   error
  end if
 on error
  activate
  display dialog "Please select a story or range of text for which you want a word count before running this script."
  return
 end try
 activate
 display dialog ((count of words of theSel) as string) & " words" & return & ((count of characters of theSel) as string) & " characters"
end tell

</code>

Ist nicht von mir, sondern von hier: http://tinyurl.com/gesg

--
Lukas | http://www.machata.ch


als Antwort auf: [#42929]
(Dieser Beitrag wurde von Lukas M. am 9. Jul 2003, 11:58 geändert)

Anzahl der Zeichen in einem Textfeld?

Lukas M.
Beiträge gesamt: 301

9. Jul 2003, 12:21
Beitrag # 9 von 9
Beitrag ID: #43116
Bewertung:
(3862 mal gelesen)
URL zum Beitrag
Beitrag als Lesezeichen
Ich habe den Skript noch ein wenig "aufgemotzt" und eingedeutscht:

-- this script counts the characters and words in the selected text
-- select a range of text with the text tool and only that range is counted
-- select a text frame or have a simple insertion point in a story
-- and all words in that story are counted.

tell application "InDesign 2.0.2"
try
set thesel to object reference of selection
if class of thesel is text frame then
set thesel to object reference of parent story of thesel
else if class of thesel is insertion point then
set thesel to object reference of parent story of parent text frame of thesel
else if class of thesel is not in {text, character} then
error
end if
on error
activate
display dialog "Wähle einen Textbereich oder einen Textrahmen eines Textabschnitts aus." with icon 2 buttons "Abbrechen" default button 1
return
end try
activate
display dialog ((count of characters of thesel) as string) & " Zeichen" & return & ((count of words of thesel) as string) & ¬
" Wörter" with icon 1 buttons "OK" default button 1
end tell

--
Lukas | http://www.machata.ch


als Antwort auf: [#42929]
X