[GastForen

  • Suche
  • Hilfe
  • Lesezeichen
  • Benutzerliste
Forenindex -- Lesezeichen

4 Lesezeichen für datum

Datumsfunktion in Indesign
Hallo Helmut,

ich habe hier ein Script von Martin.
Da ich nicht mehr weiß, unter welchem Link es steht,
setze ich es hier rein.

Code
// Das folgende Script ersetzt den Inhalt des Textes,  
// der mit dem Zeichenformat "z_Datum" ausgezeichnet ist,
// durch das aktuelle Datum.
// So kann man das Datum immer wieder im gesamten Dokument aktualisieren:

// refresh_date-xl.js
//
myStyle = app.documents[0].characterStyles.item("z_Datum");
var d= new Date();
var myMonth = ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"];
var myDate = d.getDate() + ". " + myMonth[d.getMonth()] + " " + (d.getYear()*1 +1900); app.findPreferences = null;
app.changePreferences = null;
app.documents[0].search("",false,false,myDate, {appliedCharacterStyle:myStyle});


Gruß
Quarz
...
Quarz
18. Jul 2007, 22:44
Datumsfunktion in Indesign
Hier noch ein kleines Skript, welches das aktuelle Datum just an der Einfügestelle einfügt.

Code
// insertDate.jsx 

if (app.selection.length == 0 || app.selection[0].constructor.name != "InsertionPoint")
exit();

app.selection[0].contents = catchDate();

function catchDate()
{
var d = new Date();
var myMonth = ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"];
return d.getDate() + ". " + myMonth[d.getMonth()] + " " + (d.getYear()*1 +1900);
}


Das Skript fügt das aktuelle Datum dann ein, wenn der Cursor im Text blinkt, ohne daß etwas markiert ist.
...
Martin Fischer
19. Jul 2007, 08:23
Datumsfunktion in Indesign
Hallo,

Hier noch ein Skript von Dave Saunders aus dem Adobe-Forum. Aber ich glaube da gibt es noch ein anderes welches mir aber jetzt nicht mehr einfällt. Beim diesem Skript hier wird ein Zeichenformat namens »CurrentDate« vorausgesetzt. Beim Ausführen des Skripts wird bei allen Instanzen, die mit diesem ZF formatiert sind, das aktuelle Datum eingefügt. (Siehe erste Zeilen Auskommentierung im Skript)

Code
//DESCRIPTION: Update Date in Active Document  

/*
Updates all instances of current date in a document to reflect the
actual date when the script is run. Depends on character style named
"CurrentDate" -- does nothing if document lacks said style.
*/

if (app.documents.length == 0) { exit() }
myDoc = app.activeDocument; //Global
var myStyle = myDoc.characterStyles.item("CurrentDate");
if (myStyle == null) { exit () }

// If we get here, we have work to do
var myDate = getDateString();

// Use Find/Change across document to update date:
app.findPreferences = app.changePreferences = null;
myDoc.search("", false, false, myDate, {appliedCharacterStyle:myStyle});

function getDateString() {
var today = new Date();
var myDateString = today.toLocaleDateString();
myParts = myDateString.split(" 0");
if (myParts.length != 1) {
myDateString = myParts[0] + " " + myParts[1];
}
return myDateString.slice(0,-5) + "," + myDateString.slice(-5);
}


Hier noch ein weiterer Link dazu:
http://jsid.blogspot.com/...ork-interfering.html

InDesign Guru Branislav Milic hat im InDesign-Secrets-Blog folgende interessante Idee:

Zitat To insert the date you can also do this:
1. Create a Word file and choose Insert > Date & Time > choose a style and then check the Update automatically box.
2. Save the Word file
3. Import the Word file in InDesign but keep the link with the external Word file alive (in ID’s Preferences)
4. If you want to update the date, just open the Word file and save it, the automatic date is updated.
5. ID will react “Modified Link”. Just update it.
6. The same Word file can be then used in many other ID files as THE external link which provides a date updated (almost) live.


Und hier gibt es die Datum-Skripts von Dave Saunders:
http://pdsassoc.com/...oads/DateScripts.zip
http://www.pdsassoc.com/...=downloads/index.php

Gruß,
Sacha
...
Sacha Heck
18. Jul 2007, 23:58
frage an profis: wie datum,zeit entfernen ?
Hallo Lady S,

dir kann geholfen werden, in der freien Version von EFIXutils sogar bis zu 10 Bilder auf einmal:
Zitat exifdate

Add or subtract a constant number of hours, minutes and seconds to all EXIF date fields. This is useful for correcting the date/time EXIF fields when the camera's time was set incorrectly (e.g.. when you forget to changes the camera's time setting when traveling to a new time zone).
Replace any part of the date time while leaving the rest of the field unchanged For example, you can set the year in all date fields to 1999 while leaving the month, day, hours, minutes and seconds unchanged.

http://www.hugsan.com/EXIFutils/index.html

Und dann in deinem Fall in der Art:
Code
./exifdate -a 01:00:00 Verzeichnis_mit_10_Bildern 

und anschliessend noch ein
Code
./exiffile -t Verzeichnis_mit_10_Bildern 

Dann stimmt das Dateidatum auch mit dem Bilddatum überein.
...
Thomas Richard
28. Aug 2006, 14:34