Type function Return value none Revision Release 2025.3721 Keywords stop, iTunes See also iTunes iTunes.play() iTunes.pause() iTunes.resume()
Stops an item (currently playing or paused) that was selected from the iTunes library.
iTunes.stop()
local iTunes = require( "plugin.iTunes" )
-- Table to store media items
local mediaItems = {}
-- Function that is executed when song playback is complete
local function onPlaybackEnded()
print( "Playback completed!" )
end
-- Function that is executed after media item(s) have been chosen
local function onMediaChosen( event )
if ( event.data ) then
for i=1,#event.data do
mediaItems[i] = event.data[i]
end
--play the first item chosen
iTunes.play( mediaItems[1].url, onPlaybackEnded )
--stop the song
iTunes.stop()
end
end
local iTunesOptions =
{
allowsPickingMultipleItems = true,
promptTitle = "Select some songs"
}
iTunes.show( iTunesOptions, onMediaChosen )