<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Hope This Helps - iTunes</title>
    <link>http://hope-this-helps.de/serendipity/</link>
    <description>IT Tipps</description>
    <dc:language>de</dc:language>
    <generator>Serendipity 1.6 - http://www.s9y.org/</generator>
    
    

<item>
    <title>Skriptsteuerung iTunes: itunes_start_playlist.vbs</title>
    <link>http://hope-this-helps.de/serendipity/archives/174-Skriptsteuerung-iTunes-itunes_start_playlist.vbs.html</link>
            <category>iTunes</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/174-Skriptsteuerung-iTunes-itunes_start_playlist.vbs.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=174</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=174</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Skriptsteuerung iTunes: itunes_start_playlist.vbs&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Mit diesem JS-Skript wird iTunes gestartet und die unter PlaylistName angegebene Playlist wird gestartet. Die Lautstärke wird auf 100% gesetzt und es wird ein neuer Shuffle-Vorgang durchgeführt!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;itunes_start_playlist.vbs&lt;/em&gt;&lt;br /&gt;
&lt;blockquote&gt;// iTuens starten und Playlist abspielen &lt;br /&gt;
&lt;br /&gt;
var PlaylistName=&quot;Playlistename_ihrer_Wahl&quot; // iTunes-Playlistnamen eintragen&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
var iTunesApp = WScript.CreateObject(&quot;iTunes.Application&quot;)&lt;br /&gt;
var volume=iTunesApp.SoundVolume&lt;br /&gt;
var LibraryName=iTunesApp.LibraryPlaylist.Name &lt;br /&gt;
var Playlist=iTunesApp.Sources.ItemByName(LibraryName).Playlists.ItemByName(PlaylistName)&lt;br /&gt;
&lt;br /&gt;
iTunesApp.SoundVolume=0 &lt;br /&gt;
Playlist.PlayFirstTrack();&lt;br /&gt;
&lt;br /&gt;
if (Playlist.Shuffle==1)&lt;br /&gt;
{&lt;br /&gt;
Playlist.Shuffle=0;&lt;br /&gt;
Playlist.Shuffle=1&lt;br /&gt;
&lt;br /&gt;
so:&lt;br /&gt;
&lt;br /&gt;
iTunesApp.NextTrack();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
iTunesApp.SoundVolume=100&lt;br /&gt;
iTunesApp.Play(); &lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Mon, 22 Feb 2010 18:59:23 +0100</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/174-guid.html</guid>
    <category>iTunes</category>

</item>
<item>
    <title>Skriptsteuerung iTunes: itunes_fadeout.vbs</title>
    <link>http://hope-this-helps.de/serendipity/archives/173-Skriptsteuerung-iTunes-itunes_fadeout.vbs.html</link>
            <category>iTunes</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/173-Skriptsteuerung-iTunes-itunes_fadeout.vbs.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=173</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=173</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Skriptsteuerung iTunes: itunes_fadeout.vbs&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Bit diesem Skript wird die gegenwärtige Lautstärke in ca. 8 Sekunden heruntergefadet von 100% auf 25%.&lt;br /&gt;
Zuvor wird mittels Playerstate überprüft, ob ein Lied gespielt wird (State &lt;&gt;0) oder kein Lied gespielt wird (State=0).&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;itunes_fadeout.vbs&lt;/em&gt;&lt;br /&gt;
&lt;blockquote&gt;set iTunesApp = WScript.CreateObject(&quot;iTunes.Application&quot;)&lt;br /&gt;
&lt;br /&gt;
if iTunesApp.PlayerState &lt;&gt; 0 then&lt;br /&gt;
&lt;br /&gt;
for i = 100 to 25 Step -1&lt;br /&gt;
&lt;br /&gt;
wscript.sleep 134&lt;br /&gt;
iTunesApp.SoundVolume = i&lt;br /&gt;
&lt;br /&gt;
next&lt;br /&gt;
&lt;br /&gt;
end if&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Mon, 22 Feb 2010 18:55:28 +0100</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/173-guid.html</guid>
    <category>iTunes</category>

</item>
<item>
    <title>Skriptsteuerung iTunes: itunes_stop.js</title>
    <link>http://hope-this-helps.de/serendipity/archives/172-Skriptsteuerung-iTunes-itunes_stop.js.html</link>
            <category>iTunes</category>
    
    <comments>http://hope-this-helps.de/serendipity/archives/172-Skriptsteuerung-iTunes-itunes_stop.js.html#comments</comments>
    <wfw:comment>http://hope-this-helps.de/serendipity/wfwcomment.php?cid=172</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://hope-this-helps.de/serendipity/rss.php?version=2.0&amp;type=comments&amp;cid=172</wfw:commentRss>
    

    <author>nospam@example.com (Ralf Entner)</author>
    <content:encoded>
    &lt;strong&gt;Skriptsteuerung iTunes: itunes_stop.js&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
Hier ein Skript für das Stoppen der gegenwärtig abgespielten Playlist von iTunes &lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;itunes_stop.js&lt;/em&gt;&lt;br /&gt;
&lt;blockquote&gt;// iTunes stoppen&lt;br /&gt;
&lt;br /&gt;
var iTunesApp = WScript.CreateObject(&quot;iTunes.Application&quot;)&lt;br /&gt;
&lt;br /&gt;
iTunesApp.Stop();&lt;/blockquote&gt; 
    </content:encoded>

    <pubDate>Mon, 22 Feb 2010 18:50:28 +0100</pubDate>
    <guid isPermaLink="false">http://hope-this-helps.de/serendipity/archives/172-guid.html</guid>
    <category>iTunes</category>

</item>

</channel>
</rss>
