auto searching technique
Lynch, Jonathan
bnz2 at cdc.gov
Thu Jan 19 16:47:44 EST 2006
There is a way you can do the same thing on keydown, rather than keyup,
to make it appear a bit more responsive:
Local lastkeys
On Keydown k
Send "Checkme k" to me in 0 seconds
Pass keydown
On checkme K
put k after lastkeys
put the long name of field "fruits" into thelist
set the hilitedline of thelist to (lineoffset(lastkeys&k, thelist)
send "clearme" to me in 3 seconds
end checkme
on clearme
put empty into lastkeys
end clearme
-----Original Message-----
From: use-revolution-bounces at lists.runrev.com
[mailto:use-revolution-bounces at lists.runrev.com] On Behalf Of MisterX
Sent: Thursday, January 19, 2006 4:31 PM
To: 'How to use Revolution'
Subject: RE: auto searching technique
Hi Devin
here's a quicky off the top of my stackhead ;)
-- card script or a field script where you type
local lastkeys
on keyup k
put k after lastkeys
put the long name of field "fruits" into thelist
set the hilitedline of thelist to (lineoffset(lastkeys&k, thelist)
send "clearme" to me in 3 seconds
end keyup
on clearme
put empty into lastkeys
end clearme
cheers
Xavier
http://monsieurx.com
> -----Original Message-----
> From: use-revolution-bounces at lists.runrev.com
> [mailto:use-revolution-bounces at lists.runrev.com] On Behalf Of
> Devin Asay
> Sent: Thursday, 19 January, 2006 20:38
> To: How to use Revolution
> Subject: auto searching technique
>
> I know this has been discussed before, but I'm not having any
> luck in the archives, and I can't reach Rev Online for some
> reason. :-(
>
> Has anyone developed a handler for doing an active search for
> a line in a combo box popup while typing in the combo box? So
> if my combo box contains a list like this, in alphabetical order:
>
> Apple
> Banana
> Cantelope
> Grape
> Kiwi
> Orange
> Peach
> Pear
> Pineapple
> Plum
> Raspberry
> Strawberry
> Watermelon
>
> And I start typing "p", the list pops up with the first item
> beginning with "p" hilited. Or more accurately, the first
> item beginning with 'p' with everything after 'p' hilited.
> Then as I continue to type "pi", Pineapple is (partially)
> highlighted. Sort of like auto-complete in a web browser url
> field or my Mail program's address field.
>
> I know this can be done, but it's eluding me at the moment.
>
> Devin
>
> Devin Asay
> Humanities Technology and Research Support Center Brigham
> Young University
>
> _______________________________________________
> 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
_______________________________________________
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