Держи, только я сомневаюсь, что без dllлок и либ у тебя что то получится
http://www.rapidshare.ru/20626
Модератор: Модераторы
if not OpenPlayer('/snd.wav', 'audio/x-wav') then Halt;
if not SetPlayerCount(-1) then Halt;
if not StartPlayer then Halt;
public class Lib_play {
include <mmapi>
public int XP_play(String file, String type, int volume) {
XP_play = 1;
try
{
InputStream is = getClass().getResourceAsStream("/your.mp3");
player = Manager.createPlayer(is,type);
player.realize();
// get volume control for player and set volume to max
vc = (VolumeControl) player.getControl("VolumeControl");
if(vc != null)
{
vc.setLevel(volume);
}
player.prefetch();
player.start();
}
catch(Exception e)
{XP_play = 0;}
}
public int XP_setvolume (int volume) {
vc = (VolumeControl) player.getControl("VolumeControl");
if(vc != null)
{
vc.setLevel(volume);
}
};
}
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 22