Re: Highlight list line on hover?

2011-05-13 Thread Keith Clarke
Thanks Jaque, I was aware of that button property but it wouldn't help to get a list field's row hilite to change with mouseover. But don't worry - whilst my learning continues, my problem has been solved! ;-) On 13 May 2011, at 17:56, J. Landman Gay wrote: > On 5/13/11 2:23 AM, Keith Clarke wr

Re: Highlight list line on hover?

2011-05-13 Thread J. Landman Gay
On 5/13/11 2:23 AM, Keith Clarke wrote: ...a thinko - nice! Given the use and definition of mouseover in other environments, perhaps it was more a repressed pseudonym feature request? There is already a property for mouseover, which I forgot about till now. If you set the hoverIcon on the but

Re: Highlight list line on hover?

2011-05-13 Thread Thomas McGrath III
This works here: on mouseOver answer "Cool" end mouseOver Oh yeah only if you have this as well on mouseWithin mouseOver end mouseWithin -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On May 13, 2011, at 6:58 AM, Björnke von Gierke wrote: > He probably meant mous

Re: Highlight list line on hover?

2011-05-13 Thread Björnke von Gierke
He probably meant mouseWithin? On 13 May 2011, at 09:23, Keith Clarke wrote: > ...a thinko - nice! > > Given the use and definition of mouseover in other environments, perhaps it > was more a repressed pseudonym feature request? > Best, > Keith.. > > On 12 May 2011, at 23:35, J. Landman Gay w

Re: Highlight list line on hover?

2011-05-13 Thread Keith Clarke
...a thinko - nice! Given the use and definition of mouseover in other environments, perhaps it was more a repressed pseudonym feature request? Best, Keith.. On 12 May 2011, at 23:35, J. Landman Gay wrote: > On 5/12/11 11:16 AM, Keith Clarke wrote: >> ...hmm, is mouseOver an undocumented feat

Re: Highlight list line on hover?

2011-05-12 Thread J. Landman Gay
On 5/12/11 11:16 AM, Keith Clarke wrote: ...hmm, is mouseOver an undocumented feature - it's not in the Dictionary? It's not a keyword, I think Richmond had a thinko. :) I'm prone to those myself. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

Re: Highlight list line on hover?

2011-05-12 Thread dunbarx
-- > From: John Dixon > To: use-livecode@lists.runrev.com > Sent: Thu, May 12, 2011 10:44 am > Subject: RE: Highlight list line on hover? > > > >> I just retried both John's and your scripts, to see if it was me... >> • John's does not affect the defa

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
...hmm, is mouseOver an undocumented feature - it's not in the Dictionary? On 12 May 2011, at 16:37, Richmond Mathewson wrote: > On 05/12/2011 03:52 PM, Keith Clarke wrote: >> Hi folks, >> I've found mouseEnter, mouseLine and Highlight in the dictionary but can't >> seem to get the syntax correc

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
...thanks Chris - I've added the screen lock/unlock (another first!), but I don't need to worry about long lines, because the list text Card names need to be visible in a fixed-width sidebar with no horizontal scrolling. So, I have... on mouseMove lock Screen set the hilitedlines of me t

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
- > From: John Dixon > To: use-livecode@lists.runrev.com > Sent: Thu, May 12, 2011 10:44 am > Subject: RE: Highlight list line on hover? > > > >> I just retried both John's and your scripts, to see if it was me... >> • John's does not affect

Re: Highlight list line on hover?

2011-05-12 Thread Richmond Mathewson
On 05/12/2011 03:52 PM, Keith Clarke wrote: Hi folks, I've found mouseEnter, mouseLine and Highlight in the dictionary but can't seem to get the syntax correct to highlight a line in a list field with a mouse hover, rather than a click. Any clues would be greatly appreciated. Best, Keith.. Hav

Re: Highlight list line on hover?

2011-05-12 Thread Ken Ray
s.runrev.com > Sent: Thu, May 12, 2011 10:44 am > Subject: RE: Highlight list line on hover? > > > >> I just retried both John's and your scripts, to see if it was me... >> • John's does not affect the default list field behaviour - the highlight > changes on

Re: Highlight list line on hover?

2011-05-12 Thread David Brooks
I'm the menu buttons guy -- whose problem remains unresolved. The menuhistory solves one problem, but not another. I decided to develop a workaround in which a button pops up a field that looks line a pulldown menu. The follwing script WORKS to hilite lines in a mouseover: on mouseWithin

Re: Highlight list line on hover?

2011-05-12 Thread dunbarx
slightly more robust, even though functionally indistinguishable. Craig Newman -Original Message- From: John Dixon To: use-livecode@lists.runrev.com Sent: Thu, May 12, 2011 10:44 am Subject: RE: Highlight list line on hover? > I just retried both John's and your scripts, to s

Re: Highlight list line on hover?

2011-05-12 Thread Nonsanity
select line (word 2 of the mouseline) of me That should work regardless of list behavior being on or off. If you use a mousewheel while hovering, the selection won't move until you move the mouse a little. I was tempted to add the same line to a scrolldrag handler, but that went crazy when the mou

RE: Highlight list line on hover?

2011-05-12 Thread John Dixon
> I just retried both John's and your scripts, to see if it was me... > • John's does not affect the default list field behaviour - the highlight > changes only on mouseDown. Keith, the highlight does not change on mouseDown, it changes when the mouse is over the line... the first line in the

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
man > > -Original Message----- > From: Keith Clarke > To: How to use LiveCode > Sent: Thu, May 12, 2011 9:12 am > Subject: Re: Highlight list line on hover? > > ...thanks Craig, but it doesn't track the mouse hover - Klaus nailed it with > tracking mouseMove

Re: Highlight list line on hover?

2011-05-12 Thread dunbarx
e Sent: Thu, May 12, 2011 9:12 am Subject: Re: Highlight list line on hover? ...thanks Craig, but it doesn't track the mouse hover - Klaus nailed it with tracking mouseMove to set highlightedLines. Best, Keith.. On 12 May 2011, at 14:02, dunb...@aol.com wrote: > How about: > >

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
...it's lucky that that's what I'm using then ;-) On 12 May 2011, at 14:11, Klaus on-rev wrote: > Addendum: > > Am 12.05.2011 um 15:01 schrieb Klaus on-rev: > >> Hi Keith, >> >>> Hi folks, >>> I've found mouseEnter, mouseLine and Highlight in the dictionary but can't >>> seem to get the synta

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
...thanks Craig, but it doesn't track the mouse hover - Klaus nailed it with tracking mouseMove to set highlightedLines. Best, Keith.. On 12 May 2011, at 14:02, dunb...@aol.com wrote: > How about: > > > > on mouseWithin > select the mouseLine > end mouseWithin > > > > > Craig Newman _

Re: Highlight list line on hover?

2011-05-12 Thread Klaus on-rev
Addendum: Am 12.05.2011 um 15:01 schrieb Klaus on-rev: > Hi Keith, > >> Hi folks, >> I've found mouseEnter, mouseLine and Highlight in the dictionary but can't >> seem to get the syntax correct to highlight a line in a list field with a >> mouse hover, rather than a click. >> Any clues would b

RE: Highlight list line on hover?

2011-05-12 Thread John Dixon
on mouseWithin if the mouseLine is empty then exit mouseWithin select the mouseLine end mouseWithin > Hi folks, > I've found mouseEnter, mouseLine and Highlight in the dictionary but can't > seem to get the syntax correct to highlight a line in a list field with a > mouse hover, rather

Re: Highlight list line on hover?

2011-05-12 Thread Keith Clarke
...great, thanks Klaus - that has fixed it! Best, Keith.. On 12 May 2011, at 14:01, Klaus on-rev wrote: > Hi Keith, > >> Hi folks, >> I've found mouseEnter, mouseLine and Highlight in the dictionary but can't >> seem to get the syntax correct to highlight a line in a list field with a >> mouse

Re: Highlight list line on hover?

2011-05-12 Thread dunbarx
How about: on mouseWithin select the mouseLine end mouseWithin Craig Newman -Original Message- From: Keith Clarke To: How to use LiveCode Sent: Thu, May 12, 2011 8:52 am Subject: Highlight list line on hover? Hi folks, I've found mouseEnter, mouseLine and Highlig

Re: Highlight list line on hover?

2011-05-12 Thread Klaus on-rev
Hi Keith, > Hi folks, > I've found mouseEnter, mouseLine and Highlight in the dictionary but can't > seem to get the syntax correct to highlight a line in a list field with a > mouse hover, rather than a click. > Any clues would be greatly appreciated. Use the "mousemove" message! Put this into

Highlight list line on hover?

2011-05-12 Thread Keith Clarke
Hi folks, I've found mouseEnter, mouseLine and Highlight in the dictionary but can't seem to get the syntax correct to highlight a line in a list field with a mouse hover, rather than a click. Any clues would be greatly appreciated. Best, Keith.. ___