Re: Tabbing out of a text field

2010-10-22 Thread Bob Sneidar
Aye, but I was hitting return in an empty scrolling field. Bob On Oct 21, 2010, at 4:19 PM, J. Landman Gay wrote: On 10/21/10 6:10 PM, Bob Sneidar wrote: Well this is interesting: Even if a scrolling field has tab on return set, it inserts a cr when you hit return. On a regular field it

Re: Tabbing out of a text field

2010-10-22 Thread Bob Sneidar
NVM just read your last sentence. I suppose then that the autoTab property for scrolling fields should be disabled, or invisible in the inspector. No big deal. Bob On Oct 21, 2010, at 4:19 PM, J. Landman Gay wrote: On 10/21/10 6:10 PM, Bob Sneidar wrote: Well this is interesting: Even if

Tabbing out of a text field

2010-10-21 Thread RevList
I am having a bit of a brain fart. How do I set a text field so that when I press the TAB key, it tabs to the next field rather than adding a Tab character to the text field? Thanks in advance Stewart ___ use-revolution mailing list use-revolution

Re: Tabbing out of a text field

2010-10-21 Thread DunbarX
You could trap the tabKey message. Craig Newman ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Tabbing out of a text field

2010-10-21 Thread RevList
Craig Newman on October 21, 2010 at 1:45 PM -0700 wrote: You could trap the tabKey message. There has to be something else. I am looking at an earlier project that I developed and I have a field that when I press TAB, I am moved on to the next field, just as if I had pressed Return. I see no

Re: Tabbing out of a text field

2010-10-21 Thread Devin Asay
On Oct 21, 2010, at 4:02 PM, RevList wrote: Craig Newman on October 21, 2010 at 1:45 PM -0700 wrote: You could trap the tabKey message. There has to be something else. I am looking at an earlier project that I developed and I have a field that when I press TAB, I am moved on to the next

Re: Tabbing out of a text field

2010-10-21 Thread J. Landman Gay
On 10/21/10 5:02 PM, RevList wrote: I want to have fields that have one line of entry only and when you press Tab, it moves on to the next field. I have set the field to be Tab on Return so that traps the return key, but pressing TAB, adds a tab to text. In my earlier project it just moves on.

Re: Tabbing out of a text field

2010-10-21 Thread Bob Sneidar
Well this is interesting: Even if a scrolling field has tab on return set, it inserts a cr when you hit return. On a regular field it tabs. So what property visible from the property inspector corresponds to this behavior? Obviously not the tab on return! Bob On Oct 21, 2010, at 3:41 PM, J.

Re: Tabbing out of a text field

2010-10-21 Thread J. Landman Gay
On 10/21/10 6:10 PM, Bob Sneidar wrote: Well this is interesting: Even if a scrolling field has tab on return set, it inserts a cr when you hit return. On a regular field it tabs. So what property visible from the property inspector corresponds to this behavior? Obviously not the tab on return!

Re: Tabbing out of a text field

2010-10-21 Thread Mark Wieder
Jacque- Thursday, October 21, 2010, 4:19:59 PM, you wrote: Tab on return (i.e., autoTab) only happens when you are on the last line of the field. So in a 3-line field, a return key will only tab to the next field if the cursor is on line 3, otherwise it inserts a carriage return. Scrolling

Re: Tabbing out of a text field

2010-10-21 Thread J. Landman Gay
On 10/21/10 7:07 PM, Mark Wieder wrote: Jacque- Thursday, October 21, 2010, 4:19:59 PM, you wrote: Tab on return (i.e., autoTab) only happens when you are on the last line of the field. So in a 3-line field, a return key will only tab to the next field if the cursor is on line 3, otherwise it

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-04 Thread Ian Wood
Votes added. Ian On 4 Mar 2010, at 00:37, Richard Gaskin wrote: This inconsistency seems worth addressing, since doing so has practical application as you've noted, so I logged it as a request: http://quality.runrev.com/qacenter/show_bug.cgi?id=8645

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-04 Thread Peter Brigham MD
On Mar 3, 2010, at 7:37 PM, Richard Gaskin wrote: Ian Wood wrote: I just had a quick try but can't see how to apply a backgroundpattern to anything less than the whole field. Mea culpa. According to the dictionary RevTalk allows backgroundColor for chunks, and backgroundPattern for

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-04 Thread Ian Wood
On 4 Mar 2010, at 12:42, Peter Brigham MD wrote: Is this one of those why not just do it, looks simple things that runs into the apparently huge complexity of the field object? Which I seem to recall Scott Raney describing as the monster it terms of complexity. That could well be.

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-04 Thread Richard Gaskin
Peter Brigham wrote: On Mar 3, 2010, at 7:37 PM, Richard Gaskin wrote: ... According to the dictionary RevTalk allows backgroundColor for chunks, and backgroundPattern for fields, and textPattern/ foregroundPattern for chunks, so I was a little optimistic about the orthogonality of the

Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood
text field plus graphics built into a scrolling group to be able to 'fake' putting the red underlining. Again, has anyone attempted this before? Cheers, Ian ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Scott McDonald
Ian, Ian Wood-3 wrote: Thanks for the suggestions, everyone. It would certainly save me a lot of time if this could be done in Rev, so maybe it's time to look from a different direction - how do we make a Rev field as OS X-like as possible. I understand why the RRP SpellCheck

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Richard Gaskin
Scott McDonald wrote: But you are right, the Rev field is not native enough for your users. For example, the way of marking unknown words when doing the contextual check was something I thought about a lot during the design. anything but dashed red underlining is going to leap out While

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood
On 3 Mar 2010, at 21:24, Scott McDonald wrote: I understand why the RRP SpellCheck doesn't meet your needs, and you have certainly made several comments that give me ideas to work on. Thanks for taking the in the way it was meant! That's partly why I changed the direction towards ways of

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood
I just had a quick try but can't see how to apply a backgroundpattern to anything less than the whole field. Do you have some example syntax for setting it for part of a field? Ian On 3 Mar 2010, at 22:03, Richard Gaskin wrote: Have you tried a transparent GIF or PNG with the dash near the

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Bob Sneidar
Concur. Text chunks cannot have that property. Bob On Mar 3, 2010, at 3:33 PM, Ian Wood wrote: I just had a quick try but can't see how to apply a backgroundpattern to anything less than the whole field. Do you have some example syntax for setting it for part of a field? Ian On 3

Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Richard Gaskin
Ian Wood wrote: I just had a quick try but can't see how to apply a backgroundpattern to anything less than the whole field. Mea culpa. According to the dictionary RevTalk allows backgroundColor for chunks, and backgroundPattern for fields, and textPattern/foregroundPattern for chunks, so I

Re: 4.0 not displaying text field changes

2009-12-28 Thread Kee Nethery
Thank you Mark! That was the secret to making the field changes appear. Kee On Dec 27, 2009, at 9:27 AM, Mark Schonewille wrote: wait 0 millisec with messages - I check email roughly 2 to 3 times per business day. Kagi main office: +1 (510)

4.0 not displaying text field changes

2009-12-27 Thread Kee Nethery
This kind of thing worked fine in 2.9.x but does not in 4.0. I've got a new 4.0 stack that has a bunch of repeat loops within repeat loops. For a small example: repeat with w = 1 to 1000 repeat with x = 1 to 1000 repeat with y = 1 to 1000 repeat with z = 1 to 1000 put A w

Re: 4.0 not displaying text field changes

2009-12-27 Thread Mark Schonewille
Hi Kee, This changed when the graphics engine was made more efficient (I think). Try this: repeat with w = 1 to 1000 repeat with x = 1 to 1000 repeat with y = 1 to 1000 repeat with z = 1 to 1000 with messages put A w x y z into field status wait 0 millisec with

Setting Playloudness was Re: 4.0 not displaying text field changes

2009-12-27 Thread Jim Lambert
Mark noted that it is now necessary under Rev = 4.0 to insert wait 0 millisec with messages into repeat loops in order to see any changes made to a field. I have found this is also needed when changing playloudness like this: on fadeSounds set the playloudness to cLoud wait 0

Re: Drag images into text field

2009-06-10 Thread Richmond Mathewson
: Hi, I need dragdrop some images into a text field. The question is drop the images (little icons) between words into one text field. I dragdrop from a web page that have the text with the images, but when drop into a text field only the text part is dropped. So the images I think

Re: Drag images into text field

2009-06-10 Thread Mike Markkula
hopeless re drag-and-drop. On Wed, Jun 10, 2009 at 3:47 AM, Josep jmye...@mac.com wrote: Hi, I need dragdrop some images into a text field. The question is drop the images (little icons) between words into one text field. I dragdrop from a web page that have the text with the images

Drag images into text field

2009-06-09 Thread Josep
Hi, I need dragdrop some images into a text field. The question is drop the images (little icons) between words into one text field. I dragdrop from a web page that have the text with the images, but when drop into a text field only the text part is dropped. So the images I think that was drop

Re: How to put the text of several TXT files in just one text field with a single mouseclick?

2009-02-05 Thread Mark Smith
text field with just one mouseclick. I know how to do this with one .TXT file but not with say 30 files. And all these files have different names. Any idea's or scripts are welcome! Greetings, William ___ use-revolution mailing list use-revolution

How to put the text of several TXT files in just one text field with a single mouseclick?

2009-02-05 Thread William de Smet
Hi there, Say I have several .TXT files in a directory and I want the contents of them all to be shown in just one text field with just one mouseclick. I know how to do this with one .TXT file but not with say 30 files. And all these files have different names. Any idea's or scripts are welcome

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-14 Thread J. Landman Gay
Sarah Reichelt wrote: On Wed, Jan 14, 2009 at 10:21 AM, Kay C Lan lan.kc.macm...@gmail.com wrote: On Wed, Jan 14, 2009 at 7:30 AM, J. Landman Gay jac...@hyperactivesw.comwrote: Sarah Reichelt wrote: put the rect of fld My Field into tRect add 10 to item 3 of tRect set the rect of fld My

Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Ron Toledo
side are to automatically resize in width. I'm experimenting with just the left text field and grabber icon at this time. My current challenge is that when I drag the grabber, the text field on the left resizes in width-- however, it resizes from its centerpoint outwards. Ideally, I would want

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Scott Rossi
, the two fields on either side are to automatically resize in width. I'm experimenting with just the left text field and grabber icon at this time. My current challenge is that when I drag the grabber, the text field on the left resizes in width-- however, it resizes from its centerpoint outwards

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread J. Landman Gay
fields, the two fields on either side are to automatically resize in width. I'm experimenting with just the left text field and grabber icon at this time. My current challenge is that when I drag the grabber, the text field on the left resizes in width-- however, it resizes from its centerpoint

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Sarah Reichelt
I'm experimenting with just the left text field and grabber icon at this time. My current challenge is that when I drag the grabber, the text field on the left resizes in width-- however, it resizes from its centerpoint outwards. Ideally, I would want the text field's XY coordinates

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Ron Toledo
Reichelt sarah.reich...@gmail.comwrote: I'm experimenting with just the left text field and grabber icon at this time. My current challenge is that when I drag the grabber, the text field on the left resizes in width-- however, it resizes from its centerpoint outwards. Ideally, I would

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread J. Landman Gay
Sarah Reichelt wrote: Here is an example which increases the width of a field by 10 pixels, while keeping the topLeft of the field in the same place: put the rect of fld My Field into tRect add 10 to item 3 of tRect set the rect of fld My Field to tRect I just *knew* you were hanging out in

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Kay C Lan
On Wed, Jan 14, 2009 at 7:30 AM, J. Landman Gay jac...@hyperactivesw.comwrote: Sarah Reichelt wrote: put the rect of fld My Field into tRect add 10 to item 3 of tRect set the rect of fld My Field to tRect I just *knew* you were hanging out in my head again, Sarah. ;) It's the time lag

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Sarah Reichelt
On Wed, Jan 14, 2009 at 10:21 AM, Kay C Lan lan.kc.macm...@gmail.com wrote: On Wed, Jan 14, 2009 at 7:30 AM, J. Landman Gay jac...@hyperactivesw.comwrote: Sarah Reichelt wrote: put the rect of fld My Field into tRect add 10 to item 3 of tRect set the rect of fld My Field to tRect I

Re: Resizing a Text Field Dynamically, While Locking Its XY Coordinates

2009-01-13 Thread Mark Wieder
Ron- Tuesday, January 13, 2009, 3:27:51 PM, you wrote: What I like is how few lines of code can give one just the results desired. When I tried the Rect property and it worked perfectly, it was like magic! Very cool, indeed. But be aware that if you start messing with the rect values *and*

Re: Spell check in a text field (how do I)

2008-12-12 Thread Ken Ray
What are some of the ways I can write a stack which has spellchecking for the users in the text fields? I have Rev 3.0 Studio (XP) and will deploy on windows. Thanks folks! Hugh Senior wrote one: http://www.flexiblelearning.com/xtalk.htm Click on SpellChecker under Utilities. Ken

Spell check in a text field (how do I)

2008-12-11 Thread Jim Schaubeck
What are some of the ways I can write a stack which has spellchecking for the users in the text fields? I have Rev 3.0 Studio (XP) and will deploy on windows. Thanks folks! Jim... ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: Spell check in a text field (how do I)

2008-12-11 Thread DunbarX
I wrote a spell checker once in HC. I kept a dictionary (265,000 words) in a separate file. I loaded that file into memory and did a search for each word in my text. If a word found no match in the dictionary, I was notified. My program suggested nearby possible words based on slight

Re: Spell check in a text field (how do I)

2008-12-11 Thread Scott Morrow
Hello Jim, I'm no expert on spell checking but when I needed a cross-platform spell checker written in rev I broke the problem into 3 parts. 1. A UI for interacting with the spell checker 2. A word checker that walks through the given text, word at a time, checking to see if they are in

Text Field Woes

2008-08-22 Thread len-morgan
I'm trying to read a web page and extract data from it. I can read the page ok and put the text in a variable. I can parse and remove most of the extraneous stuff (TD.../TD etc.). Where I'm having a problem is when I put the digested information into a field to check it, each line is in a 3

Text Field Woes

2008-08-22 Thread Mark Stuart
Hi Len, You wrote: Is there some way to suppress the display of data as html so that I get REAL carriage returns or something I can work with? I too had issues with parsing html text, and the following threads may help you on this. Look for the threads: Removing CRLF from text Start

Re: Text Field Woes

2008-08-22 Thread Bernard Devlin
I'm not sure what the problem is here. Can you provide a sample URL and the basic transcript of the code you are using so we can see where it is going wrong. It sounds to me like your process of 'digesting' the text might be causing the problem. I just found a web page with currencies on it

Re: Can a text field have multiple lines inside a table cell?

2008-01-05 Thread Jim Ault
On 1/4/08 9:29 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Can anyone tell me if it's possible to have multiple lines inside a table cell?? I'm presently using a table field object, and putting data into that field object via: set the HTMLtext of field picklist to datafromURL And I've

Can a text field have multiple lines inside a table cell?

2008-01-04 Thread rgould8
Can anyone tell me if it's possible to have multiple lines inside a table cell?? I'm presently using a table field object, and putting data into that field object via: set the HTMLtext of field picklist to datafromURL And I've love it if I could make the text in the left-most column wrap to 2

Re: Standalone Text Field problem for WindowsXP

2007-12-09 Thread Ken Ray
On Fri, 7 Dec 2007 23:40:24 -0800, Joe Lewis Wilkins wrote: As it turns out, much of the missing text is actually there. It just can't be seen. I thought it might be that the color for the text was being set to white, but that isn't the problem. The Menu hot keys work, but the menus

Re: Standalone Text Field problem for WindowsXP

2007-12-09 Thread Joe Lewis Wilkins
Hi Ken, I believe I mentioned in a subsequent posting that what you suggest WAS the case; however, fixing that still did not fully resolve the problem. My biggest question regarding that subject is: How in the devil did the menubar get way up there in the first place? I sure didn't put

Re: Standalone Text Field problem for WindowsXP

2007-12-07 Thread Joe Lewis Wilkins
As it turns out, much of the missing text is actually there. It just can't be seen. I thought it might be that the color for the text was being set to white, but that isn't the problem. The Menu hot keys work, but the menus themselves are still invisible. Frankly, I'm stumped. Joe Wilkins

Standalone Text Field problem for WindowsXP

2007-12-07 Thread Joe Lewis Wilkins
Well, I'm back after a considerable hiatus, and have some new plans for Revolution articles on the Macinstruct.com website. First, however, I need to wrap up the application that was in the mill when I dropped out of the list. I finally got a Mac Pro with the 30 Apple Display that allows

Text field bug?

2006-11-06 Thread Devin Asay
This is a bizarre problem in which the text of a field gets replaced by the text from another field. It appears to be related to keyboard focus. I have only been able to reproduce in Rev Studio 2.7.4 build 291 on an iMac G5 running 10.4.8. It couldn't make it happen on my Dual 2GHz G5

Re: Text field bug?

2006-11-06 Thread Dar Scott
On Nov 6, 2006, at 1:54 PM, Devin Asay wrote: Recipe: Create a new mainstack. Create 2 new text entry fields and name them. I'll use george and sally. Open the script editor for field sally. Type some contents into fld george. Type some contents into fld sally. Open the property inspector

Re: Text field bug?

2006-11-06 Thread Devin Asay
On Nov 6, 2006, at 2:15 PM, Dar Scott wrote: On Nov 6, 2006, at 1:54 PM, Devin Asay wrote: Recipe: Create a new mainstack. Create 2 new text entry fields and name them. I'll use george and sally. Open the script editor for field sally. Type some contents into fld george. Type some

Re: Text field bug?

2006-11-06 Thread Jim Ault
Caution when using inspector palettes! If you are editing, say the 'contents' drop down or the 'custom properties' drop down, then change the focus of the object being inspected, always change the pop up menu to another choice, then back to the original choice. This becomes obvious if you are

Text Field Statistics script

2006-06-14 Thread Salinas, Ruben
I'm a pretty new user of RunRev and wanted to know whether anybody has a slick script (or ideas for one) to calculate the following for a text field: 1. Total number of words in the text field 2. Total number of Paragraphs in the text field 3. Total number of Sentences

Re: Text Field Statistics script

2006-06-14 Thread Klaus Major
Hi Ruben, I'm a pretty new user of RunRev and wanted to know whether anybody has a slick script (or ideas for one) to calculate the following for a text field: OK, lets see: 1. Total number of words in the text field the number of words of fld xyz 2. Total number

Text Field Statistics script

2006-06-14 Thread rubensalinas
I’m a pretty new user of RunRev and wanted to know whether anybody has a slick script (or ideas for one) to calculate the following for a text field: 1. Total number of words in the text field 2. Total number of Paragraphs in the text field 3. Total number of Sentences

Re: Text Field Statistics script

2006-06-14 Thread Brian Yennie
Here are some rough ideas to get you started. 1. Total number of words in the text field put the number of words in fld myField into numWords 2. Total number of Paragraphs in the text field You would have to define what constitutes a paragraph, but, for example: ## carriage

arggh... what handler to use on an unlocked text field?

2006-04-17 Thread Josh Mellicker
I understand that mouseUp and mouseDown messages don't work on an unlocked text field... so how do you trigger a script when the user clicks in the field? I could make them double-click, or right click... but I can't get any handler to go... : ( I'm trying to avoid stuff that generates

Re: arggh... what handler to use on an unlocked text field?

2006-04-17 Thread Phil Davis
Josh Mellicker wrote: I understand that mouseUp and mouseDown messages don't work on an unlocked text field... so how do you trigger a script when the user clicks in the field? Hi Josh - on openField -- your stuff here end openField It also gets triggered when they tab into the field

Re: arggh... what handler to use on an unlocked text field?

2006-04-17 Thread Josh Mellicker
of tChunk = word 2 of tChunk then exit selectionChangedd put the linktext of the selection into tLink revGoUrl tLink end selectionChanged On Apr 17, 2006, at 4:20 PM, Josh Mellicker wrote: I understand that mouseUp and mouseDown messages don't work on an unlocked text field... so how do

Re: arggh... what handler to use on an unlocked text field?

2006-04-17 Thread Josh Mellicker
Thanks Phil! On Apr 17, 2006, at 4:25 PM, Phil Davis wrote: Josh Mellicker wrote: I understand that mouseUp and mouseDown messages don't work on an unlocked text field... so how do you trigger a script when the user clicks in the field? Hi Josh - on openField -- your stuff here end

How to allow only single line into text field (instead of mutliple line)

2006-01-25 Thread MITTAL Pradeep Kumar
Hello, When I create a text field in the rev, then one can enter the mutliple lines in the text field by using enter key. Can anyone tell me what to configure so that text filed allow only one line of text ? Thanks for your help Best Regards Pradeep

RE: How to allow only single line into text field (instead of mutliple line)

2006-01-25 Thread MITTAL Pradeep Kumar
To: 'use-revolution@lists.runrev.com' Cc: DAHIYA Nitesh; JAMKAR Kapil Subject: How to allow only single line into text field (instead of mutliple line) Hello, When I create a text field in the rev, then one can enter the mutliple lines

Re: How to allow only single line into text field (instead of mutliple line)

2006-01-25 Thread Pierre Sahores
bye pradeep -Original Message- From: MITTAL Pradeep Kumar Sent: Wednesday, January 25, 2006 8:12 PM To: 'use-revolution@lists.runrev.com' Cc: DAHIYA Nitesh; JAMKAR Kapil Subject: How to allow only single line into text field (instead

Re: How to allow only single line into text field (instead of mutliple line)

2006-01-25 Thread Jeff Hudson
I just ran into this. In basic properties I turned on TAB on return. This made both the return and the enter more to the next text field. Jeff On Jan 25, 2006, at 1:12 PM, MITTAL Pradeep Kumar wrote: Hello, When I create a text field in the rev, then one can enter the mutliple lines

Re: How to allow only single line into text field (instead of mutliple line)

2006-01-25 Thread Jonathan Lynch
-Original Message- From: MITTAL Pradeep Kumar Sent: Wednesday, January 25, 2006 8:12 PM To: 'use-revolution@lists.runrev.com' Cc: DAHIYA Nitesh; JAMKAR Kapil Subject: How to allow only single line into text field (instead of mutliple line

Text Field Effect

2005-10-23 Thread Scott Rossi
Greetings List: I just posted a stack that demonstrates an unusual effect you can apply to text fields. The stack is very large (1.8MB) as it does some very intense calculations, but you're welcome to give it a try. http://www.tactilemedia.com/download/effect.rev.zip Important: *requires*

Re: Text Field Effect

2005-10-23 Thread Malte Brill
Hey Scott, I often wished I could do that before. Thanks for sharing. :-) Malte Greetings List: I just posted a stack that demonstrates an unusual effect you can apply to text fields. The stack is very large (1.8MB) as it does some very intense calculations, but you're welcome to give it

Re: Text Field Effect

2005-10-23 Thread J. Landman Gay
Scott Rossi wrote: Greetings List: I just posted a stack that demonstrates an unusual effect you can apply to text fields. The stack is very large (1.8MB) as it does some very intense calculations, but you're welcome to give it a try. Cute. But I see far more applications for this than just

Re: Text Field Effect

2005-10-23 Thread Scott Rossi
Recently, J. Landman Gay wrote: I just posted a stack that demonstrates an unusual effect you can apply to text fields. The stack is very large (1.8MB) as it does some very intense calculations, but you're welcome to give it a try. Cute. But I see far more applications for this than just

Re: Text Field Effect

2005-10-23 Thread Troy Rollins
On Oct 23, 2005, at 6:56 PM, Scott Rossi wrote: Actually, the description was intended more as Sunday geek humor on my part. There's no special calculations going on nor does the effect have anything to do with text fields. The stack just shows some fun with windowshapes. That's too

Re: Text Field Effect

2005-10-23 Thread J. Landman Gay
Scott Rossi wrote: Recently, J. Landman Gay wrote: I just posted a stack that demonstrates an unusual effect you can apply to text fields. The stack is very large (1.8MB) as it does some very intense calculations, but you're welcome to give it a try. Cute. But I see far more applications

colors in scrolling text field

2005-08-23 Thread Jon
I am creating a scrolling log of program activities, and want to color code the output so that normal events are black or green, but problems are shown in red. I played with setting colors in a regular field, and the colors seem to stick to the field positions, rather than moving with the

Re: colors in scrolling text field

2005-08-23 Thread Eric Chatonet
Hi Jon, Le 23 août 05 à 23:18, Jon a écrit : I am creating a scrolling log of program activities, and want to color code the output so that normal events are black or green, but problems are shown in red. I played with setting colors in a regular field, and the colors seem to stick to

Re: colors in scrolling text field

2005-08-23 Thread Mark Wieder
Jon- Tuesday, August 23, 2005, 2:18:38 PM, you wrote: Am I trying to do something that is not possible in Rev, or am I just not clear on how to accomplish this? I know that HTML support is somehow built into parts of Rev: would using font color=green work? I tried it, and it did not work

Re: colors in scrolling text field

2005-08-23 Thread Jon
Eric: Your response is, as usual, excellent. Except that, as I said, I did try putting HTML into a scrolling field, and all I got was the typical HTML garbage on the screen; the HTML commands were not interpreted correctly. Do I have to put the HTML someplace special, or enable it somehow?

Re: colors in scrolling text field

2005-08-23 Thread Jon
Mark: Silly me: I did not think of line -1. Still learning... Thanks! :) Jon Mark Wieder wrote: Jon- Tuesday, August 23, 2005, 2:18:38 PM, you wrote: Am I trying to do something that is not possible in Rev, or am I just not clear on how to accomplish this? I know that HTML support

Re: colors in scrolling text field

2005-08-23 Thread Ken Ray
On 8/23/05 4:58 PM, Jon [EMAIL PROTECTED] wrote: Your response is, as usual, excellent. Except that, as I said, I did try putting HTML into a scrolling field, and all I got was the typical HTML garbage on the screen; the HTML commands were not interpreted correctly. Do I have to put the

Re: text field

2005-06-10 Thread Eric Chatonet
Hi Tarek, Le 10 juin 05 à 04:14, tarek a écrit : how to make a text field a password field, where characters are asterisks. The answers you had from others are right. But if you want to use a field to simulate a login/pasword dialog, you might be interested by my how-to stack #012 How

password text field

2005-06-10 Thread tarek
Hi, how to make a text field a password field, where characters are asterisks. thanks, -- tarek ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

text field

2005-06-09 Thread tarek
Hi, how to make a text field a password field, where characters are asterisks. thanks, -- tarek ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com/mailman/listinfo/use-revolution

Re: text field

2005-06-09 Thread Sarah Reichelt
how to make a text field a password field, where characters are asterisks. thanks, The only built-in way to get password entry is using the answer password command. However if you want to allow people to enter passwords into a field, then you need to script the data entry yourself

Re: text field

2005-06-09 Thread Dan Shafer
You'll want to use a dialog rather than a text field. ask password is the key. On Jun 9, 2005, at 7:14 PM, tarek wrote: Hi, how to make a text field a password field, where characters are asterisks. thanks, -- tarek ___ use-revolution

Text-field validation

2004-11-24 Thread Lince m lawrence
What should I do the validate a Text-field for only numbers (including decimals)? When I used if theKey is not a number then this returns false for decimals. I need to turn it true. I am just a day old with rev (and this is my first step with programming). Please help. Thanks, Lince M

Re: Text-field validation

2004-11-24 Thread Jan Schenkel
--- Lince m lawrence [EMAIL PROTECTED] wrote: What should I do the validate a Text-field for only numbers (including decimals)? When I used if theKey is not a number then this returns false for decimals. I need to turn it true. I am just a day old with rev (and this is my first step

Re: How to create a list of images stored in a MySQL database in a text field

2004-11-05 Thread Jan Schenkel
to this on the list, I thought I'd give you some advice (better late than never, right ?) Text field images are either stored in the stack and refered to by their ID or name, or are external to your stack and refered to by a URL (http or file) So if the data is stored in a MySQL database, you'll have to take two

Re: How to create a list of images stored in a MySQL database in a text field

2004-11-05 Thread Jérôme Rosat
an idea ? Thank you for you help. Jérôme Rosat Bonjour Jérôme, As I don't recall seeing a reply to this on the list, I thought I'd give you some advice (better late than never, right ?) Text field images are either stored in the stack and refered to by their ID or name, or are external to your stack

How to create a list of images stored in a MySQL database in a text field

2004-10-31 Thread Jérôme Rosat
Hi all, I would like to create a list field containing in each row an image, its number and its name. The image size should make 16 X 16 pixels. I imagine I should first: - open a connection to my DB - execute a SQL query to select all rows of the table. I think I should use the imageSource

Re: arrow keys in a text field?

2004-09-14 Thread Geoff Canyon
I have a rawKeyUp handler to allow scrollbars to appear/disappear as the content overflows the field, but it passes all inputs. TabGroupBehavior turned out to be the culprit. I don't know how it was set to true, but it was. Now all is well. Thanks! regards, Geoff Canyon [EMAIL PROTECTED] On

Re: arrow keys in a text field?

2004-09-13 Thread Geoff Canyon
On Sep 12, 2004, at 5:52 PM, Richard Gaskin wrote: Geoff Canyon wrote: I'm using 2.5 and I have a palette where the arrow keys aren't working in a field. I've already checked that the appropriate properties are set, and the arrow keys work if I move the field out of the group it's in. I

Re: arrow keys in a text field?

2004-09-13 Thread J. Landman Gay
On 9/13/04 2:58 AM, Geoff Canyon wrote: On Sep 12, 2004, at 5:52 PM, Richard Gaskin wrote: Geoff Canyon wrote: I'm using 2.5 and I have a palette where the arrow keys aren't working in a field. I've already checked that the appropriate properties are set, and the arrow keys work if I move the

Re: arrow keys in a text field?

2004-09-13 Thread David Vaughan
On 13/09/2004, at 22:12, Geoff Canyon [EMAIL PROTECTED] wrote: I'm using 2.5 and I have a palette where the arrow keys aren't working in a field. I've already checked that the appropriate properties are set, and the arrow keys work if I move the field out of the group it's in. I remember there

arrow keys in a text field?

2004-09-12 Thread Geoff Canyon
I'm using 2.5 and I have a palette where the arrow keys aren't working in a field. I've already checked that the appropriate properties are set, and the arrow keys work if I move the field out of the group it's in. I remember there being an issue if some portion of a field is covered by

Re: arrow keys in a text field?

2004-09-12 Thread Richard Gaskin
Geoff Canyon wrote: I'm using 2.5 and I have a palette where the arrow keys aren't working in a field. I've already checked that the appropriate properties are set, and the arrow keys work if I move the field out of the group it's in. I remember there being an issue if some portion of a field

Re: Text hilite rollover in text field

2004-04-15 Thread Jeanne A. E. DeVoto
At 4:13 PM -0400 4/13/2004, [EMAIL PROTECTED] wrote: If I want to have a text field with a list of items, and have rollovers working over that text field so that moving the mouse up and down automatically hilites the line underneath the mouse, what's the best way to accomplish this? I've tried

  1   2   >