Action Panel/Task Pane Naming

Is there a way through the python API to add a title and name to action panels/ task panes?

1 Like

Yes.

Is there two ways:

First: use vcHelpers.Application

from vcCommand import *

app = getApplication()

def  OnStart():
    dlg = getDialog('Your dialog caption')
    dlg.show()

Second: use netCommand directly

from vcCommand import *

app = getApplication()

def OnStart():
    netcmd = app.findCommand('netCommand')
    netcmd.execute('SetLocalizationCommand', 'English', 'Python', getCommand.Name(), 'Text', 'Your dialog caption')
    executeInActionPanel()

1 Like