Hi all, In a schematic view, I would like to toggle 'Dynamic Net Highlighting' between On and Off. When I set only the envSetVal, it does not work. The only way I found is to call schHiDisplayOptions() and make a hiFormDone(schDisplayOptionsForm) : if( envGetVal("schematic" "schDynamicNetHilightOn" 'boolean) then envSetVal("schematic" "schDynamicHilightOn" 'boolean t) envSetVal("schematic" "schDynamicNetHilightOn" 'boolean nil) envSetVal("schematic" "schDynamicNetHilightNoIslands" 'boolean nil) print("Disable Dynamic Net Highlighting") else envSetVal("schematic" "schDynamicHilightOn" 'boolean t) envSetVal("schematic" "schDynamicNetHilightOn" 'boolean t) envSetVal("schematic" "schDynamicNetHilightNoIslands" 'boolean nil) print("Enable Dynamic Net Highlighting") ) hiRegTimer( "hiFormDone(schDisplayOptionsForm)" 1) schHiDisplayOptions() Is there a way to do it without calling schHiDisplayOptions? Regards Eric
↧