Re: interesting conundrum...

2009-04-29 Thread Tereza Snyder
On Apr 29, 2009, at 12:09 PM, J. Landman Gay wrote: Cool. How'd you do that? Is it an image overlay? The whole thing is a patchwork of images & buttons that emulates a tab control. Colors switchable on demand. Looks/works the same on win & mac. I did a lot of this sort of thing a couple

Re: interesting conundrum...

2009-04-29 Thread J. Landman Gay
Tereza Snyder wrote: here's another: Cool. How'd you do that? Is it an image overlay? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: interesting conundrum...

2009-04-29 Thread Tereza Snyder
On Apr 28, 2009, at 9:33 AM, Richard Gaskin wrote: Here's an example of the sort of thing we can do today using emulated appearances: here's another: -- Tereza Snyder Califex Software, Inc. _

Re: interesting conundrum...

2009-04-28 Thread Richard Gaskin
David Bovill wrote: Lets get some more votes for it - Robert you enhancement request is the same as: - http://quality.runrev.com/qacenter/show_bug.cgi?id=5888 I've voted for both :) A message providing notification of a single property is a subset of the one I'd suggested: getProp and

Re: interesting conundrum...

2009-04-28 Thread David Bovill
Lets get some more votes for it - Robert you enhancement request is the same as: - http://quality.runrev.com/qacenter/show_bug.cgi?id=5888 I've voted for both :) 2009/4/28 Robert Brenstein > On 27.04.09 at 19:02 -0500 Chipp Walters apparently wrote: > >> I'm working on my custom scroller l

Re: interesting conundrum...

2009-04-28 Thread Robert Brenstein
On 27.04.09 at 19:02 -0500 Chipp Walters apparently wrote: I'm working on my custom scroller library. I want to trap a message anytime the text in a field is changed via script. To my knowledge, there is no way to do this using a built-in Rev message. In otherwords, of course openField, closeFie

Re: interesting conundrum...

2009-04-28 Thread Richard Gaskin
Chipp Walters wrote: Funny story. All of a sudden my fields in my Matrix project quit reacting to the mouse scroll wheel. The thing is, this particular project has tons of scrolling fields, but none of the vscrollbars are shown, as they use my custom color schemed implementation of scroll bars--

Re: interesting conundrum...

2009-04-27 Thread Chipp Walters
Hi Richard, not sure how rawKeyDown works for this as the text in a field is changed via script, not a keypress. Yes, the setProp for built-in properties would do just fine, Or as Scott mentioned a textChanged message. Funny story. All of a sudden my fields in my Matrix project quit reacting to th

Re: interesting conundrum...

2009-04-27 Thread Scott Rossi
List ReplyTo: Revolution Mail List Subject: interesting conundrum... Sent: Apr 27, 2009 5:02 PM I'm working on my custom scroller library. I want to trap a message anytime the text in a field is changed via script. To my knowledge, there is no way to do this using a built-in Rev message. In

RE: interesting conundrum...

2009-04-27 Thread Jim Bufalini
: use-revolution-boun...@lists.runrev.com [mailto:use-revolution- > boun...@lists.runrev.com] On Behalf Of Andre Garzia > Sent: Monday, April 27, 2009 4:08 PM > To: How to use Revolution > Subject: Re: interesting conundrum... > > trapping rawkeydown in a frontscript, that is a

Re: interesting conundrum...

2009-04-27 Thread Andre Garzia
trapping rawkeydown in a frontscript, that is a nice hack! also you kidnap all menu calls! :D On Mon, Apr 27, 2009 at 10:30 PM, Richard Gaskin wrote: > Chipp Walters wrote: > >> Nope, won't work. The library is supposed to work on any field in any >> stack. >> > > Short term (I know you'll love

Re: interesting conundrum...

2009-04-27 Thread Terry Judd
Right - then I don't see how you could do it without regularly polling the field and checking to see whether the formattedheight had changed. Not a very satisfactory solution. Terry... On 28/04/09 11:24 AM, "Chipp Walters" wrote: > Terry, > Nope, won't work. The library is supposed to work on

Re: interesting conundrum...

2009-04-27 Thread Richard Gaskin
Chipp Walters wrote: Nope, won't work. The library is supposed to work on any field in any stack. Short term (I know you'll love this ): use a frontScript with a filter to trap rawKeyDown and update some global whenever the key event is modifying a field. Long term: getProp and setProp for

Re: interesting conundrum...

2009-04-27 Thread Chipp Walters
Terry, Nope, won't work. The library is supposed to work on any field in any stack. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.run

Re: interesting conundrum...

2009-04-27 Thread Terry Judd
What about using a custom property as an intermediate (i.e. the script modifies the custom property rather than the field directly). That way you could use a setprop handler to set the field text and activate your scroller. Terry... On 28/04/09 10:02 AM, "Chipp Walters" wrote: > I'm working on

interesting conundrum...

2009-04-27 Thread Chipp Walters
I'm working on my custom scroller library. I want to trap a message anytime the text in a field is changed via script. To my knowledge, there is no way to do this using a built-in Rev message. In otherwords, of course openField, closeField, exitField don't work as there's no clicking going on by t