Re: rev-web, revbrowser, on-rev, Linux, help!

2010-05-09 Thread Sarah Reichelt
So basically it goes like this, doesn't it? We want to write on-rev material, we can, we use a text editor, then we load it onto the Rev run on-rev server, and it works fine in Linux or anything else, in any web browser.  Presumably there's a handbook with a guide for how to do

Re: rev-web, revbrowser, on-rev, Linux, help!

2010-05-09 Thread Michael Kann
Peter, if you want to put up a web page on the on-rev server to give it a try I'd be happy to give you a folder to fool around with. I'm using about a millionth of my alotted space at the moment. Part of what Peter Alcibiades wrote: So basically it goes like this, doesn't it? We want to write

Re: rev-web, revbrowser, on-rev, Linux, help!

2010-05-09 Thread Peter Alcibiades
By installing the RunRev 3.5 engine on any Apache server you can get just about the same functionality as you would get on the on-rev server Thanks, I had not appreciated that. Could certainly be significant. Peter -- View this message in context: http://runtime-revolution.278305.n4

Re: rev-web, revbrowser, on-rev, Linux, help!

2010-05-09 Thread J. Landman Gay
Peter Alcibiades wrote: By installing the RunRev 3.5 engine on any Apache server you can get just about the same functionality as you would get on the on-rev server Thanks, I had not appreciated that. Could certainly be significant. Peter, you really should take up that offer for an iRev

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread Sarah Reichelt
c) use HTTPS for all communication between client and server (so that Evil H4ck3r will not sniff you) How do I set this up? If I have my database file at: myname.on-rev.com/db.irev I would usually get it's data by asking for http://myname.on-rev.com/db.irev Can I just change this to

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread Andre Garzia
Sarah, change to HTTPS and set liburl verification to false if you don´t have a real ssl certificate (if yours is self signed) cheers andre On Sun, Mar 28, 2010 at 8:12 PM, Sarah Reichelt sarah.reich...@gmail.comwrote: c) use HTTPS for all communication between client and server (so that

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread Sarah Reichelt
I don't have a real certificate. Do I need to create a self-signed one? If so how, and where do I store it? Setting liburl verification to false... I can't find a command for doing this. Do I use libURLSetCustomHTTPHeaders? And if so, what header exactly do I set. Sorry Andre, I'm a complete

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread J. Landman Gay
Sarah Reichelt wrote: I don't have a real certificate. Do I need to create a self-signed one? If so how, and where do I store it? Setting liburl verification to false... I can't find a command for doing this. Do I use libURLSetCustomHTTPHeaders? And if so, what header exactly do I set. Funny,

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread J. Landman Gay
J. Landman Gay wrote: Sarah Reichelt wrote: I don't have a real certificate. Do I need to create a self-signed one? If so how, and where do I store it? Setting liburl verification to false... I can't find a command for doing this. Do I use libURLSetCustomHTTPHeaders? And if so, what header

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread Jim Ault
libSSLSetVerification true/false Is that the only SSL command? The Enterprise 3.5 dictionary has no entries for libSSL On Mar 28, 2010, at 6:11 PM, J. Landman Gay wrote: J. Landman Gay wrote: Sarah Reichelt wrote: I don't have a real certificate. Do I need to create a self-signed one? If

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread J. Landman Gay
Jim Ault wrote: libSSLSetVerification true/false Is that the only SSL command? The Enterprise 3.5 dictionary has no entries for libSSL I don't know. Someone was having trouble and RR told me to recommend that, and said it should have been documented but was accidentally omitted. I didn't

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-28 Thread Sarah Reichelt
I don't have a real certificate. Do I need to create a self-signed one? If so how, and where do I store it? Setting liburl verification to false... I can't find a command for doing this. Do I use libURLSetCustomHTTPHeaders? And if so, what header exactly do I set. Funny, this just came up

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Kay C Lan
Hi Sarah, but what's stopping me on mouseUp put http://myusername.on-rev.com/readDB.irev; into tDBdata -- now display it end mouseUp to your account? Of course how would I know that you had an account, or that you had such a file? I liken this (and I might be wrong) to my wife who always

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Sarah Reichelt
On Fri, Mar 26, 2010 at 5:21 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: Hi Sarah, but what's stopping me on mouseUp  put http://myusername.on-rev.com/readDB.irev; into tDBdata  -- now display it end mouseUp to your account? Nothing :-) But you only get the results from my database,

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Jim Ault
contains an SQL command instead of a string (eg. 2347 Main Street), which can play havoc with a data table. The advantage to using a Rev cgi or and irev script is that the variables passed into that script can be handled in ways that most SQL programmers would not understand. Since you

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Devin Asay
db's accessible from outside my on-rev domain. Beyond that, the advice from Sarah, Andre, Kay, and Jim is valuable with regard to security issues. BTW, it's not obvious from the on-rev CPanel where to make the change to the allowed hosts. Under Databases click Remote MySQL. There you can add

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Andre Garzia
my on-rev domain. Beyond that, the advice from Sarah, Andre, Kay, and Jim is valuable with regard to security issues. BTW, it's not obvious from the on-rev CPanel where to make the change to the allowed hosts. Under Databases click Remote MySQL. There you can add specific allowed IP addresses

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread John Patten
to get the text (POST) included as a WHERE in the irev SQL action? Hope that made sense. Thank you! John Patten -snip- Message: 17 Date: Fri, 26 Mar 2010 09:56:57 +1000 From: Sarah Reichelt sarah.reich...@gmail.com Subject: Re: Connecting Rev stack to On-Rev

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-26 Thread Devin Asay
of the database. What is the proper way to get the text (POST) included as a WHERE in the irev SQL action? John, A few weeks back I taught a block in my Rev class on creating irev scripts that respond to form requests in the context of creating custom database queries. I've just posted my class

Connecting Rev stack to On-Rev mySQL DB?

2010-03-25 Thread John Patten
Hi All... My Developer Conference 2009 DVDs arrived yesterday and I listened to Devin do his presentations on connecting rev to an on-rev mysql db. He made it look so easy, I thought I'd give it a try! My attempts are failing with the error: Access denied for user 'jpatten_elearn

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-25 Thread Andre Garzia
arrived yesterday and I listened to Devin do his presentations on connecting rev to an on-rev mysql db. He made it look so easy, I thought I'd give it a try! My attempts are failing with the error: Access denied for user 'jpatten_elearn'@'216.64.xxx.xx' (using password: YES) I'm behind a firewall

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-25 Thread Sarah Reichelt
My Developer Conference 2009 DVDs arrived yesterday and I listened to Devin do his presentations on connecting rev to an on-rev mysql db. He made it look so easy, I thought I'd give it a try! My attempts are failing with the error: Access denied for user 'jpatten_elearn'@'216.64.xxx.xx

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-25 Thread Kay C Lan
Andre, Sarah, of the options you each suggested, any thoughts on which is more secure or are they both on par? Thanks ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Connecting Rev stack to On-Rev mySQL DB?

2010-03-25 Thread Sarah Reichelt
On Fri, Mar 26, 2010 at 3:03 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: Andre, Sarah, of the options you each suggested, any thoughts on which is more secure or are they both on par? Andre probably knows more than me about such things, but I reckon my way is more secure. The password

Re: Basic question: Rev CGI and executing Rev scripts from bash

2006-10-19 Thread David Bovill
Interesting - it is working so i will ignore for now :) Thanks. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Basic question: Rev CGI and executing Rev scripts from bash

2006-10-18 Thread David Bovill
for Rev - does this matter at all? ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: Basic question: Rev CGI and executing Rev scripts from bash

2006-10-18 Thread Andre Garzia
David, working as cgi will also yield this error but apache will treat it as a malformed http header and ignore it. This is due to missing/wrong link for the UI graphic libraries. Due to the nature of the linux dynamic loader and the way Rev was built, it will look for those libraries

Re: To Rev or not to Rev

2005-05-05 Thread Marielle Lange
Hi Dennis, There is a trade-off, there. As a researcher, it matters more that something takes me 1 day rather 5 to progam. It does not matter that much that it takes 1 minute rather than 3 to run (I can always use it as an excuse for a coffee break). What I frequently need to do is create word

Re: To Rev or not to Rev

2005-05-05 Thread Richard Gaskin
). Revolution is the best program I know to rapidly handle interface design and internet protocols. I'll bet that would work quite well as an external -- Richard Gaskin Fourth World Media Corporation __ Rev tools and more: http

RE: To Rev or not to Rev

2005-05-05 Thread MisterX
Marielle, with the GNU tools bin programs and cigwin tools, you can already do so via shell or launch. There's a zillion text manipulation tools out there. But so far Rev is quite fast even for intricate parsing. Never fast enough tough ;) But a bridge would be welcome to avoid shell calls

Re: To Rev or not to Rev

2005-05-05 Thread Dave Rousseau
Please stop sending me this junk email I do not know how or when I got hooked up to it, but please stop NOW!! - Original Message - From: Richard Gaskin [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Thursday, May 05, 2005 7:16 AM Subject: Re: To Rev

Re: To Rev or not to Rev

2005-05-05 Thread Todd Higgins
!! - Original Message - From: Richard Gaskin [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Thursday, May 05, 2005 7:16 AM Subject: Re: To Rev or not to Rev -- Todd Higgins email: [EMAIL PROTECTED] ___ use-revolution mailing

Re: To Rev or not to Rev

2005-05-04 Thread Geoff Canyon
controllers with a tiny amount of memory. You are free to define words that implement an OO environment if you choose. You could even create Rev using this as the lower level P code, or an operating system for that matter. I understand how Forth works. I'm just not sure how I would

Re: To Rev or not to Rev

2005-05-04 Thread Dennis Brown
and powerful architecture for developing real time machine controllers with a tiny amount of memory. You are free to define words that implement an OO environment if you choose. You could even create Rev using this as the lower level P code, or an operating system for that matter. I understand how

RE: To Rev or not to Rev

2005-05-04 Thread MisterX
PROTECTED] On Behalf Of Geoff Canyon Sent: Wednesday, May 04, 2005 16:44 To: How to use Revolution Subject: Re: To Rev or not to Rev On May 2, 2005, at 8:02 AM, Dennis Brown wrote: On May 2, 2005, at 10:25 AM, Geoff Canyon wrote: I'm not sure how to catalog Forth, but it's not OO

Re: To Rev or not to Rev

2005-05-04 Thread Gordon Webster
I totally agree with Dennis. Efficient arrays are the missing link in rev. Gordon --- Dennis Brown [EMAIL PROTECTED] wrote: On May 4, 2005, at 10:43 AM, Geoff Canyon wrote: On May 2, 2005, at 8:02 AM, Dennis Brown wrote: On May 2, 2005, at 10:25 AM, Geoff Canyon wrote: I'm

Re: To Rev or not to Rev

2005-05-04 Thread Richard Gaskin
Gordon Webster wrote: I totally agree with Dennis. Efficient arrays are the missing link in rev. http://support.runrev.com/bugdatabase/show_bug.cgi?id=555? -- Richard Gaskin Fourth World Media Corporation __ Rev tools and more: http

RE: To Rev or not to Rev

2005-05-04 Thread MisterX
: To Rev or not to Rev Gordon Webster wrote: I totally agree with Dennis. Efficient arrays are the missing link in rev. http://support.runrev.com/bugdatabase/show_bug.cgi?id=555? -- Richard Gaskin Fourth World Media Corporation

Re: To Rev or not to Rev

2005-05-04 Thread Brian Yennie
of the benefits (and take some of the same tactics) in Rev as with true OO environments has merit, IMO, but saying that Revolution is OO is just taking liberty with the definition of Object-Oriented. Sure if you reinterpret the term based on what you think it should mean, you end up in one place- but if you

Re: To Rev or not to Rev

2005-05-04 Thread Dennis Brown
PROTECTED] On Behalf Of Richard Gaskin Sent: Wednesday, May 04, 2005 21:08 To: How to use Revolution Subject: Re: To Rev or not to Rev Gordon Webster wrote: I totally agree with Dennis. Efficient arrays are the missing link in rev. http://support.runrev.com/bugdatabase/show_bug.cgi?id=555? -- Richard

Re: To Rev or not to Rev

2005-05-04 Thread Pierre Sahores
Be aware to see how combining the repeat for each statement (read-only) and the rev two-dimmensions arrays can be very usefull and fast running, lots faster than many well formated SQL queries, for an exemple... Hope this can help, This BZ on arrays would be a welcome enhancement, but it would

Re: To Rev or not to Rev

2005-05-04 Thread Ken Ray
On 5/4/05 10:32 AM, MisterX [EMAIL PROTECTED] wrote: Im sick of this non-sense - no offense to you Mickey... Xavier... you *really* have to let up on the c key when responding... The gentleman's name is Mikey, not Mickey, and he has said that to you multiple times. My suggestion would be that

Re: To Rev or not to Rev

2005-05-04 Thread Dennis Brown
Pierre, I am quite aware of these, and that is what I want to run 10 times faster than. However, a lot can be done with the repeat for each more quickly than other Rev methods, but it can only be used with a single named array at a time. I have entered a BZ request for an additional

Re: To Rev or not to Rev

2005-05-04 Thread Stephen Barncard
amen! I used to take Tom Pittman's advice for Compilit and use his notation for integers - % and they screamed with speed... and the old Hyperbasic XCMD generator had great array capabilities. I don't mind typing variables optionally if it speeds up things. sqb At 7:30 PM -0400 5/4/05, Dennis

RE: To Rev or not to Rev

2005-05-04 Thread MisterX
:[EMAIL PROTECTED] On Behalf Of Ken Ray Sent: Thursday, May 05, 2005 01:42 To: Use Revolution List Subject: Re: To Rev or not to Rev On 5/4/05 10:32 AM, MisterX [EMAIL PROTECTED] wrote: Im sick of this non-sense - no offense to you Mickey... Xavier... you *really* have to let up on the c

Re: To Rev or not to Rev

2005-05-02 Thread Jim Carwardine
. Since then, I've used only HC and now Rev so my exposure to classical OOP was missing. Comments like the one my ISP gave indicated a structural as well as philosophical difference in thinking. Thanks, again... Jim on 4/30/05 7:36 PM, Derek Bump wrote: As someone already said, your ISP answer

Re: To Rev or not to Rev

2005-05-02 Thread Geoff Canyon
LISP is purely functional, not object-oriented. There are OO libraries for LISP, but many on the LISP side of things look down on them. I'm not sure how to catalog Forth, but it's not OO (inherently -- there are OO implementations). It's procedural, certainly, but the inherent stack gives

Re: To Rev or not to Rev

2005-05-02 Thread Geoff Canyon
I think by that classification Rev _is_ object-oriented: ObjectOrientedProgramming. A program execution is regarded as a physical model, simulating the behavior of either a real or imaginary part of the world. Sounds like Rev to me. Nevertheless, I always refer people to another quote

Re: To Rev or not to Rev

2005-05-02 Thread Dennis Brown
words that implement an OO environment if you choose. You could even create Rev using this as the lower level P code, or an operating system for that matter. Dennis ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com

Re: To Rev or not to Rev

2005-05-02 Thread Dan Shafer
that implement an OO environment if you choose. You could even create Rev using this as the lower level P code, or an operating system for that matter. Dennis ___ use-revolution mailing list use-revolution@lists.runrev.com http://lists.runrev.com

Re: To Rev or not to Rev

2005-05-02 Thread Pierre Sahores
Geoff and All, And in about polymorphism... : HC and REV are full able to let us design any complexes recursive procedures we can need inside our xtalk's apps, even in using polymorhism, hash-tables stuffs and so on... Best, Pierre Le 2 mai 05, à 16:28, Geoff Canyon a écrit : I think

Re: To Rev or not to Rev

2005-05-02 Thread Richard Gaskin
terms best describe its classification. -- Richard Gaskin Fourth World Media Corporation __ Rev tools and more: http://www.fourthworld.com/rev ___ use-revolution mailing list use-revolution@lists.runrev.com

RE: To Rev or not to Rev + OOP TAOO tech

2005-05-02 Thread MisterX
[x'ed] You are free to define words that implement an OO environment if you choose. You could even create Rev using this as the lower level P code, or an operating system for that matter. Dennis I like your way of saying it... That's exactly what I've done with xtalk in TAOO, XOS

Re: To Rev or not to Rev

2005-05-02 Thread James Spencer
On May 2, 2005, at 9:28 AM, Geoff Canyon wrote: Setting those aside, Rev lacks several characteristics most people consider inherent to OO. That doesn't make it bad or good, necessarily. When this thread started, my reaction was because of these missing characteristics, I would have said

To Rev or not to Rev

2005-04-30 Thread Jim Carwardine
I know there has been lots of discussion on this topic since I joined the list and I know many Rev'ers on this list have converted to Rev as their dev language of first choice. I'm having a continuing conversation with my provider about using his sever to serve my Rev app. First was he highly

Re: To Rev or not to Rev

2005-04-30 Thread Frank D. Engel, Jr.
right now if I were using something other than Rev -- one of those so-called real programming languages. As for an object-oriented programming language, no Rev is *not* an object-oriented programming language, at least not in the traditional sense. For example, in Rev, let's say we want

Re: To Rev or not to Rev

2005-04-30 Thread Pierre Sahores
Jim, I know there has been lots of discussion on this topic since I joined the list and I know many Rev'ers on this list have converted to Rev as their dev language of first choice. I'm having a continuing conversation with my provider about using his sever to serve my Rev app. First was he

Re: To Rev or not to Rev

2005-04-30 Thread Derek Bump
it is more of scripting language that a real programming language ­ which is awesome for the non-technical developers like me and you, but is not a true object oriented application language which is being taught in universities. You know, this is exactly the kind of statement that I really

Re: To Rev or not to Rev

2005-04-30 Thread Rob Cozens
Frank, et al: As for an object-oriented programming language, no Rev is *not* an object-oriented programming language, at least not in the traditional sense. For example, in Rev, let's say we want to change the label of the button; we do this with a command like: set the label of button My

Re: To Rev or not to Rev

2005-04-30 Thread jbv
(and therefore $$$) does it take to produce reliable and fast code to the satisfaction of your clients... Show him a few apps made with Rev and ask him how much time (and $$$) it would take to do the same with Java, C, etc. Then ask him to compare the learning curve between Rev, Java, C... One

Re: To Rev or not to Rev

2005-04-30 Thread Frank D. Engel, Jr.
++, Java, JavaScript, Basic and even HTML. No, OOP is a somewhat specific paradigm for computer programming, and includes certain characteristics which are *not* present in Rev. Yes, many things are viewed as objects, and Rev even refers to things as objects (well, they are, actually

Re: To Rev or not to Rev

2005-04-30 Thread Victor Eijkhout
On Apr 30, 2005, at 10:31 AM, Derek Bump wrote: What programming language is not object oriented? Everything is an object. Object-oriented refers to programmatic objects. Classes, inheritance, polymorphism. RR has very little of that. V. -- Victor Eijkhout Innovative Computing Lab, University

Re: To Rev or not to Rev

2005-04-30 Thread Rob Cozens
Frank, et al: Before someone goes and says, but we have inheritance -- the group intercepts messages not received by objects in the group, the card receives from the group, etc. -- there is a certain level of inheritance in place, and Rev does have many characteristics of an object-oriented

Re: To Rev or not to Rev

2005-04-30 Thread Rob Cozens
Frank, et al: But I for one would not pretend to call it an actual object-oriented language until we can define our own classes, subclass those classes *and* the built-in classes (such as button, field, group, card, stack...), Again, groups and grouped groups can duplicate the functionality

Re: To Rev or not to Rev

2005-04-30 Thread Jim Carwardine
So, in summary, Rev can create an OOP, but an OOP can't create Rev... Jim on 4/30/05 12:57 PM, Dennis Brown wrote: On Apr 30, 2005, at 10:51 AM, Frank D. Engel, Jr. wrote: OTOH, PostScript is a real programming language, a point which a lot of people seem to miss... As a point

Re: To Rev or not to Rev

2005-04-30 Thread Dan Shafer
On Apr 30, 2005, at 7:31 AM, Derek Bump wrote: it is more of scripting language that a real programming language ­ which is awesome for the non-technical developers like me and you, but is not a true object oriented application language which is being taught in universities. I've made a

Re: To Rev or not to Rev

2005-04-30 Thread Dan Shafer
I couldn't resist jumping into this one just briefly. Forth is one of two programming languages I have tried to learn with complete lack of success. The other is LISP. Both are object-oriented (at least Forth is in some implementations and LISP is purely). I'm an object thinker but these two

Re: To Rev or not to Rev

2005-04-30 Thread Dan Shafer
is good for some things for which Rev is not suited (mostly apps requiring lots of interaction with system-level resources and multi-programmer projects) and Rev is good for some things for which Java is either overkill or cumbersome (almost everything else...LOL). On Apr 30, 2005, at 9:12 AM

Re: To Rev or not to Rev

2005-04-30 Thread James Spencer
On Apr 30, 2005, at 1:50 PM, Dan Shafer wrote: But that's moot. Nobody's going to do either. Java is good for some things for which Rev is not suited (mostly apps requiring lots of interaction with system-level resources and multi-programmer projects) and Rev is good for some things

Re: To Rev or not to Rev

2005-04-30 Thread Dan Shafer
I used to feel this way. And I don't code in Java myself, preferring Python when Rev won't do. But the latest changes to Java and the brilliant IDEs (e.g., Eclipse) and widget toolkits (e.g., Windowbuildedr Pro), have really streamlined the dev process. OTOH, it's still Java, which

Re: To Rev or not to Rev

2005-04-30 Thread Derek Bump
As someone already said, your ISP answer is a way to avoid any depth analysis of Rev capabilities... It's also the usual answer from ppl who usually struggle with complex programing environments and who are bitter to see other ppl developping sophisticated apps 2 to 5 times faster... I agree

Re: Rev 2.5 Beta [Performance/Rev-Online/Dreamcard/...]

2004-07-22 Thread Kevin Miller
On 22/7/04 1:31 pm, Malte Brill [EMAIL PROTECTED] wrote: 2.) Rev-online. I think this could become a cool place if it gets used. What I really would love to see is how big in KB/MB the stacks are (I just looked at it, so maybe this is somewhere I havent found yet) I created an account a few

Re: Rev 2.5 Beta [Performance/Rev-Online/Dreamcard/...]

2004-07-22 Thread Mark Brownell
on 7/22/04 5:31 AM, Malte Brill at [EMAIL PROTECTED] wrote: I think it could be useful if the player would allow Autoplay for CD Roms. This could be implemented by looking for a simple text file e.g. toc.txt with only one line of text holding the relative path to the stack that should be

Re: Rev 2.5 Beta [Performance/Rev-Online/Dreamcard/...]

2004-07-22 Thread Judy Perry
Ummm, maybe it's because I'm a really crappy scripter, but my intro to Rev/mouse events project I think ended up being 6 MB.. I guess I would have to go back and check to see how much space is due to my assuming (probably correctly) that the low-end PCs wouldn't do TTS, so I recorded my Mac doing

Re: Rev 2.5 Beta [Performance/Rev-Online/Dreamcard/...]

2004-07-22 Thread Judy Perry
I agree: I also had to pause my mouse over the new tools palette, but I think it was because I was doing the Rosetta Stone thing in my brain. The new GUI does look modern, which has to help it in the credibility market. Also, am I mistaken, or did the new tools palette do away with my observed

RE: name of .exe Rev app that sublaunches .rev file

2003-09-29 Thread Chris Sheffield
stacks. Chris Sheffield Software Development Read Naturally [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Gould Sent: Monday, September 29, 2003 4:11 PM To: use-revolution use-revolution Subject: name of .exe Rev app that sublaunches

Re: name of .exe Rev app that sublaunches .rev file

2003-09-29 Thread Richard Gaskin
Rob Gould wrote: I've got a Revolution app that is launched by an .exe file that I created in Revolution as a stub launcher. This stub launch has just 1 line of code in it that tell it to run another .rev file from a web-site. Is there a way, within that .rev file on the web-site