> Q3. Where to read about bindkeys setting, modification and
> particularly bindkeys "events"?
There a nice but short tutorial in this wiki :
http://cadence.wikispaces.com/Bindkeys
The wiki was initiated by users of this newsgroup, but unfortunately
didn't evolve too much.
> Q4. Is there a meaning for every built-in Skill functions suffixes?
> Like hi..., ge... dmb... and so on?? Where can i find explanation or
> comments about them?
Yes. I have a list of prefixes in my SQR (according to which, dmb stands
for design management
browsing), but I don't know if there's a list somewhere in the regular
do***entation.
> Q6. I need to read dedicated example(s) about circuit building
> (instance placing, wiring the circuit, and biasing it) in Skill, this
> is dedicated to create an automated flow for some devices test. Where
> to find that?
> Q7. Why don't i see the menu when creating it using hiCreateSimpleMenu
> in the CIW? Should i use also any function to initialize CIW menus?
Example:
ciwMenuInit() ;; call this to make sure the ciw menus have been
initialized, or they might be reset
later on
hiInsertBannerMenu(
hiGetCIWindow()
hiCreatePulldownMenu(
'ciwCustomMenu
"Custom Menu"
list(
hiCreateMenuItem(
?name 'ciwCustomMenuItem
?itemText "Custom Menu Item"
?callback " myCallback()"
)
)
""
)
(hiGetNumMenus(hiGetCIWindow())-1)
)
> Q8. When I create a menu in certain window banner, is there a way to
> place the menu to right of the window (like the help menu)?
I don't think so.
> Q9. Finally,How to know information about cadence stuff like menu
> names (e.g. file, edit, ...) , window names, and so on?
Use hiGetCurrentWindow(), hiGetWindowMenu(), hiGetMenuItems() type of
functions, for example.
Stéphane


|