Hi Jason,

Hi Jonathan,

Thanks for your script!  I think I see where you're going with it
(though the second line is still a little confusing; I'm still grasping
when to use "me" and/or "target").

What I'm doing instead is using graphics for checkboxes.  So, in my if
statement, I'm checking as follows:

if the imageSource of char 1 of line currentLine of field "List Items"
is "Checkbox Empty" then
set the imageSource of char 1 of line currentLine of field "List
Items" to "Checkbox Filled"
else if the imageSource of char 1 of line currentLine of field "List
Items" is "Checkbox Filled" then
set the imageSource of char 1 of line currentLine of field "List
Items" to "Checkbox Empty"
end if

since there are only 2 options with checkboxes, you can even shorten your script a bit ;-)


if the imageSource of char 1 of line currentLine of field "List Items" = "Checkbox Empty" then
set the imageSource of char 1 of line currentLine of field "List Items" to "Checkbox Filled"
else
set the imageSource of char 1 of line currentLine of field "List Items" to "Checkbox Empty"
end if



Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

_______________________________________________
use-revolution mailing list
[email protected]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to