Vorheriges Thema anzeigen :: Nächstes Thema anzeigen |
Autor |
Nachricht |
michael sliwinski •->

Anmeldedatum: 14.03.2011 Beiträge: 7
|
Verfasst am: 14.03.2011 - 17:04 Titel: wie gebe ich einen druckbefehl?????? |
|
|
Hallo,
ich bin neu hier und würde gerne mal wissen wie ich mit apple script ein Druckbefehl hinbekomme.....
ich mach mit Periscope ein foto welches über vorschau geöffnet wird, dieses soll nun vom drucker ausgedruckt werden....
alles funktioniert auch der drucker öffnet sich,jedoch druckt dieser nicht....
mein script sieht folgendermassen aus:
tell application "KeyboardSetupAssistant"
tell application "Periscope"
capture foto
end tell
tell application "Finder"
open last file of folder "Ohne Titel:Benutzer:MacMini_005:Schreibtisch:Fotos"
end tell
tell application "PrinterProxy"
print window
end tell
end tell |
|
Nach oben |
|
 |
hubionmac •--->


Anmeldedatum: 26.02.2004 Beiträge: 245 Wohnort: Münster
|
Verfasst am: 14.03.2011 - 18:49 Titel: |
|
|
Vielleicht
Zitat: | tell application "KeyboardSetupAssistant"
tell application "Periscope"
capture photo
end tell
tell application "Finder"
set a to last file of folder "Fotos" of desktop as alias
end tell
tell application "PrinterProxy"
print a
end tell
end tell | [/code] _________________ hubionmac.com akzeptiere Paypal und Pizza |
|
Nach oben |
|
 |
michael sliwinski •->

Anmeldedatum: 14.03.2011 Beiträge: 7
|
Verfasst am: 15.03.2011 - 18:13 Titel: |
|
|
hey hubionmac,
vielen dank für die lösung....nun muss ich das ganze noch so erstellen das mein drucker dieses in dem format Din A6 ausdruckt....aber bis hierhin erstmal vielen dank.... |
|
Nach oben |
|
 |
|