private OnCompletionListener onCompletionListener;
public GwtMusic (FileHandle file) {
String url = ((GwtApplication)Gdx.app).getBaseUrl() + file.path();
sound = SoundManager.createSound(url);
soundOptions = new SMSoundOptions();
soundOptions.callback = this;
}