playRandomMusic();
} else if (split[1].equalsIgnoreCase("next") || split[1].equalsIgnoreCase("skip")) {
SoundSystem sound = getSoundSystem();
if (sound != null) {
if (sound.playing("BgMusic")) {
sound.stop("BgMusic");
}
if (sound.playing("streaming")) {
sound.stop("streaming");
}
}