View Single Post
  #1  
Old 06-26-2007, 12:27 PM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,003
How can I test for the existence of a macro in script code?

VBScript:

Version #1 (look for a macro of any type with the given name)

Code:
If Not vbld_AllMacros()("MACRO_NAME") Is Nothing Then
  Builder.LogMessage "MACRO_NAME exists"
Else
  Builder.LogMessage "MACRO_NAME does not exist"
End If
Version #2 (look for a temporary macro with the given name)

Code:
If Not vbld_TempMacros()("MACRO_NAME") Is Nothing Then
  Builder.LogMessage "MACRO_NAME exists"
Else
  Builder.LogMessage "MACRO_NAME does not exist"
End If
Reply With Quote