geSetProbeUserLPP

P

PolyPusher

Guest
All,

I have a request from a peer to be able to use subset of the cycling
layers y0 thru y9 as they are having difficulty seeing some of the
darker colors.

Can a user specify, give a list of certain cycling layers for probe so
only the brighter colors available are always used?
geSetProbeUserLPP doesn't seem to take a list and pass to the probe
functions. What I mean is:

geSetProbeUserLPP(list("y0" "drawing"))
now probe will use this color only, but

geSetProbeUserLPP(list("y0" "drawing" "y1" "drawing" "y2" "drawing"))

as if to say "use these three to toggle thru" does not seem to work.

Thank you in advance for any help,
Eric
 
Hi,
I have a quick work around if SKILL coding gets too time consuming.
Just change the layer colours from the display resource editor - you
can re-use the same colours.

Best regards,
I-F AB
 
Hi poly pusher,
i just guess this might be the answer ..
the code you gave doesnt look like a list for the command.. it just
looks like a list of strings hence you can try
geSetProbeUserLPP(list(list("y0" "drawing") list( "y1" "drawing") list
( "y2" "drawing")))
instead of geSetProbeUserLPP(list("y0" "drawing" "y1" "drawing" "y2"
"drawing"))
regards,
lokesh

PolyPusher wrote:
All,

I have a request from a peer to be able to use subset of the cycling
layers y0 thru y9 as they are having difficulty seeing some of the
darker colors.

Can a user specify, give a list of certain cycling layers for probe so
only the brighter colors available are always used?
geSetProbeUserLPP doesn't seem to take a list and pass to the probe
functions. What I mean is:

geSetProbeUserLPP(list("y0" "drawing"))
now probe will use this color only, but

geSetProbeUserLPP(list("y0" "drawing" "y1" "drawing" "y2" "drawing"))

as if to say "use these three to toggle thru" does not seem to work.

Thank you in advance for any help,
Eric
 

Welcome to EDABoard.com

Sponsor

Back
Top