Here's something i dont get:
If i put this into a list box On.Double Click
//...
MP3.Load ("%ItemData%")
MP3.Play
TextObject[Time].SetText ("00:00")
%Length% = MP3.GetProperty ("Length")
TextObject[Time].SetText ("%Length%")
- everything works fine. However, if instead i put the last part:
TextObject[Time].SetText ("00:00")
%Length% = MP3.GetProperty ("Length")
TextObject[Time].SetText ("%Length%")
- into the global MP3 Player On.Play event, it doesnt work. It works for the first track but no longer. How comes it? Shouldn't it give me the same result?
If i put this into a list box On.Double Click
//...
MP3.Load ("%ItemData%")
MP3.Play
TextObject[Time].SetText ("00:00")
%Length% = MP3.GetProperty ("Length")
TextObject[Time].SetText ("%Length%")
- everything works fine. However, if instead i put the last part:
TextObject[Time].SetText ("00:00")
%Length% = MP3.GetProperty ("Length")
TextObject[Time].SetText ("%Length%")
- into the global MP3 Player On.Play event, it doesnt work. It works for the first track but no longer. How comes it? Shouldn't it give me the same result?
Comment