Share via


Playlist.item 메서드

[이 페이지와 연결된 기능인 Windows 미디어 플레이어 SDK는 레거시 기능입니다. MediaPlayer로 대체되었습니다. MediaPlayer는 Windows 10 및 Windows 11 최적화되었습니다. 가능한 경우 새 코드에서 Windows 미디어 플레이어 SDK 대신 MediaPlayer를 사용하는 것이 좋습니다. 가능한 경우 레거시 API를 사용하는 기존 코드를 다시 작성하여 새 API를 사용하도록 제안합니다.]

item 메서드는 지정된 인덱스에서 미디어 항목을 검색합니다.

구문

retVal = Playlist.item(
  index
)

매개 변수

index [in]

검색할 항목의 인덱스가 들어 있는 숫자(long)입니다.

반환 값

이 메서드는 Media 개체를 반환합니다.

설명

이 메서드를 사용하려면 라이브러리에 대한 읽기 권한이 필요합니다. 자세한 내용은 라이브러리 액세스를 참조하세요.

예제

다음 JScript 예제에서는 재생 목록을 사용합니다. 사용자 선택에 따라 현재 재생 목록에서 미디어 항목을 검색할 항목입니다. HTML SELECT 요소는 이름 "weblist"로 만들어졌으며 현재 재생 목록의 제목으로 채워집니다. Player 개체는 ID = "Player"로 만들어졌습니다.

// Store the value of the selected item in the list box
// using the selectedIndex property.
var index = weblist.selectedIndex;

// Store the corresponding digital media object from the current playlist.
var listItem = Player.currentPlaylist.item(index);

// Set the URL using the listItem variable.
Player.URL = listItem.sourceURL;

요구 사항

요구 사항
버전
Windows 미디어 플레이어 버전 7.0 이상.
DLL
Wmp.dll

추가 정보

Media 개체

재생 목록 개체

Playlist.insertItem

Playlist.removeItem

Settings.mediaAccessRights

Settings.requestMediaAccessRights