From: PJRushton on
On Mar 27, 5:48 pm, mattyball2...(a)gmail.com wrote:
> Hi everybody,
>
> Is there a way to check if a text member is blank/empty using lingo in
> Director MX 2004?
>
> Many Thanks,
>
> Matt.

Hi Matt

you can do a repeat loop to go through all text members of your cast
or just one member.

repeat with i = 1 to number of members of castlib castname
if member(i).type = text then
if member(i).text ="" then


you will need to do the proper syntax
good luck