Re: revOnline

2009-05-21 Thread william humphrey
I like the new revOnline browser. It is a great improvement over no search features, no graphical representation etc. But there are only 81 stacks. Weren't there more than that before? ___ use-revolution mailing list use-revolution@lists.runrev.com

What is the platform on Win64?

2009-05-21 Thread Richard Gaskin
The Dictionary lists these values for the platform: MacOS any Mac OS, OS X, or Darwin system Linux Linux for Intel or PowerPC architecture BSD BSD UNIX (BSDI, FreeBSD) HP-9000/700 HP-UX SGI IRISSilicon Graphics IRIX IBM RS/6000

Re: Preferred Multi-Platform Development Method

2009-05-21 Thread David Bovill
I've got a similar function, which I've not got around to testing on Windows and Linux yet. There are a few differences (like the use of baseconvert), would be good to get it right? function folder_Preferences if the platform is MacOS then return specialfolderpath(preferences) /

Re: Scripting competition

2009-05-21 Thread David Beck
I saw this and wanted to participate. have not check it, and there may be overflow issues function recurseFib n if n = 2 then return 1 return recurseFib( n - 1, n - 2 ) end recurseFib put recurseFib( 211 ) thanks for the quiz ___ use-revolution

Re: [OT] Not just because

2009-05-21 Thread crag
That's exactly what I needed. Thanks. Ok next time I'll ask before complaining. Devin Asay wrote: On May 14, 2009, at 12:23 PM, Stephen Cox wrote: Heh. I'd be happy to find simple calendar popups. Stephen, Do you mean a small calendar that pops up and lets you click a date,

Re: On-Rev Signup

2009-05-21 Thread Kay C Lan
On Tue, May 19, 2009 at 4:53 AM, Sarah Reichelt sarah.reich...@gmail.comwrote: Hi Guys, Not a guy, but having my say anyway :-) Typical female ;-) Then again, uses a Mac and speaks fluent Rev - not so typical after all ;-) What about the delay going from the U.S. and back? What's

Re: On-Rev Signup

2009-05-21 Thread Devin Asay
On May 18, 2009, at 11:24 PM, Kay C Lan wrote: What about the delay going from the U.S. and back? What's the latency? Hah! Try being in Australia before complaining about latency!!! Come on, you know full well that Oz is a day ahead of the US. Even your own on-Rev site, at the bottom,

Re: On-Rev Signup

2009-05-21 Thread Bob Sneidar
On May 21, 2009, at 9:23 AM, Devin Asay wrote: On May 18, 2009, at 11:24 PM, Kay C Lan wrote: What about the delay going from the U.S. and back? What's the latency? Hah! Try being in Australia before complaining about latency!!! Come on, you know full well that Oz is a day ahead of

Re: On-Rev Signup

2009-05-21 Thread J. Landman Gay
Devin Asay wrote: On May 18, 2009, at 11:24 PM, Kay C Lan wrote: What about the delay going from the U.S. and back? What's the latency? Hah! Try being in Australia before complaining about latency!!! Come on, you know full well that Oz is a day ahead of the US. Even your own on-Rev

Re: On-Rev Signup

2009-05-21 Thread J. Landman Gay
Bob Sneidar wrote: Ya know I used that stack once! I went back to when I was a whimpy little child and whipped my own arse. When I got back I found I was a much more well rounded person. Thanks Jacque! So now you're so well-rounded that when you sit down, you roll off the chair? --

Re: What is the platform on Win64?

2009-05-21 Thread Ken Ray
On 5/21/09 10:06 AM, Richard Gaskin ambassa...@fourthworld.com wrote: The Dictionary lists these values for the platform: MacOS any Mac OS, OS X, or Darwin system Linux Linux for Intel or PowerPC architecture BSD BSD UNIX (BSDI, FreeBSD)

Re: What is the platform on Win64?

2009-05-21 Thread Gregg Irwin
Hi Richard, RG What does the platform return on 64-bit Windows systems? It returns Win32 here. --Gregg ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: On-Rev Signup

2009-05-21 Thread Bob Sneidar
On May 21, 2009, at 9:53 AM, J. Landman Gay wrote: Bob Sneidar wrote: Ya know I used that stack once! I went back to when I was a whimpy little child and whipped my own arse. When I got back I found I was a much more well rounded person. Thanks Jacque! So now you're so well-rounded that

Re: On-Rev Signup

2009-05-21 Thread Devin Asay
On May 21, 2009, at 10:53 AM, J. Landman Gay wrote: Bob Sneidar wrote: Ya know I used that stack once! I went back to when I was a whimpy little child and whipped my own arse. When I got back I found I was a much more well rounded person. Thanks Jacque! So now you're so well-rounded that

Re: On-Rev Signup

2009-05-21 Thread Devin Asay
On May 21, 2009, at 10:52 AM, J. Landman Gay wrote: Devin Asay wrote: On May 18, 2009, at 11:24 PM, Kay C Lan wrote: What about the delay going from the U.S. and back? What's the latency? Hah! Try being in Australia before complaining about latency!!! Come on, you know full well that

Re: arrays

2009-05-21 Thread Ken Ray
The filter command is one of those things that you can stare at for a while, but it doesn't really click until you have a use for it. Then whole new worlds open up. On major caveat on filter though, and that is that the closer to the left edge of a line the filter is acting on (or the less

filter

2009-05-21 Thread Tom Cole
Does anyone know why I get no data in a variable when I filter more than once? In the following, either of the filters works alone with the other commented out, but together I get no data. on mouseup put fld sortfield into cat --FILTER #1 put 12/15/1971 into rat filter cat with

Re: Decorations

2009-05-21 Thread Hershel Fisch
On 5/20/09 10:02 PM, J. Landman Gay jac...@hyperactivesw.com wrote: Hershel Fisch wrote: Hi, the way my stack is set up, the MainStack which is the splash screen which has no title bar at all, all scripts are placed in that stack and then about 35 subStacks. What command do you use to

Re: filter

2009-05-21 Thread Bernard Devlin
put one cr two cr owl into tList filter tList with o* gives you owl one Filtering that 2 line list with filter tList with t* will give you an empty list. The first filter removed anything that would match the 2nd filter, therefore the list is empty. Bernard On Thu, May 21, 2009 at

Re: What is the platform on Win64?

2009-05-21 Thread Ken Ray
Win32 Although I'm sure there should be some way to determine you're on a 64-bit system... Actually I think it's a combination of problems. The platform shouldn't include the processor speed; it should just be Windows. But the processor needs to be fixed so it doesn't return x86 when

Re: Data Grid Comment

2009-05-21 Thread Trevor DeVore
On May 18, 2009, at 9:06 PM, RevList wrote: The Data Grid is fantastic. I just used two data grid tables in my recent project and it worked like a charm. I created Stand Alone versions for Mac and Win and have made them available one of my web sites four our customer access. If you are

Re: Data grid

2009-05-21 Thread Trevor DeVore
On May 19, 2009, at 2:02 PM, Hershel Fisch wrote: I want to set the header names on the fly it works on one and on one it only works if I delete all the col names first and then the second time it no longer works. I haven't been able to reproduce what you are seeing yet. I played

setting fld with HTML: H3Title/H3 results in added empty lines

2009-05-21 Thread mfstuart
Hi all, (hopefully, the html tags I'm using in this message don't get lost in transit) Here goes: When I use the following script to populate a field, the first 2 lines before the H3 text and the line after the /H3 text are empty. What's up with that? ## on mouseUp put H3This is the title/H3

Re: setting fld with HTML: H3Title/H3 results in added empty lines

2009-05-21 Thread Jim Ault
Mark, try on mousedoubleUp put H3This is the title/H3 into tText put This is the second line after tText set the htmlText of fld 1 to tText put the htmltext of fld 1 into msg get the htmlText of fld 1 replace p/p with empty in it set the htmlText of fld 1 to it end

Re: setting fld with HTML: H3Title/H3 results in added empty lines

2009-05-21 Thread Bill Marriott
Mark, The problem you're running into is that the htmlText is not truly HTML, and the H3 tag is not supported. If you inspect the contents of the htmlText after your script executes you'll see: pfont size=18bThis is the title/b/font/p The H3 tag is nowhere to be seen. So what is happening is

setting fld with HTML: H3Title/H3 results in added empty lines

2009-05-21 Thread Mark Stuart
Written by Bill Marriott on Thu May 21, 2009 - 3:22 PM CDT So what is happening is that the h3 tag is being transformed from a structural tag (identifying a heading and letting the browser/style sheet determine how it appears) into a formatting tag that Rev understands. Rev pretty much

setting fld with HTML: H3Title/H3 results in added empty lines

2009-05-21 Thread Mark Stuart
Written by Jim Ault on Thu May 21, 2009 - 3:02 PM CDT Hi Jim, With your script part: put the htmlText of fld 1 into msg really shows what Bill was talking about. I think this p/p thing is a little over kill on RunRev's part. But now I see it, I know what to handle it. Thanx to

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Alex Tweedly
Marty Knapp wrote: Hey Alex, You'll need to register a domain name with a registrar - many people here have recommended GoDaddy, which is what I use. Let's say you register alextweedly.com Then you edit the Nameserver setting with the registrar so that it points to On-Rev with the info that

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Jerry J
You use the cPanel to AddOn your domain. If you haven't changed the DNS yet, nothing will happen to your old site, and the AddOn routine will complain that the DNS is wrong (which is OK, thats what you are trying to do!) The AddOn routine does everything else correctly. Then you move your

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Sarah Reichelt
[...] wanted to test it out before changing the DNS entries. I created a sub-domain troz.troz.on-rev.com so I could migrate my site test it, before changing it to an AddOn domain and altering the DNS. So the question was quite precise  how do you change a sub-domain to an AddOn domain

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Alex Tweedly
Sarah Reichelt wrote: [...] wanted to test it out before changing the DNS entries. I created a sub-domain troz.troz.on-rev.com so I could migrate my site test it, before changing it to an AddOn domain and altering the DNS. So the question was quite precise how do you change a

New groups bugaBoo

2009-05-21 Thread DunbarX
I have four fields, F1, F2, F3, and F4. Fresh, empty stack. I wrote a script that groups each field in order, one field to a group, thinking that the 'last group would always be just that, the latest one created. But not so. I came across this because trying to get the last group as I went

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Sarah Reichelt
I think you can; it certainly seems to allow that, but I get an error message, and the addon domain is not configured, so I can't tell for sure. (But then, I get pretty much the same error just trying to create an addon domain with its own folder). What I get is: Error from park wrapper:

Re: New groups bugaBoo

2009-05-21 Thread Scott Rossi
Recently, dunb...@aol.com wrote: I wrote a script that groups each field in order, one field to a group, thinking that the 'last group would always be just that, the latest one created. But not so. I came across this because trying to get the last group as I went along always failed.

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Jerry J
On May 21, 2009, at 5:09 PM, Sarah Reichelt wrote: I think you can; it certainly seems to allow that, but I get an error message, and the addon domain is not configured, so I can't tell for sure. (But then, I get pretty much the same error just trying to create an addon domain with its own

Re: On-Rev Signup

2009-05-21 Thread Sarah Reichelt
Come on, you know full well that Oz is a day ahead of the US. Even your own on-Rev site, at the bottom,  shows that your time is 15 hrs ahead of Texas time, so it can't be latency because your messages arrive at your computer before they've even arrived at the Texas servers. I assume it's

Re: On-Rev Signup

2009-05-21 Thread J. Landman Gay
Sarah Reichelt wrote: Come on, you know full well that Oz is a day ahead of the US. Even your own on-Rev site, at the bottom, shows that your time is 15 hrs ahead of Texas time, so it can't be latency because your messages arrive at your computer before they've even arrived at the Texas

Re: On-Rev Signup

2009-05-21 Thread Mark Wieder
Jacque- Thursday, May 21, 2009, 6:59:47 PM, you wrote: I'd be happy if you'd just tell me what kind of day I will have tomorrow. It'll be a Friday on my planet... -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list

[ANN] InfoWallet 1.0

2009-05-21 Thread Bill Vlahos
I'm happy to finally announce the release of InfoWallet 1.0. http://www.infowallet.com Thanks to so many fantastic people in the Rev community. Special thanks to Geoff Canyon, Ken Ray, Trevor DeVore, and Richard Gaskin without whom I don't think I ever would have been able to do this.

Re: [ANN] InfoWallet 1.0

2009-05-21 Thread Richard Gaskin
Bill Vlahos wrote: I'm happy to finally announce the release of InfoWallet 1.0. http://www.infowallet.com Way cool, Bill! Congrats on the release! -- Richard Gaskin Fourth World Revolution training and consulting: http://www.fourthworld.com Webzine for Rev developers:

dgText and dgData of DataGrid

2009-05-21 Thread Nhan, Tran Thi Thanh
Hi all, I have one button and one data grid abc with style table. Below is script of button. When I click on button, the datagrid abc doesn't display any thing. Some one help me please? I have already tried for both set the dgText[true] of group abc to temp and set the dgData of group abc to

Re: [OT] Opinions about On-Rev

2009-05-21 Thread Bill Marriott
Alex, But how do you change a sub-domain to an AddOn domain ? Suppose you want to eventually host mydomain.com with on-Rev: 1) Create a subdomain, mydomain.user.on-rev.com 2) Point it to a folder, mydomain, in your account 3) Test away 4) When you're satisfied, point your nameservers for