SetLayerStyle inside other layer

Discuss any general programming issues here
Post Reply
sashapont
Posts: 152
Joined: Thu Aug 03, 2017 2:49 pm

SetLayerStyle inside other layer

Post by sashapont »

I have code

Code: Select all

SelectLayer("One")
TextOut(#CENTER-140, 142, "x",{Color=#RED, Name="two"})      
    ENDSelect
How I can change layer attributes? Code like this is not work

Code: Select all

    	     SelectLayer("One")
   SetLayerStyle("Two", {Color=#BLACK}) 
   ENDSelect
Post Reply