What EXACT command structure can I use to trigger a HotKey.
I would be grateful to you for a helpful answer.
Thanks
Code: Select all
Sub PlayNext
on error resume next
If (SDB.Player.isPlaying) And (Not SDB.Player.isStartingPlayback) Then
SDB.Player.Next
'The following song is played and should be marked at the same time.
SendKeys {F8} ' ?????????????????????
End if
End Sub

