hello every body.
i am using phonon to play sound file but i want the sound file to start from a specified position so i used the following code

m_player = Phonon::createPlayer(Phonon::MusicCategory, Phonon::MediaSource(aSoundFile));
m_player->play();
m_player-seek();

but it does not work it starts from the beginning of the file
how can i play the sound file from the specified position?