Re: Datagrid Basics

2010-08-19 Thread Andre.Bisseret
Le 19 août 10 à 04:43, Ray Horsley a écrit : Greetings, Anybody with some basics on how to provide users with the ability to double click in a cell and get an insertion point to edit text? This works fine in development but after saving a standalone the grid comes up unresponsive.

Re: (data grid) is there a good workaround for obtaining other column values in FillInData for a Data Grid Table?

2010-08-19 Thread zryip theSlug
On Thu, Aug 19, 2010 at 1:48 AM, Josh Mellicker j...@dvcreators.net wrote: If you set a custom behavior for the column you want the sum in, and where it has the section for filling data, put  put the dgDataOfIndex[ the dgIndex of me] of the dgControl of me into theDataA  set the text of

Re: Datagrid Basics

2010-08-19 Thread zryip theSlug
On Thu, Aug 19, 2010 at 4:43 AM, Ray Horsley r...@linkit.com wrote: Greetings, Ideally there would be a simple way to specify individual columns to be editable or not. Hi Ray, You can define if a column is editable or not by using the dgColumnIsEditable property of a datagrid Example for

Re: Accessing custom props using array notation

2010-08-19 Thread Chipp Walters
Devin, Put the custom prop into an array var, then you can access the contents. put the uMyArray of btn test into tArray put tArray[prop1] into tVar On Wednesday, August 18, 2010, Devin Asay devin_a...@byu.edu wrote: Anyone know if it's possible to access custom properties from an objects

Re: Pattern recognition of basic shapes in Rev

2010-08-19 Thread Randall Reetz
I am working on two such filters. The first is a brute force recognizer looking for matches to standard shapes (point, line, angle, triangle, rectangle, polygon, oval, conic and cylindric sections) and how closely a user drawing matches platonic forms of these (exp. right and equilateral

Re: Datagrid Basics

2010-08-19 Thread Ray Horsley
André, Zryip, Very helpful. Thanks, especially to Trevor who has put together this wonderful instructional site. After combing through it I'm missing just one thing. Is there any way to 'lock' the first column when scrolling horizontally? In my case I'm using the first column to

Re: What's the name for the function that..

2010-08-19 Thread Bob Sneidar
I am probably showing my ignorance, but I cannot think conceptually of how 5 wraps around 1 and 4. What is the significance of this? Bob On Aug 18, 2010, at 9:57 PM, Chipp Walters wrote: wraps a number around given a certain limit set? For instance, if I have a lower and upper limit of

Re: What's the name for the function that..

2010-08-19 Thread Bob Sneidar
Never min I looked it up. Got it now. 6 would return 2. Had I the second example I would have seen it. :-) Bob On Aug 18, 2010, at 9:57 PM, Chipp Walters wrote: wraps a number around given a certain limit set? For instance, if I have a lower and upper limit of number, say 1 to 4 and I

Re: Datagrid Basics

2010-08-19 Thread zryip theSlug
On Thu, Aug 19, 2010 at 3:58 PM, Ray Horsley r...@linkit.com wrote: André, Zryip, Very helpful.  Thanks, especially to Trevor who has put together this wonderful instructional site.  After combing through it I'm missing just one thing.  Is there any way to 'lock' the first column when

Re: Pattern recognition of basic shapes in Rev

2010-08-19 Thread Bob Sneidar
Given that computers are as dumb as a post and don't know anything about geometry to start with, I don't think the first example is so embarrassing after all. You have to tell the computer what each shape is before it gets smart enough to recognize it. The real difference lies in the purpose

Re: Accessing custom props using array notation

2010-08-19 Thread Devin Asay
On Aug 19, 2010, at 4:43 AM, Chipp Walters wrote: Devin, Put the custom prop into an array var, then you can access the contents. put the uMyArray of btn test into tArray put tArray[prop1] into tVar Thanks Chipp. That works if the custom prop is an array to start with, but my question

Re: Accessing custom props using array notation

2010-08-19 Thread Kevin Miller
On 19/08/2010 16:48, Devin Asay devin_a...@byu.edu wrote: Put the custom prop into an array var, then you can access the contents. put the uMyArray of btn test into tArray put tArray[prop1] into tVar Thanks Chipp. That works if the custom prop is an array to start with, but my question

RE: Pattern recognition of basic shapes in Rev

2010-08-19 Thread Randall Reetz
Yes, my code always presents a ghost shape (what the code thinks the user is after) sub-imposed below the user's sketch. A key stroke tells the code if the user has chosen the suggested shape. And, of course it is also reasonable to present platonic geometric shapes that have been roughed up

Re: Accessing custom props using array notation

2010-08-19 Thread Devin Asay
On Aug 19, 2010, at 10:00 AM, Kevin Miller wrote: Can't you do something like this: put xyz into tVar set the tVar of btn 1 to a You'll end up with a property called xyz that contains a in the default set. True enough, but can you do the opposite? put state 1 into tPropName put the

Re: Accessing custom props using array notation

2010-08-19 Thread Kevin Miller
On 19/08/2010 17:16, Devin Asay devin_a...@byu.edu wrote: True enough, but can you do the opposite? put state 1 into tPropName put the tPropName of image myImg into foo Unless memory fails, you can't do that--I've tried it; i.e., you can't dynamically build property names to access

Re: Datagrid Basics

2010-08-19 Thread Ray Horsley
Zryip, Thanks for the suggestion. I'll give it a try. Ray On Aug 19, 2010, at 11:37 AM, zryip theSlug wrote: On Thu, Aug 19, 2010 at 3:58 PM, Ray Horsley r...@linkit.com wrote: André, Zryip, Very helpful. Thanks, especially to Trevor who has put together this wonderful instructional

Re: Accessing custom props using array notation

2010-08-19 Thread Devin Asay
On Aug 19, 2010, at 10:25 AM, Kevin Miller wrote: On 19/08/2010 17:16, Devin Asay devin_a...@byu.edu wrote: True enough, but can you do the opposite? put state 1 into tPropName put the tPropName of image myImg into foo Unless memory fails, you can't do that--I've tried it; i.e., you

Re: Pattern recognition of basic shapes in Rev

2010-08-19 Thread David Bovill
On 17 August 2010 19:30, Randall Reetz rlre...@gmail.com wrote: I am working on two such filters. The first is a brute force recognizer looking for matches to standard shapes (point, line, angle, triangle, rectangle, polygon, oval, conic and cylindric sections) and how closely a user drawing

Re: Accessing custom props using array notation

2010-08-19 Thread J. Landman Gay
On 8/19/10 11:38 AM, Devin Asay wrote: Well, shut my mouth! That'll teach me to rely on faulty memory! (I blame space aliens and nano-brain-implants.) This works perfectly: put state tNum into tMyProp set the text of img myImg of me to the tmyProp of img myImg Jacque, could I get a copy

Re: Accessing custom props using array notation

2010-08-19 Thread David C.
That's off the top of my head so if I'm wrong, it's because I'm thinking of how it was ten years from now. LOL!!! ...you folks really crack me up... ...and thanks, I especially needed that today and probably will again seven years from yesterday of last month. :-) Best regards, David C.

Re: Accessing custom props using array notation

2010-08-19 Thread Peter Brigham MD
On Aug 19, 2010, at 1:05 PM, J. Landman Gay wrote: That's off the top of my head so if I'm wrong, it's because I'm thinking of how it was ten years from now. Sigh. It was all so different before everything changed. Or will change. Nostalgia ain't what it used to be. Or is it ain't what it

Re: Datagrid Basics

2010-08-19 Thread zryip theSlug
On Thu, Aug 19, 2010 at 6:32 PM, Ray Horsley r...@linkit.com wrote: Zryip, Thanks for the suggestion.  I'll give it a try. Ray, I just upload a new stack in the Slug's lab implementing this trick. You can download it by following this link:

[OT] Top Rev headlines from the time warp

2010-08-19 Thread J. Landman Gay
Since there appears to be some interest, I brought these back with me from my last trip. I apologize for the lack of dates, I don't know exactly when I was because there's a bug in the chronometer. Also, my socks have gone missing. 1. Google's competitor, Giggle, is rapidly gaining momentum

Re: revNavigator

2010-08-19 Thread Mark Talluto
Good lord! It is very important. There is no replacement that I can think of. My favorite feature is filter. You type in an object type or name into the search field and Navigator shows everything that matches. Just wonderful. Best regards, Mark Talluto http://www.canelasoftware.com

Mark V. Shaney algorithm

2010-08-19 Thread Alejandro Tejada
Hi all, Take a look at this webpage: http://www.yisongyue.com/shaney/ Have anyone created such code in revTalk? From Wikipedia: Mark V Shaney is a fake Usenet user whose postings were generated by using Markov chain techniques. The name is a play on the words Markov chain. Many readers were

Re: [OT] Top Rev headlines from the time warp

2010-08-19 Thread Chipp Walters
Good stuff! BTW, is this yours? It just appeared out of nowhere. [image: dirty sock.jpg] http://www.widgetgadget.com/stuff/dirty sock.jpg ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Datagrid Basics

2010-08-19 Thread zryip theSlug
On Thu, Aug 19, 2010 at 9:37 PM, zryip theSlug zryip.thes...@gmail.com wrote: On Thu, Aug 19, 2010 at 6:32 PM, Ray Horsley r...@linkit.com wrote: Zryip, Thanks for the suggestion.  I'll give it a try. Ray, I just upload a new stack in the Slug's lab implementing this trick. You can

Re: [OT] Top Rev headlines from the time warp

2010-08-19 Thread J. Landman Gay
On 8/19/10 5:39 PM, Chipp Walters wrote: Good stuff! BTW, is this yours? It just appeared out of nowhere. [image: dirty sock.jpg] Kevin's. He wants it back by airmail. But you could probably just put it in the dryer and it'll get to him. -- Jacqueline Landman Gay |

Re: Datagrid Basics

2010-08-19 Thread RevList
Trevor may have developed the Data Grid (and I am really glad he did), but Zyrip the Slug is going to make it ultimately more usable when he releases his Data Grid Helper. It is a phenomenal piece of work that will make creating and managing your data grids a snap. He has it out for beta testing

Re: (data grid) is there a good workaround for obtaining other column values in FillInData for a Data Grid Table?

2010-08-19 Thread Josh Mellicker
Wow, I just looked at this, fabulous!!! Thanks!!! On Aug 18, 2010, at 1:19 PM, zryip theSlug wrote: On Wed, Aug 18, 2010 at 4:15 AM, Josh Mellicker j...@dvcreators.net wrote: Let's say you had a data grid table with three columns, and you wanted the first column to be the sum of the other

Re: Mark V. Shaney algorithm

2010-08-19 Thread J. Landman Gay
On 8/19/10 4:53 PM, Alejandro Tejada wrote: Hi all, Take a look at this webpage: http://www.yisongyue.com/shaney/ Have anyone created such code in revTalk? From Wikipedia: Mark V Shaney is a fake Usenet user whose postings were generated by using Markov chain techniques. The name is a

[revMobile] could not play sound

2010-08-19 Thread Nicolas Cueto
Just got the latest build of the RevMobile plugin and am testing out (among other interesting things) the sound playback on iPhone and iPad of a revMobile-built app. In the IDE, the sound works, but in the real devices themselves and in the iPhone simulator, no sound! I've tried with wav, aiff,

Re: Mark V. Shaney algorithm

2010-08-19 Thread Mark Wieder
Jacque- Thursday, August 19, 2010, 9:26:05 PM, you wrote: I tried it but all it did was repeat what I entered. I didn't see any changes. You have to give it a lot of text so it has some food for the database. I fed it the text of The Big Sleep and it came up with * I scuttled out after

Re: Mark V. Shaney algorithm

2010-08-19 Thread Mark Wieder
(sigh) I broke it. I got carried away and fed it the text of Gravity's Rainbow and got a Request Entity Too Large error. -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to