|
I did a bit of searching and found:
http://softimage.wiki.avid.com/sdkdocs/View_State.htm
which is great except the example is only JScript. What would the VBS equivalent to this be? This is probably simple and easy but I’m just not finding extensive info/examples for VBS scripting and I’m certainly no expert in this stuff.
This is my simple netview opening code
set Layout = Application.Desktop.ActiveLayout
set NV = Layout.CreateView( "NetView", "NV" )
I’d appreciate any help. Thanks.
|
|
|
|
here it is:
set layout = Desktop.ActiveLayout
set v1 = layout.CreateView( "Explorer", "First" ) set v2 = layout.CreateView( "Explorer", "Second" ) set v3 = layout.CreateView( "Explorer", "Third" )
v1.State = siClosed
v2.State = siMinimized
v3.State = siNormal
|
|
|
|
thanks, turns out I had just typed it in wrong when I tried last time.
|
|
|
|
It happens all the time ;)
|
|
|