我想在InDesign CS3 vb.net腳本中對文本框進行分組。它適用於InDesign 2.0,但不適用於InDesign CS3。這裏是我的代碼:InDesign中的vb.net腳本 - 分組文本框
Dim myDoc As InDesign.Document = Nothing
Dim myGroup As InDesign.Group = Nothing
Dim myObjectList(2)
myObjectList.SetValue(myOuterTextFrame, 0)
myObjectList.SetValue(myInnerTextFrame, 1)
myObjectList.SetValue(myContentTextFrame, 2)
myGroup = myDoc.Groups.Add(myObjectList)
得到錯誤「無法投類型的對象System.Object的[]'鍵入‘InDesign.Objects’。」