Suche: iTunes Playlist Script

supergeheim

supergeheim

Aktives Mitglied
Thread Starter
Dabei seit
24.02.2006
Beiträge
1.051
Reaktionspunkte
5
moinsen leute.

ich habe auf dougscripts schon geschaut und lediglich ein script gefunden, dass eine playlist künsteralbum erstellt... also wenn ein künstler 3 alben hat, legt das script drei playlisten an.

ich suche nun ein script, dass eine playlist mit dem künstler anlegt und innerhalb dieser playlist alle alben einsortiert.

hat hier jemand so ein script zur hand?!
 
sorry...habe keines...
aber warum extra script, wenn es genau so fix über eine "intelligente playliste" gelöst wäre...
:confused:

;)
 
little pixel:
danke für deine antwort.


nun eine andere frage, aber gleiche problematik:
wie spreche ich itunes mit apple script an? ich finde im netz nichts, wo mir z.b. erklärt wird, wie ich mit applescript überprüfe ob das flag für compilation gesetzt ist.
 
Das kannst Du leichter haben mit: http://www.tune-instructor.de/de/onlinehilfe/0015.html

Attribute > ... die Teil einer Compilation sind


In AS:

Code:
tell application "iTunes"
	
	set sel to selection
	
	repeat with nTrack in sel
		
		if (compilation of nTrack is true) then
			
			display alert "Jo" message "Compilation"
		else
			display alert "No" message "Compilation"
			
		end if
		
	end repeat
	
end tell

Wie es geht, hier nachsehen: https://www.macuser.de/forum/f30/

Viele Grüße
 
  • Gefällt mir
Reaktionen: supergeheim
Zurück
Oben Unten