Scrolling List field
Ban Nguyen
bann at sunncomm.com
Mon Jul 11 15:22:42 EDT 2005
Thank you very much. It works
-----Original Message-----
From: use-revolution-bounces at lists.runrev.com
[mailto:use-revolution-bounces at lists.runrev.com] On Behalf Of Mark
Swindell
Sent: Monday, July 11, 2005 12:06 PM
To: How to use Revolution
Subject: Re: Scrolling List field
On Jul 11, 2005, at 11:16 AM, Ban Nguyen wrote:
> Thanks you for your help. It works. How can I transfer the value of
> clickline into a button so when user click on a button then it
> shows the
> value of clickline
You could put the clickline into a global variable (gClickVar) or
custom property (clickProp). When the user clicks on the button the
value of the variable (or custom property) would show at the location
of your choosing.
This would go into the field you click on:
On mouseUp
global gClickVar
put the clickline into gClickVar -- (or)
--set the clickProp of this card to the clickline
End mouseUp
This would go into the Button that places the value of the clickline
into a second field
On MouseUp
global gClickVar
put value(gClickVar) into field 2 -- or
--put the clickProp of this cd into field 2
end MouseUp
Hope this makes sense. There are probably other more elegant solutions.
Mark
_______________________________________________
use-revolution mailing list
use-revolution at lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your
subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
More information about the use-livecode
mailing list