#1
|
|||
|
|||
list macros from Powershell?
Using vbscript, you can use vbld_AddDelimValue to set a temporary macro to the value of a list. Is there a method/way to do this within a Powershell step? Is there an equivalent Powershell command that does the same thing?
|
#2
|
|||
|
|||
PowerShell is not currently integrated to the same degree as Active Scripting languages (VBScript, JScript, Python, RubyScript, etc.), so it doesn't have access to the live VBP object model for creating/updating temporary macros, etc. (deeper integration with PowerShell is something we'd like to add in the future).
From a PowerShell script, you can create another instance of the VBP object model and create/update a global macro, which would then be accessible from the calling VBP project (see attached sample). |
#3
|
|||
|
|||
Thanks!
I assume the "2" in $global = $app.Macros(2) refers to the type of macro being created (in this case, global)? -Tom |
#4
|
|||
|
|||
|
|