Hmm. From reading that it doesnt look like i can do it the way i want. I could do what i want with a few if statements.

What i wanted to do
Code:
for x=0 to 15
if condition(x)=true then
high pins(x)
endif
next
What i will have to do
Code:
if condition(0)=true then
high porta.1
endif
if condition(1)=true then
high porta.4
endif
'etc