Page 1 of 1

Newbie: Custom properties

Posted: Thu May 03, 2007 9:46 pm
by kpeters
I have explicit variables set and am trying to do this:

on openStack
put empty into the uPassword of field "field_Password"
end openStack

I get:

Chunk: can't create a variable with that name (explicitVariables?)

What am I doing wrong?

TIA,
KAi

Posted: Thu May 03, 2007 9:50 pm
by malte
Hi Kai,

custom properties are set. You can not put something into them.

set the uMyProperty of this card to "blah"

Your script would look like this:

on openStack
set the uPassword of field "field_Password" to empty
end openStack

Hope that helps,

Malte

Posted: Thu May 03, 2007 10:06 pm
by kpeters
Thanks Malte -

This sure helps!

Kai