blob: 6fc63c828737f7fd91e6f26679e5726db0283e76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JSAPI2::PlayQueue Api</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<script type="text/javascript" src="api2.js"></script>
</head>
<body style="FONT-FAMILY: MS Shell Dlg 2;">
<h2>PlayQueue API</h2>
<h3>Methods:</h3>
<input type="button" value="Play" onclick="pqPlayClicked();">
<br>
URL: <input type="text" id="pq_t_PlayURL_in" value="c:\Documents and Settings\smontgo444\My Documents\My Music\Winamp\01 - Hello City.mp3">
<br>
title: <input type="text" id="pq_t_PlayTitle_in">
<br>
length: <input type="text" id="pq_t_PlayLength_in">
<br>
<br>
<input type="button" value="Enqueue" onclick="pqEnqueueClicked();">
<br>
URL: <input type="text" id="pq_t_EnqueueURL_in" value="c:\Documents and Settings\smontgo444\My Documents\My Music\Winamp\01 - Hello City.mp3">
<br>
title: <input type="text" id="pq_t_EnqueueTitle_in">
<br>
length: <input type="text" id="pq_t_EnqueueLength_in">
<br>
<br>
<input type="button" value="Insert" onclick="pqInsertClicked();">
<br>
position: <input type="text" id="pq_t_InsertPosition_in" value="0">
<br>
URL: <input type="text" id="pq_t_InsertURL_in" value="c:\Documents and Settings\smontgo444\My Documents\My Music\Winamp\08 - The King Of Bedside Manor.mp3">
<br>
title: <input type="text" id="pq_t_InsertTitle_in">
<br>
length: <input type="text" id="pq_t_InsertLength_in">
<br>
<br>
<input type="button" value="Clear Queue" onclick="pqClearQClicked();">
<br>
<br>
<input type="button" value="Get Metadata" onclick="pqGetMetadataClicked();">
<input type="text" readonly size="40" id="pq_t_MTag_Response">
<br>
position: <input type="text" value="0" id="pq_t_MetadataPosition_in">
<br>
Metadata Tag: <input type="text" value="artist" id="pq_t_MTag_in">
<br>
<br>
<input type="button" value="Get Title" onclick="pqGetTitleClicked();">
<input type="text" readonly size="20" id="pq_t_Title">
<br>
position: <input type="text" value="0" id="pq_t_TitlePosition_in">
<br>
<br>
<input type="button" value="Get URL" onclick="pqGetURLClicked();">
<input type="text" readonly size="20" id="pq_t_URL">
<br>
position: <input type="text" value="0" id="pq_t_URLPosition_in">
<br>
<br>
<h2>Properties</h2>
<input type="button" value="Get length" onclick="pqGetLengthClicked();">
<input type="text" readonly size="20" id="pq_t_Length">
<br>
<br>
<input type="button" value="Get cursor" onclick="pqGetCursorClicked();">
<input type="text" readonly size="20" id="pq_t_Cursor">
<br>
<input type="button" value="Set cursor" onclick="pqSetCursorClicked();">
<input type="text" size="20" id="pq_t_Cursor_in">
</body>
</html>
|