T
tadi
Guest
Hello all,
I am facing an issue with pop-up boxes, while changing properties of
devices in schematic using SKILL. Please go through the code below.
##########################
deOpenCellView(dest_lib cellname "schematic" "schematic" list(nil)
"a")
cv_dbid = geGetWindowCellView()
changeDevice(cv_dbid)
procedure(changeDevice(cv_dbid)
pmoslist=list("pmos_svt" "pmos" "pmos_io")
nmoslist=list("nmos_svt" "nmos" "nmos_io")
;select all mos devices
foreach(inst cv_dbid~>instances
if(member(inst~>cellName pmoslist) || member(inst~>cellName
nmoslist) then
geSelectObjectNoFilter(inst)
)
)
;open ObjectProperty Form and change Vth1vG value to "high"
schHiObjectProperty()
schObjPropForm->objScope->value = "all selected"
schObjPropForm->compFilter->value = "any masters"
schObjPropForm->objGroup->value = "instance"
schObjPropForm~>Vth1vG~>value="high"
hiFormDone(schObjPropForm)
geDeselectAll()
)
############################
hiFormDone() is opening a dialogbox (schDBox) with "YES" "NO" "CANCEL"
options. Is there any way in SKILL to change the properties silently ?
Thanks in advance.
-Ganesh.
I am facing an issue with pop-up boxes, while changing properties of
devices in schematic using SKILL. Please go through the code below.
##########################
deOpenCellView(dest_lib cellname "schematic" "schematic" list(nil)
"a")
cv_dbid = geGetWindowCellView()
changeDevice(cv_dbid)
procedure(changeDevice(cv_dbid)
pmoslist=list("pmos_svt" "pmos" "pmos_io")
nmoslist=list("nmos_svt" "nmos" "nmos_io")
;select all mos devices
foreach(inst cv_dbid~>instances
if(member(inst~>cellName pmoslist) || member(inst~>cellName
nmoslist) then
geSelectObjectNoFilter(inst)
)
)
;open ObjectProperty Form and change Vth1vG value to "high"
schHiObjectProperty()
schObjPropForm->objScope->value = "all selected"
schObjPropForm->compFilter->value = "any masters"
schObjPropForm->objGroup->value = "instance"
schObjPropForm~>Vth1vG~>value="high"
hiFormDone(schObjPropForm)
geDeselectAll()
)
############################
hiFormDone() is opening a dialogbox (schDBox) with "YES" "NO" "CANCEL"
options. Is there any way in SKILL to change the properties silently ?
Thanks in advance.
-Ganesh.