Hi Len,

It may be that you could trap the opencard message further back in your stack 
script and always update the field values based on the card name like this...

on opencard
put the short name of this card into fld "title"
put the myCustomAttribute of this card into fld "someOtherInfo"
pass opencard
end opencard

If you have cards that don't have the fields to be updated inthe stack just put 
an if statement around the put statement/s like this...

on opencard
 if there is a fld "title"
 then
 put the short name of this card into fld "title"
 put the myCustomAttribute of this card into fld "someOtherInfo"
 end if
pass opencard
end opencard

Regards

John

>
>Is there a currentCard property or function I can use? I'm going to 
>have an updateFields handler on each card that will update only the data 
>on that card.
>
>Any ideas?
>
>Thanks!
>
>Len Morgan
>_______________________________________________
>use-revolution mailing list
>[email protected]
>Please visit this url to subscribe, unsubscribe and manage your subscription 
>preferences:
>http://lists.runrev.com/mailman/listinfo/use-revolution
>

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to