To open the schematic view regardless of the current configuration binding for the selected cell, you can modify your bindkey script to explicitly specify the schematic view to open. Here's how you can do it: hiSetBindKey("Schematics" " J" { envSetVal("schematic" "descendTarget" "viewNameList") envSetVal("schematic" "viewNameList" 'list "schematic") schHiDescendRead() }) Explanation: envSetVal("schematic" "descendTarget" "viewNameList") : This line ensures that when you descend in the schematic hierarchy, it targets the view specified in the viewNameList environment variable. envSetVal("schematic" "viewNameList" 'list "schematic") : Here, we explicitly set the viewNameList to contain only the schematic view. This ensures that regardless of the current configuration binding, the schematic view will be opened when descending. schHiDescendRead() : Finally, we perform the descend operation to open the schematic view in read mode. By explicitly setting the viewNameList to contain only the schematic view, you ensure that the schematic view is opened regardless of the current configuration binding for the selected cell.
↧