I'm trying to write a script to get properties of documents found within the workflow.
I can get the properties of the bound entry easily enough:
* CurrentEntryCreator = me.Entry.CreatorName
but can anyone show me how to get information on an entry that isn't the bound one?
something along the lines of:
1. dim theCurrDoc as object (or does it need to be something specific?)
2. dim CreatorOfCurrDoc as string
3. theCurrDoc = Entry(ForEachEntry_CurrentEntry_ID)
4. CreatorOfCurrDoc = theCurrDoc.CreatorName
It's line 3. that I can't work out the correct syntax for.
(Also, can anyone point me to SDK script resources? The help files I can find are very basic and don't have any click-throughs to more detailed reference or examples.)