hightime-fan
Aktives Mitglied
        Thread Starter
    
				
					
						- Registriert
- 06.08.2007
- Beiträge
- 716
- Reaktionspunkte
- 29
Hallo, 
ich brauche ein AppleScript mit dem ich bestimmte Felder aus einer FileMaker Pro 9 Datenbank in das Adressbuch kopieren kann. Was den Anfang für FileMaker Pro angeht, der ist glaube ich gemacht:
	
	
	
		
Danach komme ich nicht mehr weiter…(ich kenne die Befehle nicht)!
Habe bis jetzt folgendes geschrieben:
	
	
	
		
Könnte wir jemande sagen was ich schreiben muss bzw. wie die Befehle lauten um ein neuen Kontakt im Adressbuch zu erstellen ?
Mit freundlichen Grüßen,
Hightime
	
		
			
		
		
	
				
			ich brauche ein AppleScript mit dem ich bestimmte Felder aus einer FileMaker Pro 9 Datenbank in das Adressbuch kopieren kann. Was den Anfang für FileMaker Pro angeht, der ist glaube ich gemacht:
		Code:
	
	tell application "FileMaker Pro"
	
	activate
	
	set prenom to cell "Prénom" of current record
	set nom to cell "Nom" of current record
	set contact to cell "Contact" of current record
	set telephone1 to cell "N° de tél. 1" of current record
	set telephone2 to cell "N° de tél. 2" of current record
	set telephonefax to cell "N° de Fax" of current record
	set email to cell "Email" of current record
	set website to cell "Site Web" of current record
	
	set remarque to cell "Remarques" of current record
	
	set adressetype to cell "Adresse 1 Type" of current record
	set adresse to cell "Adresse 1" of current record
	set codepostal to cell "Code postal 1" of current record
	set ville to cell "Ville 1" of current record
	set pays to cell "Pays 1" of current record
	
end tellDanach komme ich nicht mehr weiter…(ich kenne die Befehle nicht)!

Habe bis jetzt folgendes geschrieben:
		Code:
	
	tell application "Address Book"
	
	
end tellKönnte wir jemande sagen was ich schreiben muss bzw. wie die Befehle lauten um ein neuen Kontakt im Adressbuch zu erstellen ?
Mit freundlichen Grüßen,
Hightime
 
 
		 
 
		 
			 
  
 
		 
 
		 
 
		 
 
		