Re: Moving a card from one stack to another

2010-09-18 Thread Scott Rossi
Recently, Dar Scott wrote: > What's the best way to move a card from one stack to another in the IDE? How about: copy this cd of stack "test1" to stack "test2" Regards, Scott Rossi Creative Director Tactile Media, UX Design ___ use-revolution maili

Re: Moving a card from one stack to another

2010-09-18 Thread Dar Scott
Thanks! I also figured this out on OS X Rev 3.5: Right click on card. Ignore the menu. Use the main menu and cut card. Go to destination stack and go to the card before the desired location. Paste objects. The card shows up after the current card. I was missing the need to right-click. Da

Re: iRev Input Validation Libraries

2010-09-18 Thread Monte Goulding
> I'm thinking this should suffice where the "positive match" is A-z plus 0-9, > comma, period and explanation mark... if allowed should suffice, but then I > may need to deal with SQL injection (PostGreSQL) also. if there is no ";" > then nothing can happen. But I know it is more complicated

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Sat, Sep 18, 2010 at 12:55 AM, Monte Goulding wrote: >> Am I adding overhead to >> redraw a grid that no one sees? > > I can't work out what the data grids are for if no one sees them? Why not > just use custom properties? Or better yet SQLite? On Sat, Sep 18, 2010 at 12:58 AM, Bob Sneidar w

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Fri, Sep 17, 2010 at 9:31 PM, Andrew Kluthe wrote: > > Hey revsters, > > I use datagrids on a hidden card to hold different sets of data that get > processed combined  into another datagrid for display to the user. > > I am trying to optimize my script and before fetching the data from the > hi

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
> Where the data of a datagrid are stored? In a custom property... sure > > I give you two alternatives: > - store a data formatted for datagrids in a custom property of a > stack, a card, an object, etc > - store a data formatted for datagrids in a special object which > display the data in a s

Re: iRev Input Validation Libraries

2010-09-18 Thread Ralf Bitter
just to clarify: active record database queries are escaped automatically by revIgniter, not by the server engine. Obviously the revIgniter user guide is capable of being misunderstood here. I will change that. Regarding XSS attacks: revIgniter comes with a Cross Site Scripting Hack prevention fi

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Sat, Sep 18, 2010 at 1:36 PM, Monte Goulding wrote: > >> Where the data of a datagrid are stored? In a custom property... > > sure >> >> I give you two alternatives: >> - store a data formatted for datagrids in a custom property of a >> stack, a card, an object, etc >> - store a data formatted

Re: Moving a card from one stack to another

2010-09-18 Thread Dar Scott
By "also figured this out", I mean your answer inspired me in thinking the IDE must do it somehow. I was missing the way to get "copy card" and "cut card" to show up on the edit menu. -- Dar On Sep 18, 2010, at 1:36 AM, Dar Scott wrote: Thanks! I also figured this out on OS X Rev 3.5: R

Re: DataGrid Optimization question

2010-09-18 Thread J. Landman Gay
On 9/18/10 8:56 AM, zryip theSlug wrote: On Sat, Sep 18, 2010 at 1:36 PM, Monte Goulding wrote: What about the cost of all the object creation/manipulation that you don't need if you are just using it as data storage. I speak about something easy to manipulate and you reply with cost. I

Re: iRev Input Validation Libraries

2010-09-18 Thread Web Admin Himalayan Academy
On 9/18/10 3:08 AM, Ralf Bitter wrote: just to clarify: active record database queries are escaped automatically by revIgniter, not by the server engine. Obviously the revIgniter user guide is capable of being misunderstood here. I will change that. Regarding XSS attacks: revIgniter comes with

RevIgniter -- Incorporating Existing CMS-Static Content

2010-09-18 Thread Sivakatirswami
Ralf, thank you for your great contribution in the form of revIgniter. I downloaded and installed it on our site, and actually ran thru some tutorials. My only problem was that we have an existing site where the CMS is already carefully organized for static pages I installed revIgniter in a t

Getting Property Names

2010-09-18 Thread Len Morgan
I'm trying to get a list of all the properties (not Custom) for an object. I know this used to be possible because Galaxy used to do it. the propertyNames() only gets the reserved names in Revolution (according to the docs at least) and I'd like just the properties that apply to say a field

Re: Getting Property Names

2010-09-18 Thread Len Morgan
If this is not possible, I'm trying to find out how to set the horizontal thumbposition of a field to the left edge. On 9/18/2010 12:37 PM, Len Morgan wrote: I'm trying to get a list of all the properties (not Custom) for an object. I know this used to be possible because Galaxy used to do

Re: DataGrid Optimization question

2010-09-18 Thread Josh Mellicker
On Sep 17, 2010, at 4:39 PM, Robert Mann wrote: > So it would be interesting I thing if actually Datagrids were split into A) > the datagrid dataObject and B) the datagrid viewer... so you could have > several views of the same datas... I have thought exactly the same thing... The first thing

Re: Getting Property Names

2010-09-18 Thread BNig
Hi Len, wouldn't that be set the hscroll of field "myField" to 0 regards Bernd -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Getting-Property-Names-tp2545352p2545372.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: Getting Property Names

2010-09-18 Thread Mark Wieder
Bernd- Saturday, September 18, 2010, 11:03:36 AM, you wrote: > wouldn't that be > set the hscroll of field "myField" to 0 No doubt it would. But you can also say put the keys of (the properties of field "myField") to get the (more or less) complete list of properties. -- -Mark Wieder mwie.

Re: Mac OS X - how to darken screen?

2010-09-18 Thread Phil Davis
Good idea. On a couple of my machines (one Mac, one Win) the speed was so fast that the fade was almost undetectable, so I went with: repeat with N = 100 down to 1 set the blendLevel of stack "screencover" to N wait 4 milliseconds with messages end repeat ... and a similar repeat with N

Re: Mac OS X - how to darken screen?

2010-09-18 Thread Ken Ray
> if you are using the external ssMacWindows you can use the command > ssDisplayFadeOut to let the system handle fading the screen to black.. I totally forgot about that! Thanks for the reminder! Ken Ray Sons of Thunder Software, Inc. Email: k...@sonsothunder.com Web Site: http://www.sonsothunder

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Sat, Sep 18, 2010 at 7:12 PM, J. Landman Gay wrote: > On 9/18/10 8:56 AM, zryip theSlug wrote: >> >> On Sat, Sep 18, 2010 at 1:36 PM, Monte Goulding >> wrote: >>> >>> What about the cost of all the object creation/manipulation that you >>> don't need if you are just using it as data storage.

Re: [OT] The lessons of Ion

2010-09-18 Thread Ken Ray
On 9/17/10 5:17 PM, "Peter Alcibiades" wrote: > I have to tell you, this is an experience to make you think and scratch > your head and think some more. If Apple were right, it should not work. > If Gnome were right, it should not work. And on day 1 it does not. But on > day n, it not only wor

Re: [OT] The lessons of Ion

2010-09-18 Thread François Chaplais
by curiosity, are you old enough to have lived the times where the controversy in the unix world that was: what is the best editor: vi or ed (hint: at that time, emacs did not exist)? I have, and, as far as I am concerned, I avoid by any means available OSs that make you feel like you are playin

Re: iRev Input Validation Libraries

2010-09-18 Thread Ralf Bitter
For XSS filtering see the rigXssClean() function in system/libraries/Input.irev. Unfortunately revIgniter's implementation for escaping database queries can not be associated with only one handler you could copy and paste. This subject is a bit more complex, so please bare with me when I point y

Re: Print Field error in Standalone

2010-09-18 Thread zryip theSlug
On Mon, Sep 13, 2010 at 10:03 AM, Brent Summerton < bsummer...@virginbroadband.com.au> wrote: > > To date I have been unable to print a field named "Results" > > I am using Enterprise 4.5.0 on a Mac 10.6.4 to produce a Standalone for > Windows PC. > > on Mouseup > revPrintField the name of field

What is the name of that function...

2010-09-18 Thread Tereza Snyder
…that lets you cycle among a sequence of numbers without using mod? I've read through the functionnames three times but nothing seems to be it. Someone asked on the list not too long ago, and I said to myself, "Remember that!" and of course I remember saying that, but I don't remember…that. So

Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza- Saturday, September 18, 2010, 2:42:34 PM, you wrote: > Somebody knows… what is it. I was (wrap) going to try (wrap) to remember it (wrap) as well, but it's (wrap) not on the tip of my (wrap) tongue... -- -Mark Wieder mwie...@ahsoftware.net

Re: [ANN] Data Grid Helper is on the road for open beta test

2010-09-18 Thread zryip theSlug
On Sun, Sep 12, 2010 at 8:58 PM, zryip theSlug wrote: > Dear list members, > > The Slug is pleased to announce the availability of an open beta > version of the Data Grid Helper plugin. > > The Data Grid Helper is a plugin dedicated to the datagrid object. It > helps: > - managing datagrid propert

Re: What is the name of that function...

2010-09-18 Thread Alex Tweedly
wrap but why do you want to avoid 'mod' ? -- Alex. On 18/09/2010 22:42, Tereza Snyder wrote: …that lets you cycle among a sequence of numbers without using mod? I've read through the functionnames three times but nothing seems to be it. Someone asked on the list not too long ago, and I said

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
> But because your dictionary is displayed on a card, I think your method is > good. The original email was discussing using hidden datagrids with no mention of having them visible to manipulate. -- Monte Goulding M E R Goulding Software Development Bespoke application development for vertical

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 4:53 PM, Alex Tweedly wrote: > wrap > > but why do you want to avoid 'mod' ? because there's always a fiddle with 0 (along with cats), and offsets, and I'm too lazy to write that function AGAIN. t -- Tereza Snyder Califex Software, Inc. _

Re: iRev Input Validation Libraries

2010-09-18 Thread Monte Goulding
> just to clarify: > active record database queries are escaped automatically by revIgniter, > not by the server engine. Obviously the revIgniter user guide is > capable of being misunderstood here. I will change that. Sorry Ralf, I love your work but this is not a misunderstanding. It's clearly

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 4:49 PM, Mark Wieder wrote: > Tereza- > > Saturday, September 18, 2010, 2:42:34 PM, you wrote: > >> Somebody knows > what is it. > > I was (wrap) going to try (wrap) to remember it (wrap) as well, but > it's (wrap) not on the tip of my (wrap) tongue… > Hmmmph! it's an OPE

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
>> What about the cost of all the object creation/manipulation that you don't >> need if you are just using it as data storage. > > I speak about something easy to manipulate and you reply with cost. Yes, Did you read the original post? It was about using HIDDEN datagrids! Clearly this is not w

Showing Invisible Fields

2010-09-18 Thread Peter Haworth
I'm having problems making invisible fields show up on a card. I click the "Show Invisible Objects" option on the View menu and some invisible fields show up but not all. In the Application Browser, I can open the property inspector for a field that does not show up, then check the Visibl

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Sun, Sep 19, 2010 at 12:23 AM, Monte Goulding wrote: >>> What about the cost of all the object creation/manipulation that you don't >>> need if you are just using it as data storage. >> >> I speak about something easy to manipulate and you reply with cost. > > Yes, Did you read the original po

Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza- Saturday, September 18, 2010, 3:23:22 PM, you wrote: > Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative > numbers*! mod is also an operator. And negative numbers? I wouldn't expect those to work - it work that way for word problems with either operator: If Joh

Re: DataGrid Optimization question

2010-09-18 Thread Monte Goulding
> Because I have not totally understood > Monte's arguments, that I consider destructives. LOL Monte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preference

Re: DataGrid Optimization question

2010-09-18 Thread zryip theSlug
On Sun, Sep 19, 2010 at 1:05 AM, Monte Goulding wrote: >> Because I have not totally understood >> Monte's arguments, that I consider destructives. > > LOL > > Monte lol? LOL?? Have you already seen a slug armed with a cheese, hum? Prepare yourself! -- -Zryip TheSlug- wish you the best! 8) ht

Unable to select text in script editor!!

2010-09-18 Thread charles61
I am using Rev 4.0 Build 950 for the Mac. I have been experiencing sporadic problems in the script editor. At times, I unable to select text. In these situations, I can insert the cursor before text or after text to move forward to add or move backwards to delete text. I have checked my prefere

is there a tutorial about application menus?

2010-09-18 Thread Andre Garzia
Folks, Is there a tutorial available about creating application menus? I seldom use them and I understand that there's new syntax available. I went to revLessons and tutorials site but haven't seen any outstanding option available. Andre -- http://www.andregarzia.com All We Do Is Code.

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 5:23 PM, Tereza Snyder wrote: > > On Sep 18, 2010, at 4:49 PM, Mark Wieder wrote: > >> Tereza- >> >> Saturday, September 18, 2010, 2:42:34 PM, you wrote: >> >>> Somebody knows >> what is it. >> >> I was (wrap) going to try (wrap) to remember it (wrap) as well, but >> it's

Re: What is the name of that function...

2010-09-18 Thread Tereza Snyder
On Sep 18, 2010, at 5:51 PM, Mark Wieder wrote: > Saturday, September 18, 2010, 3:23:22 PM, you wrote: > >> Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative >> numbers*! > > mod is also an operator. And negative numbers? I wouldn't expect those > to work - it work tha

Re: What is the name of that function...

2010-09-18 Thread Andre Garzia
On Sat, Sep 18, 2010 at 10:13 PM, Tereza Snyder wrote: > > On Sep 18, 2010, at 5:51 PM, Mark Wieder wrote: > > > Saturday, September 18, 2010, 3:23:22 PM, you wrote: > > > >> Hmmmph! it's an OPERATOR not a function! And it doesn't work with > negative numbers*! > > > > mod is also an operator. An

Re: [OT] The lessons of Ion

2010-09-18 Thread Peter Alcibiades
No, I missed out on the fun with vi and ed. I am old enough to remember text only interfaces however and felt that the GUI was a great liberation from them. This was Macs, and for many years I bought into 'ease of use' and HIGs until the GUIs started to get more and more obtrusive and irritating

Re: What is the name of that function...

2010-09-18 Thread Phil Davis
Hey, it works for the government! Key: Johnny = US Treasury Fred = Federal Reserve Bank :-) (OK, it would be funnier if it were less true - I'll say no more) On 9/18/10 3:51 PM, Mark Wieder wrote: If Johnny owes nine dollars and gives five of those dollars he doesn't have to Fred, how many d