I have several playlists that take two years as input that work fine
through the SB (classic) remote. 

When I try them in iPeng (1.1) after selecting the first year I just
get a blank screen.

Do I need to make change to the code (example below) or is this an
iPeng issue?

-- PlaylistName:Favourites by Years...
-- PlaylistGroups:Favourites,Years
-- PlaylistParameter1:year:Select 1st year:
-- PlaylistParameter2:custom:Select 2nd year:select
tracks.year,tracks.year from tracks where
tracks.year>='PlaylistParameter1' and tracks.audio=1 group by
tracks.year order by tracks.year
select tracks.url from tracks
        join track_statistics on        
tracks.url=track_statistics.url
        left join dynamicplaylist_history on
tracks.id=dynamicplaylist_history.id
        where
                audio=1
                and dynamicplaylist_history.id is null
                and tracks.year>='PlaylistParameter1'
                and tracks.year<='PlaylistParameter2'
                and track_statistics.rating>=70
        group by tracks.id
        order by rand()
        limit 10;


-- 
MillmoorRon
------------------------------------------------------------------------
MillmoorRon's Profile: http://forums.slimdevices.com/member.php?userid=6413
View this thread: http://forums.slimdevices.com/showthread.php?t=62953

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to