Hi,

I'm having a problem address Custom Properties. I have the following script on a Text Field:

on closeField
if the text of the field FieldPageNumber > 99 then
   put 99 into field the FieldPageNumber
   beep
end if

end closeField


Which works fine, however I would like to make it more flexible and do something like:


on closeField
if the text of field me is > cMaxValue then
  put cMaxValue  into field the FieldPageNumber
  beep
end if

(Where cMaxValue is a Custom Property of the current Field)

But I get Errors, so my question is, how to I address CustomProperties and how do I address the current field?

Thanks a lot
Dave
_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to