I have spent over a week trying to solve two lines of code!
VBScript snippet:
COM Browser:
My Code - I have tried two ways:
or
How do i define "myFoundItems" so that I can get "myFoundItems.Count" in PowerBasic?
(One definition on the Net (not Adobe) says that "FindText" returns an "Array of Text")
VBScript snippet:
Code:
Set myFoundItems = myInDesign.Documents.Item(1).FindText MsgBox ("Found " & CStr(myFoundItems.Count) & " instances of the search string.")
Code:
MEMBER CALL FindText <1181639764> (OPTIONAL IN prm_ReverseOrder AS VARIANT<0>) AS InDesignObjects ' <dispinterface>
Code:
LOCAL list AS VARIANT DIM listarray(1 TO 100) AS VARIANT ..... .... OBJECT CALL myDocument.FindText TO list
Code:
OBJECT CALL myDocument.FindText TO listarray()
(One definition on the Net (not Adobe) says that "FindText" returns an "Array of Text")
Comment