Hi Andrew, I'm trying to do this in VBScript, but your reply actually helped me figure out what I was doing wrong. Basically, in addition to what I was doing in my original post, I was also trying to read VectorValues out into a ReDim variable sized to the MaxVectors of the float profile. Turns out that doesn't work and the solution was actually much, much simpler than what I was trying to do. It was more or less like your JScript answer: Set FlowProfile = Server.FindObject(sFlowProfileFullName)
Dim FlowArray
FlowArray = FlowArray.Interface.VectorValues
Flow1 = FlowArray(0)
Flow2 = FlowArray(1)
Flow3 = FlowArray(2) etc... Extremely simple and I can't believe it took me this long to figure out.
... View more