Re: open file with application

2007-10-15 Thread Eric Chatonet
Hi Richmond, Just a quick clarification :-) Open process and Launch are not the same: Launch acts as if the user double clicked the app or a file related to the app. There is no relation between the Rev app and this application. On the other hand, Open Process is related to the Rev App as a

ANN: Color Converter

2007-10-15 Thread Mark Schonewille
Hi, Last weekend, I got a request to make a simple, little tool to convert colour codes from and to different colour spaces. I decided to release it as shareware. You can find it here: http://economy-x-talk.com/cc.html Best regards, Mark Schonewille -- Economy-x-Talk Consulting and

Re: open file with application

2007-10-15 Thread Andre Garzia
Richmond, I use something like this on openWithApp pApp, pFilePath get format(open -a %s %s, pApp, pFilePath) get shell(it) end openWithApp pass the file path to open and the application name. works for MacOS X only. cheers andre ___

Re: creating scalable web application in rev using mod_load_balancer

2007-10-15 Thread Alex Shaw
Andre Garzia wrote: Apache mod_proxy_balancer will act as a proxy directing chosen connections to it's team members which are called proxyBalancers. One can launch, for example, five instances of RevHTTP and tell apache that those are the five proxybalancers. Then for each request, apache will

closeField and exitField problem

2007-10-15 Thread Dave
Hi, I asked about this problem ages ago, but didn't get a response, so I'm asking again as it's just come up again! I am running on a Mac. If the user fills in a field and then tabs out of the field, either a closeField or exitField message is sent to the field. All well and good.

Doing in RR what we used to do in HC.

2007-10-15 Thread Richmond Mathewson
On a fairly regular basis there crops up the question: How do you do such-and-such in Runtime Revolution that I used to do in Z way in Hypercard? even years after Hypercard has gone the way of all flesh. There seem to be 2 reasons for this:- 1. Changing from Hypercard to Runtime Revolution

Re: closeField and exitField problem

2007-10-15 Thread Phil Davis
Hi Dave, How about something like this: -- in the card or stack script if needed by multiple fields on openField detectCloseField (the long id of the target) end openField on closeField -- first do whatever needs to be done at closeField time -- then turn detector off immediately after

Re: closeField and exitField problem

2007-10-15 Thread Björnke von Gierke
Yes, I too think that validating user entries is one of rev's weaknesses. However, artificially increasing the problem by not using the fields as data source seems a bit strange to me, especially with your reasoning. How are these two lines completely different in their horribility? put

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread Mikey
I would argue that in addition 3) There are still production HC stacks in use (I know I have two that are otherwise considered mission-critical, and still perform well for what they're intended to do) 4) People who were around in the HC days that have transitioned to RR have, for whatever reason,

open file with application

2007-10-15 Thread Richmond Mathewson
The main problem here is that Launch presupposes everybody keeps the same application in the same place on their computer: which they don't! I wonder about embedding a MacOS app inside a RR standalone and then using that!!! Love, Richmond

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread Mark Schonewille
Hi, I think that a HyperCard conversion FAQ would be helpful. I'd be pleased to put one on the runrev.info site, if we can come to an agreement on what should be in that FAQ. Best regards, Mark Schonewille -- Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread Devin Asay
I assume y'all are familiar with Jacque's fine tutorial at http:// www.hyperactivesw.com/mctutorial/index.html. Somewhere embedded in that is a handy checklist of things that don't map over easily from HC to rev. Devin On Oct 15, 2007, at 1:24 PM, Richmond Mathewson wrote: On a fairly

Re: open file with application

2007-10-15 Thread Phil Davis
Hi Richmond, Richmond Mathewson wrote: The main problem here is that Launch presupposes everybody keeps the same application in the same place on their computer: which they don't! But with the launch document documentPath command, that concern goes away. (Introduced in 2.7.1) Phil Davis

Re: closeField and exitField problem

2007-10-15 Thread Ken Ray
On Mon, 15 Oct 2007 19:48:36 +0100, Dave wrote: Hi, I asked about this problem ages ago, but didn't get a response, so I'm asking again as it's just come up again! I am running on a Mac. If the user fills in a field and then tabs out of the field, either a closeField or exitField

Re: closeField and exitField problem

2007-10-15 Thread Phil Davis
This is so much simpler than what I proposed! Thanks Ken. Phil Davis Ken Ray wrote: On Mon, 15 Oct 2007 19:48:36 +0100, Dave wrote: Hi, I asked about this problem ages ago, but didn't get a response, so I'm asking again as it's just come up again! I am running on a Mac. If the user

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread Stephen Barncard
The fact remains that it is up to the one between the keyboard and the seat to do most 'conversion' from HC to Revolution. But this is not a bad thing. Although the two share some of the syntax and terminology which make the transition tolerable, there are so many ways to 'skin a cat' in Rev

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread Kay C Lan
On 10/16/07, Stephen Barncard [EMAIL PROTECTED] wrote: The fact remains that it is up to the one between the keyboard and the seat to do most 'conversion' from HC to Revolution. But this is not a bad thing. I fully agree. Lets face it, in the grand scheme of things what could be easier than

Re: creating scalable web application in rev using mod_load_balancer

2007-10-15 Thread Chipp Walters
Andre, This does sound interesting...and promising as well. Now, for the 'other' side of things. As a thought experiment, I would suggest a very plain Rev to Javascript GUI implementation which implemented only the following: Basic Buttons Fields (labels, list field, single line and multiple

Re: Emailing from within Revolution

2007-10-15 Thread Sarah Reichelt
On 10/14/07, Paul Gabel [EMAIL PROTECTED] wrote: As an intermediate Revolution user, I'd like my standalone to be able to send an email by script completely within Revolution, not, as revMail does, require the user to explicitly send it from the email application (in my case — Apple's Mail

Re: Doing in RR what we used to do in HC.

2007-10-15 Thread J. Landman Gay
Devin Asay wrote: I assume y'all are familiar with Jacque's fine tutorial at http://www.hyperactivesw.com/mctutorial/index.html. Somewhere embedded in that is a handy checklist of things that don't map over easily from HC to rev. I also wrote a basic overview of the main differences, which