|
发表于 2018-10-9 15:28:40
|
显示全部楼层
你好,我下载后直接修改正则表达式里面的参数,但是依然无法改动art02,03,04,05,06,07层面相关的颜色,请问是哪里不对吗?
c_ETCH_TOP = 33
c_ETCH_BOT = 1
c_ETCH_Art02 = 14
c_ETCH_Art03 = 53
c_ETCH_Art04 = 32
c_ETCH_Art05 = 32
c_ETCH_Art06 = 32
c_ETCH_Art07 = 32
c_ETCH_OTH = 11
(if(item=="TOP" p->color=c_ETCH_TOP ))
(if(item=="BOTTOM" p->color=c_ETCH_BOT ))
(rexMatchp("Art" item) p->color=c_ETCH_Art02 )
(rexMatchp("Art03" item) p->color=c_ETCH_Art03 )
(rexMatchp("Art04" item) p->color=c_ETCH_Art04 )
(rexMatchp("Art05" item) p->color=c_ETCH_Art05 )
(rexMatchp("Art06" item) p->color=c_ETCH_Art06 )
(rexMatchp("Art07" item) p->color=c_ETCH_Art07 )
(if(1==1 p->color=c_ETCH_OTH )) |
|