(i_dir)
| 1370 | } |
| 1371 | |
| 1372 | function volume_set(i_dir) |
| 1373 | { |
| 1374 | var em=document.getElementById("embplay"); |
| 1375 | var n=0; |
| 1376 | try {n=parseInt(em.Settings.volume);} catch(err) { return; } |
| 1377 | if (i_dir<0) |
| 1378 | { |
| 1379 | n-=5; |
| 1380 | } |
| 1381 | if (i_dir>0) |
| 1382 | { |
| 1383 | n+=5; |
| 1384 | } |
| 1385 | if (n<0) n=0; |
| 1386 | if (n>100) n=100; |
| 1387 | em.Settings.volume=n; |
| 1388 | var ev=document.getElementById("volvalue"); |
| 1389 | var sv=volume_value(n); |
| 1390 | ev.innerHTML=""+n+"%"; |
| 1391 | } |
| 1392 | |
| 1393 | function volume_up() |
| 1394 | { |
no test coverage detected