Newbie: Custom properties

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
kpeters
Posts: 112
Joined: Wed Mar 21, 2007 9:32 pm

Newbie: Custom properties

Post by kpeters » Thu May 03, 2007 9:46 pm

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

malte
Posts: 1098
Joined: Thu Feb 23, 2006 8:34 pm
Contact:

Post by malte » Thu May 03, 2007 9:50 pm

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

kpeters
Posts: 112
Joined: Wed Mar 21, 2007 9:32 pm

Post by kpeters » Thu May 03, 2007 10:06 pm

Thanks Malte -

This sure helps!

Kai

Post Reply