Hi can any one show some light on how to perform the solution. For example if i have "M1 drawing layer" visible in LSW , then if i press some bindkey the M1 dummy layer should get vissible. I have tried some code but it isnt working. Copied for reference below
procedure(showDummySet()
for(i 1 10
z="M"
layer=(concat(z,i))
x=leIsLayerVisible( list("layer" "drawing") )
if( x == "t" then (
leSetAllLayerVisible(nil)
leSetEntryLayer(list(\"layer\" \"drawing\"))
leSetEntryLayer(list(\"layer\" \"dummy\"))
hiRedraw()
)
)
)
)
hiSetBindKey("Layout" "Ctrl<Key>8" "showDummySet() ")