Hi, Does anyone have a simple PAL script that will start and stop individual encoders?
Jim > From [email protected] Thu Dec 13 21:51:04 2007 From: [email protected] (Elbert Dee) Date: Thu Dec 13 22:25:08 2007 Subject: [General-discussion] PAL script to start / stop individual encoders References: <001801c83b63$1453daa0$4100a...@home9b6221bfb8> <[email protected]> Message-ID: <009101c83dfc$2b8a3570$0200a...@laptop> This will start all encoders var I : Integer; for I := 0 to Encoders.Count-1 do if not Encoders[I].Started then Encoders[I].Start; this will stop all encoders var I : Integer; for I := 0 to Encoders.Count-1 do if Encoders[I].Started then Encoders[I].Stop; Elbert Dee ----- Original Message ----- From: "Jim Priebe" <[email protected]> To: <[email protected]> Sent: Thursday, December 13, 2007 6:37 PM Subject: [General-discussion] PAL script to start / stop individual encoders > Hi, > > Does anyone have a simple PAL script that will start and stop individual > encoders? > > Jim >> > _______________________________________________ > General-discussion mailing list > [email protected] > http://mailman.spacialaudio.com/mailman/listinfo/general-discussion > > TO unsubscribe to this list, simply send a blank email to > [email protected] > > with the subject 'unsubscribe' > >
