|
These scripts will allow for automatic playing of station ID's, promos and
other additional sound files depending on the script. Copy each of these scripts
to wordpad and save as *.PAL
Station ID's (ID.PAL)
This allows for the playing of a station id after every 5
songs.
//PAL script functions
{######################}
PAL.Loop := True;
PAL.WaitForPlayCount(5);
CAT['Station IDs (All)'].QueueTop(smLemmingLogic, NoRules);
{=== [ THE END ] ===}
Station Promos (promo.PAL)
This allows for the playing of a promo or ad after every 8
songs played.
//PAL script functions
{######################}
PAL.Loop := True;
PAL.WaitForPlayCount(8);
CAT['Promos (All)'].QueueTop(smLemmingLogic, NoRules);
{=== [ THE END ] ===}
more to come......
|