home *** CD-ROM | disk | FTP | other *** search
- /*
- * Channel.ifx
- * Select which of the three channels to operate on
- *
- * by Steve Tibbett
- */
-
- Options Results
-
- SeqNum=Word(Arg(1),4);
-
- Settings=GetClip("ImpChannelParameters"SeqNum);
- if (Settings="") then do
- RequestNotify "ImpChannelParameters invalid in ImpChannel.ifx"
- return 20
- End
-
- Parse Var Settings R G B
-
- Str=""
- if (R=1) then Str="R"
- if (G=1) then Str=Str||"G"
- if (B=1) then Str=Str||"B"
-
- Channel Str
-