Question: I'm looking for a way to bind these buttons to my keyboard keys so that I would be able to control this player in a easier way!
Up to this moment I did following:
1). Made an application out of this website (using the Chrome function), so now it's just a separate window and not a tab!!
2). Installed EventGhost and created FindWindow Macro which detects the window mentioned in p. 1.!
What's left? I need to find a way to click on javascript buttons!! (I don't want to use mouse_left_Button_click_on_a_a_certain_position because it'll interfere with my work on PC.. - I want to to be able launch this script in the background!)
3). I reviewed the page source of this website and playlist controls looks like this:
Code: Select all
<div class="prev" onmouseover="audioPlayer.highLight(this, 'prev', 1)" onmouseout="audioPlayer.highLight(this, 'prev', 0)" onmousedown="cancelEvent(event)" onclick="audioPlayer.prevTrack();" style="opacity: 0.6; "></div>
<div class="next" onmouseover="audioPlayer.highLight(this, 'next', 1)" onmouseout="audioPlayer.highLight(this, 'next', 0)" onmousedown="cancelEvent(event)" onclick="audioPlayer.nextTrack();" style="opacity: 0.6; "></div>
P.S. if asked I can post a link to the website but I'm not sure if site rules allow it