home *** CD-ROM | disk | FTP | other *** search
- /*
- * Channel.ifx.pre
- * Channel selection pre-script.
- *
- * by Steve Tibbett
- */
-
- options results
-
- Defaults=GetClip("ImpChannelParameters"arg(1));
- if (Defaults="") then Defaults="1 1 1"
-
- Parse Var Defaults R G Bl
-
- Gadget.1 = 'X/40/23/Red?/'R
- Gadget.2 = 'X/40/35/Green?/'G
- Gadget.3 = 'X/40/47/Blue?/'Bl
-
- ComplexRequest '"Channel Selection"' 3 Gadget 250 87
- IF rc ~= 0 THEN return 10
-
- Defaults=Result.1 Result.2 Result.3
- call SetClip("ImpChannelParameters"arg(1), Defaults);
-
-