Hi guys, I will really appreciate if someone give me a hand.
I have this simple test but I don't know why is not working as expected
myCell = deOpenCellView(projName cellToOpen "schematic" "" hiGetSessionWindow(hiGetCurrentWindow()) "r")
myInst=setof(x myCell~>cellView~>instances x~>cellName=="patternName")
mapcar('geSelectFig myInst)
leZoomToSelSet()
The idea is to open a schematic(cellToOpen) and find all the instances that match with "patternName". After that, I would like to zoom-in on the instance that was found (if it was just one).
If I run the code line by line it seems to work but I don't know why not when I run it in a row. It seems there is an automatic zoom-to-fit after leZoomToSelSet() call..not sure
Thanks!