Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Option Explicit
Dim appref
Set appref = CreateObject("Photoshop.Application")
Dim docref
if appref.documents.count<>0 then 'Falls kein Dokument geöffnet ist, wird ein neues erstellt
Set docref=appref.ActiveDocument
else
Set docref=appref.documents.add(500,500,72,"Beispiel.psd")
end if
dim anzZeilen, Abstand, sel_x, sel_y,sel_h, farbe, i
anzZeilen = InputBox("Gib die Anzahl der Zeilen ein:","Linienzeichner",20)
if anzZeilen>0 then
dim startRulerUnits
startRulerUnits=appRef.Preferences.RulerUnits
appref.Preferences.RulerUnits =5
docref.artlayers.add
Abstand = docref.Height / anzZeilen
sel_h = Abstand
sel_x = docref.Width
sel_y = 0
Set farbe = appref.ForegroundColor
For i = 1 To anzZeilen
sel_y = i * Abstand - sel_h
docref.Selection.Select Array( _
Array(0, sel_y), _
Array(sel_x, sel_y), _
Array(sel_x, sel_y + sel_h), _
Array(0, sel_y + sel_h))
docref.Selection.Fill farbe
sel_h = (1 - (i / anzZeilen)) * Abstand
Next
docref.selection.deselect
appRef.Preferences.RulerUnits=startRulerUnits
end if