Home AMX User Forum AMX Technical Discussion

iPort Question

Im trying to make it so when you select a song on the song list (right when the song starts or changes) I want to change the subpage that is being displayed. Im just looking for an event to tell me that the ipod has started playing or a new song has been selected.Is there any way to do this?

Comments

  • felixmoldovanfelixmoldovan Posts: 197
    You mean... an event for the start of every song?
    IF (ElapsedTime = '00:00')
    {
         // Your event here
    }
    

    Something like this should work.
  • dbransforddbransford Posts: 3
    You mean... an event for the start of every song?
    IF (ElapsedTime = '00:00')
    {
         // Your event here
    }
    

    Something like this should work.

    Thanks for the reply! I found a good way after scratching my head for a while. I did a DATA_EVENT lookging for PLAYBACK_SONG_CHANGED=. That works like a charm.
Sign In or Register to comment.