Find the technology name

T

The Master

Guest
I'm trying to make a script that does different operations depending on
the name of the technology file. Under one technology do this, under
another technology do that instead.

info = geGetWindowCellView()
techname = xyz
case( techname
..
..
..
)

What's the xyz that I need? I can't for the life of me figure it out, nor
do I have any examples onsite that do it.
 
The Master wrote:
I'm trying to make a script that does different operations depending on
the name of the technology file. Under one technology do this, under
another technology do that instead.

info = geGetWindowCellView()
techname = xyz
case( techname
.
.
.
)

What's the xyz that I need? I can't for the life of me figure it out,
nor do I have any examples onsite that do it.
That would be techGetTechFile(info)~>libName

Cheers,
Stéphane
 
S. Badel wrote, on 12/16/08 09:55:
The Master wrote:

I'm trying to make a script that does different operations depending
on the name of the technology file. Under one technology do this,
under another technology do that instead.

info = geGetWindowCellView()
techname = xyz
case( techname
.
.
.
)

What's the xyz that I need? I can't for the life of me figure it out,
nor do I have any examples onsite that do it.

That would be techGetTechFile(info)~>libName

Cheers,
Stéphane
Or techGetTechLibName(info) will do this directly.

Regards,

Andrew.
 

Welcome to EDABoard.com

Sponsor

Back
Top