Apostrophes When Downloading From On-Rev

2010-11-18 Thread Gregory Lypny
Hi everyone, I store some web form data on the On-Rev server. One thing I've noticed when I download it and import into LiveCode is that apostrophes appear as, what looks like, a lowercase i but with a small slash rather than a dot on top (ASCII 234?). Looks like I can get it by typing Option

Re: Removing Unwanted Characters From a Web Form Submission

2010-11-08 Thread Gregory Lypny
Thank you Devin, Excellent! And I will mess around with urlDecode and urlEncode as you suggested. Gregory Gregory Lypny Associate Professor of Finance John Molson School of Business Concordia University Montreal, Canada On Mon, Nov 8, 2010, at 10:51 AM, use-revolution-requ

Removing Unwanted Characters From a Web Form Submission

2010-11-08 Thread Gregory Lypny
Hello everyone, I'm building an On-Rev site, and one of the pages will be a form with a field that is intended for the submission of about a page of comments. I want to gather the submissions and process them as an array in LiveCode with the contents of another form field as the key. It would

Re: Path and File Questions for On-Rev

2010-11-04 Thread Gregory Lypny
Thanks Andre, Matthias, and Mike, All good tips. I'm using them at this very minute! Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: htt

Path and File Questions for On-Rev

2010-11-03 Thread Gregory Lypny
Hi everyone, How can I get a simple listing of files in a subfolder named, say, myFolder in my public_html directory at On-rev? If I run put the files I get the list of files in public_html. Does files() accept a path as a parameter? Haven't being able to get it to work. Likewise,

Re: Building array from list

2010-11-01 Thread Gregory Lypny
Hello William, This will give you an array with four keys corresponding to [1] fruit, [2] dances, [3] colours, and [4] animals. repeat for each line thisLine in theList put the first item of thisLine & comma after myArray[the second item of thisLine] end repeat The contents of each has a trail

CronJobs [was Re: Where is the Login to Rev's Web Hosting]

2010-10-28 Thread Gregory Lypny
Hi Andre, Well, that's just too darn easy! As always, thanks a ton, Gregory On Thu, Oct 28, 2010, at 8:47 AM, Andre G.: > Gregory, > > On your control panel there's something called "cronjobs" which is exactly > what do you want. You can specify the intervals and the commands to run. > > :D

Where is the Login to Rev's Web Hosting

2010-10-27 Thread Gregory Lypny
A, rebranding. Went to Rev's home page. Can no longer find any links to On-Rev. Can anyone point me in the right direction? Much obliged, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

Re: Storing an Array as a Custom Property

2010-10-03 Thread Gregory Lypny
> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > On 10/2/10 3:30 PM, Gregory Lypny wrote: >> Thank you for your responses. It's an interesting thread. So, if >> I've understood correctly, the LiveCode manual is incorrect because >> array

Re: Storing an Array as a Custom Property

2010-10-02 Thread Gregory Lypny
Thank you for your responses. It's an interesting thread. So, if I've understood correctly, the LiveCode manual is incorrect because arrays can, in fact, be stored as custom props. Not one to complain, but probably the only thing that saps my productivity in working with Rev or LiveCode is t

Storing an Array as a Custom Property - Citation Found

2010-10-01 Thread Gregory Lypny
Hello again everyone, The article "Arrays Examined" by Tom Healy in Issue 57 of the revUp newsletter contradicts page 236 of the LiveCode user guide. Here is a quote. "An array can be stored as a custom property of an object in an equally straight forward way: set the cStoredArray of

Storing an Array as a Custom Property

2010-10-01 Thread Gregory Lypny
Hi everyone, Page 236 of the LiveCode user guide says that arrays cannot be stored as single custom properties. Can anyone confirm this please? The reason I ask is that I thought that I had read in a past Rev newsletter that it was now possible, but I may be mistaken. I'm developing an app i

Can Get Cookies From Home But Not While On Campus

2010-09-17 Thread Gregory Lypny
Hello everyone, I've got the early stages of an On-Rev site working reasonably well, and in no small part with the patient and crystal clear advice of the Rev Internet gurus on this list. Thank you. Today, I've ran into what I hope is only a small glitch. The site uses irev scripts that

Re: Two On-Rev Scripts on One Web Page

2010-09-15 Thread Gregory Lypny
Thanks Devin and Mike, You got it, Devin. Turns out that using an Include statement twice was the problem. And I most definitely will be making frequent use of as well as viewing the source code. Regards, Gregory ___ use-revolution maili

Two On-Rev Scripts on One Web Page

2010-09-15 Thread Gregory Lypny
Hello everyone, I have an On-Rev script called from an HTML markup item in a web page. It works fine in that the information I want generated is displayed. I call the script like this (thanks for help with the syntax, André): The trouble is, if I put the exact same statement in anot

Re: Syntax for Include Statements on On-Rev

2010-09-11 Thread Gregory Lypny
Thanks yet again, Andre. Excellent! Despite all of my (little) learning setbacks, using Rev for web site beats the heck out of Filemaker. Regards, Gregory On Sat, Sep 11, 2010, at 1:00 PM, use-revolution-requ...@lists.runrev.com wrote: > Message: 16 > Date: Fri, 10 Sep 2010 19:13:43 -0300 >

Syntax for Include Statements on On-Rev

2010-09-10 Thread Gregory Lypny
Hi everyone, Had this working before but now it blanks out most of the page that is loaded. I have a script in a file called myScript.irev. I tested it and know that it works. I am trying to run it by imbedding an HTML markup item in a text object in a web page containing the following: http

Re: Cookies again: Expiry Date

2010-09-06 Thread Gregory Lypny
Good stuff, Andre, Thanks for the clarification. Gregory On Mon, Sep 6, 2010, at 1:00 PM, use-revolution-requ...@lists.runrev.com wrote: > Gregory, > > That is not an actual bug but a design behaviour. RevServer engine > will output things as soon as it can, meaning that the blank line will >

Re: Cookies again: Expiry Date

2010-09-06 Thread Gregory Lypny
Hi Stephen, Just to add to Andre's tip, I've found the setting and getting of cookies to be extremely finicky. One thing that tripped me up for about four hours was the placement of Message: 13 > Date: Sun, 5 Sep 2010 14:46:20 -0700 > From: stephen barncard > Subject: Re: Cookies again: Expir

Re: Collecting Web Form Information Using a Loop

2010-09-01 Thread Gregory Lypny
Worked well! Thanks, Mike. Gregory On Wed, Sep 1, 2010, at 1:00 PM, Mike Bonner wrote: > use a for each loop instead like > > repeat for each key theKey in $_POST >put $_POST[theKey] & comma after theSubmission > > end repeat ___ use-revolution

Re: Collecting Web Form Information Using a Loop

2010-09-01 Thread Gregory Lypny
Hello Mike, Thanks for responding. Yes, it does. I'm able to display the choice made and save them to a file. Gregory On Wed, Sep 1, 2010, at 12:39 PM, Michael Kann wrote: > Does the non-loop script work? > > -- referring to this part: > > put $_POST["Q1"] into q1 > put $_POST["Q

Collecting Web Form Information Using a Loop

2010-09-01 Thread Gregory Lypny
Hello everyone, On-rev question about collecting web form information. Suppose I have a questionnaire that uses 40 sequentially named menus for the answer choices. I could collect them individually like this. put $_POST["Q1"] into q1 put $_POST["Q2"] into q2 put $_POST

Re: Cookies, Cookies - Got the Setting but Now the Getting

2010-08-18 Thread Gregory Lypny
Hi Pierre, Thanks for responding. I'm afraid that unquoting makes no difference here. The first two below do not work but the third one does. (1) If I set a new cookie using PUT NEW HEADER and then retrieve all cookies using GET $_SERVER[HTTP_COOKIE] all in the same irev script as part of a

Cookies, Cookies - Got the Setting but Now the Getting

2010-08-17 Thread Gregory Lypny
Hello everyone, Yes, it's the pathetic cookie guy again. Having finally learned how to set them, I was wondering if anyone might care to comment on whether my method for getting a user's cookie makes sense. My understanding of get $_SERVER["HTTP_COOKIE"] is that it will only get the

Re: Trouble Setting Cookies

2010-08-16 Thread Gregory Lypny
Hi Andre and Jeff, Thank you for testing my site. I think the location of PUT NEW HEADER or PUT HEADER in relation ?> or other PUT statements is, as you have mentioned, be the issue, although I can't say that I understand it yet. It may be why I have not been able to get Andre or John Craig's

Re: Trouble Setting Cookies

2010-08-14 Thread Gregory Lypny
Thank you, Andre, That's very kind of you. Go to http://pareto.on-rev.com/setcookie.irev This page has a one-button form that sets a cookie by calling a script called sSetCookie.irev. The cookie's name is testCookie and it's value is 666. Here is the script. Clicking the button takes yo

Re: Trouble Setting Cookies

2010-08-13 Thread Gregory Lypny
s to cookies for managing sessions with my users. Regards, Gregory On Fri, Aug 13, 2010, at 1:00 PM, Andre wrote: > Gregory, > > Can you do a curl to your host and glue the answer? We need to check if the > Set-Cookies headers are actually comming thru. > > Andre > PS:

Trouble Setting Cookies

2010-08-12 Thread Gregory Lypny
Hello everyone, Having trouble setting my first cookies at On-Rev. My iRev script pulls in a page template and puts it into a variable called thePage. thePage starts with the usual stuff, such as http://www.w3.org/TR/html4/loose.dtd";> Sign In My feeble understanding of setting cookies is

Re: Functions for On-Rev

2010-08-11 Thread Gregory Lypny
Thanks Alex and Pierre, Good tips! Gregory ___ 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-revoluti

Ooops - Functions for On-Rev

2010-08-10 Thread Gregory Lypny
Please disregard my previous post on this topic. I figured it out: forgot to name the web page with .irev. How embarrassing. Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and m

Functions for On-Rev

2010-08-10 Thread Gregory Lypny
Hello everyone, Is it possible to call a file of functions for On-Rev? I created a file called functions.irev. In it, I put a function that converts strings to title case. I then placed an HTML object on a web page with but unfortunately, I get nothing. Regards, Gregory ___

Re: Keeping On-Rev Scripts and Data From Prying Eyes

2010-08-05 Thread Gregory Lypny
Excellent. Good advice. Although, I've started to mess around with it, and my page is not longer working. I think I must be entering the file paths incorrectly or I have the wrong permissions. Those are two things I will have to do some homework on. Just as a first attempt, I created a fold

Re: Keeping On-Rev Scripts and Data From Prying Eyes

2010-08-05 Thread Gregory Lypny
Thanks Richard and Pierre, Keep scripts in a folder outside of public_HTML, or as Pierre suggests, the cgi-bin folder. Good stuff. Does the same apply for data files that need read and write access by the scripts? Gregory ___ use-revolution mailing

Keeping On-Rev Scripts and Data From Prying Eyes

2010-08-04 Thread Gregory Lypny
Hello everyone, I'm tinkering with my first web deployment at On-Rev, and calling scripts using embedded in HTML text objects on web pages. These scripts and various text databases reside in the folder named public_html, which I understand is accessible by everyone. I need users to be able

Re: Setting Cookies and On-rev

2010-08-04 Thread Gregory Lypny
Thanks, Andre and Pierre, for sharing your code. Definitely something to study. Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Setting Cookies and On-rev

2010-08-03 Thread Gregory Lypny
Hello everyone, I want to create a simple login form and was wondering whether we have any examples of setting and getting cookies. I did find a discussion of this on the On-Rev forum dated August 2009, but I'm not sure whether there is anything more recent I should be reading. Regards, Greg

Re: On the Invariance of dateItems

2010-07-21 Thread Gregory Lypny
True, because it is relative to GMT. Gregory On Wed, Jul 21, 2010, at 9:33 PM, Jacqueline Landman Gay wrote: > > On 7/21/10 1:56 PM, Gregory Lypny wrote: >> I think the Internet date format is >> the only one that is invariant. Am I off on this? > > "

On the Invariance of dateItems

2010-07-21 Thread Gregory Lypny
Hello everyone, I think it's cool that we can do date calculations using simple arithmetic on the dateItems. But I don't think I understand the sentence in the comments section of the dateItems' dictionary entry that says that dateItems are invariant to a user's settings (not sure whether the

Re: revServer Configuration

2010-07-20 Thread Gregory Lypny
Thanks Mike and Devin, This will be a big help! I don't understand why information this isn't provided up front by the RR team. Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsu

Re: On-Rev [Off Topic?]

2010-07-20 Thread Gregory Lypny
O, just figured it out. All of the web page files that have Rev code need to have a .irev extension rather than .html. Thanks to everyone who so kindly responded. Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please vi

revServer Configuration

2010-07-20 Thread Gregory Lypny
Hello everyone, Despite having an On-Rev account, I'd like to get revServer running on a machine at work but I don't understand the configuration instructions I found on rev Lessons. Under the Overview section, am I supposed to set REVSERVER_HOME to some path? Where is this variable set and w

On-Rev [Off Topic?]

2010-07-20 Thread Gregory Lypny
Hello everyone, My apologies if this is not the right discussion list for an On-Rev question. I've tinkered with On-Rev but I can 't seem to get it to display the date and time in a page created with Freeway Pro. The code was placed using an HMTL markup item inserted into an HTML text box.

Re: Question About Menu Builder

2010-07-02 Thread Gregory Lypny
Excellent. Thank you, Bob. Gregory On Fri, Jul 2, 2010, at 1:00 PM, Bob Sneidar wrote: > Whatever character comes after the amperstand, that is the command key > equivalent. > > Bob ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: use-revolution Digest, Vol 82, Issue 5

2010-07-02 Thread Gregory Lypny
Good stuff, Richard. Thank you for these insights. Gregory On Fri, Jul 2, 2010, at 1:00 PM, Richard Gaskin wrote: > Message: 7 > Date: Fri, 02 Jul 2010 07:33:23 -0700 > From: Richard Gaskin > Subject: Re: Saving Changes in a Standalone > To: How to use Revolution > Message-ID: <4c2df8b3.8080.

Re: Question About Menu Builder

2010-07-02 Thread Gregory Lypny
in; charset=ISO-8859-1; format=flowed > > Gregory Lypny wrote: >> Hi Jacqueline, >> >> I looked in the Application Browser. Help appears as layer 57 and my >> new View menu appears as 56. > > If it's in the menu group, and it probably is if you made it with

Re: Saving Changes in a Standalone

2010-07-02 Thread Gregory Lypny
Hi everyone, Thanks for all of your replies. Crystal clear. It has been a long time since I've built a standalone since a lot of the stacks that I use for research are used by me alone. I made the mistake of using substacks rather stack files and a splash screen disguised as the main app as

Re: Question About Menu Builder

2010-07-01 Thread Gregory Lypny
Hi Jacqueline, I looked in the Application Browser. Help appears as layer 57 and my new View menu appears as 56. Gregory On Thu, Jul 1, 2010, at 5:46 PM, use-revolution-requ...@lists.runrev.com wrote: > The Help menu must be the last button in the layering order. Make sure > that's the case

Saving Changes in a Standalone

2010-07-01 Thread Gregory Lypny
Hi everyone, I suspect this has come up before. I just built a standalone version of a stack that allows users to import data into fields. Custom props are set during a user's session and various other changes occur. I have the following save handler in the stack script, but when I quit the

Question About Menu Builder

2010-07-01 Thread Gregory Lypny
Hi everyone, It's my first time using the menu builder, and I have a question. I added a couple of menu items to the File menu and they work fine. I then added a new menu called View to the same menu bar and added another couple of items, but these do nothing when selected. All of the items

Re: Need Help with Geometry

2010-06-29 Thread Gregory Lypny
Hi Ken, Thanks for responding. Yes (I think --- that's a whole lotta numbers you've got down there!), the top-left corner of the topmost field should remain fixed. As the stack window is enlarged, the topmost field should grow proportionately downwards and to the right. The field below shoul

Re: Need Help with Geometry

2010-06-28 Thread Gregory Lypny
Hi Craig, Yes, when the stack size changes. Gregory On Mon, Jun 28, 2010, at 1:00 PM, Craig Newman wrote: > Do you mean that the two fields scale when the stack size changes? ___ use-revolution mailing list use-revolution@lists.runrev.com Please vis

Need Help with Geometry

2010-06-28 Thread Gregory Lypny
Hello everyone, Not quite sure how to set the Geometry manager to get the results I want. I have two fields that are the exactly same size with one siting above the other and their left edges aligned. I'd like them to scale proportionately both width-wise and length-wise to the lower right, k

Re: What's With the Tilde After the Stack File Extension?

2010-06-17 Thread Gregory Lypny
Thanks Andre and Bob, Good tips. Never thought of console. I'll have to add it as a must-do to my troubleshooting checklist. Gregory On Thu, Jun 17, 2010, at 1:00 PM, Andre wrote: > Gregory, > > If you're felling like doing some unix, then you can launch console.app (not > terminal.app, I

Re: What's With the Tilde After the Stack File Extension?

2010-06-17 Thread Gregory Lypny
ash. This happens rarely but you'll be glad it backed up the > stack first someday. If someone pulled the plug in the middle of the save, > you'd still have something. > > On 16 June 2010 15:16, Gregory Lypny wrote: > >> Hello everyone, >> >> I was work

What's With the Tilde After the Stack File Extension?

2010-06-16 Thread Gregory Lypny
Hello everyone, I was working on a stack today. It has one substack. Everything was going fine until I noticed that saving the stack was taking too long (it's small) and I was getting the spinning beach ball in Mac OS X. I had the folder in which I store the stack open and noticed that durin

How Do I Get a Border on a Popup Menu Button

2010-06-14 Thread Gregory Lypny
Hello everyone, Yes, I realize it's a menu and not really a button but you do click it after all. When I create one, the Icon and Border pane of the object inspector says that it has a 2-point, 3-D border that is hilited. It does not. Can I put a border around it? I'd like it to look like a

Re: Sizing Columns to Fit

2010-06-09 Thread Gregory Lypny
Thanks to everyone who responded. Good suggestions. I will look into each one. Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://l

Sizing Columns to Fit

2010-06-08 Thread Gregory Lypny
Hello everyone, When I import tab-delimited data files, I'd like to be able to set the tab stops in a field so that each column displays its entire contents the way a spreadsheet does when you size-to-fit. It's easy to loop through the lines of the file to find the maximum number of characters

Re: Hiliting Words in a Field

2010-06-08 Thread Gregory Lypny
Thanks, Jan, John, and Michael, Good stuff. I hadn't realized that BackgroundColor was a property of text. Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage yo

Hiliting Words in a Field

2010-06-07 Thread Gregory Lypny
Hello everyone, I have a data field with many lines and I'd like to script a handler that hilites every appearance of a particular word in yellow? Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url t

Re: Naming Custom Properties

2010-04-16 Thread Gregory Lypny
Thanks for all of the responses! It appears that few of you experience the same problem as me, although everyone has naming conventions that avoid possible name conflicts. One observation, though, with respect to Craig Newman's example. When I call on the custom prop from within the same hand

Naming Custom Properties

2010-04-16 Thread Gregory Lypny
Hello everyone, I vaguely, very vaguely, recall that a custom property should have a name that is different from the variable to which it is being set. So, for example, if myArray is the variable, then set the myPropArray of this stack to myArray is fine, but set the myArray

New Version of Field Object in Version 4.5

2010-03-21 Thread Gregory Lypny
Hello everyone, I saw mention in RevUp that the field object was being updated for the next version. Is there anywhere I can learn more about the proposed changes? Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Pleas

Re: Getting a Label Field to Scroll with Another Field

2010-03-16 Thread Gregory Lypny
Thank you, Sarah and Bernd, Padding on the right is the trick then, perhaps even with spaces. And I like your idea, Bernd, of padding a line other then the first. That way, if the title line is copied as headers of an export file, you're getting only the original titles and not the padding.

Re: Getting a Label Field to Scroll with Another Field

2010-03-15 Thread Gregory Lypny
Hi André, Thanks. No problem, I knew what you meant. Unfortunately, the scrolling still does not align the two because, I believe, the title field's contents are not as wide as that of the data field. I think I need to pad the title field with spaces to get make it the same formattedWidth as

Getting a Label Field to Scroll with Another Field

2010-03-15 Thread Gregory Lypny
Hello Everyone, I have a list field called Table A. It has a horizontal scrollbar, a vertical grid and tab stops set to 80. The contents are tab delimited, and the formatted width of many of the items in a line, particularly the last item, is much greater than 80. I also have a label field c

Re: Update to 4.5.0-dp-2

2010-03-11 Thread Gregory Lypny
Thanks for the heads-up Bj?rnke and Michael, I think I'll pass on the update for now. Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferen

Update to 4.5.0-dp-2

2010-03-11 Thread Gregory Lypny
Hello everyone, I'm using the enterprise version 4.0.0-gm-1 and I keep getting a reminder window inviting me to update to 4.5.0-dp-2. Does this new version work well or is it one of those where we're expected to play around and identify the bugs as it is being finalized? Just a little c

Re: Comma-delimited values

2010-03-10 Thread Gregory Lypny
Thanks everyone for your thoughtful comments on the comma-delimiter issue. I have a couple of solutions in the works that are in the spirit of some of what has been posted. For me the presence of quotation marks around some chunks or even within them (a literal quotation) adds to the challenge

Re: Comma-delimited values

2010-03-08 Thread Gregory Lypny
before I start converting from commas to tabs. Gregory On Mon, Mar 8 , 2010, at 1:00 PM, Richmond Mathewson wrote: > > On 08/03/2010 19:44, Gregory Lypny wrote: >> Hello everyone, >> >> I'm creating an app that imports comma-delimited tables. A few lines might &

Comma-delimited values

2010-03-08 Thread Gregory Lypny
Hello everyone, I'm creating an app that imports comma-delimited tables. A few lines might look like this, where there are 14 items per line. "Mon, Jan 18 , 2010",9:14 AM,130557,4319,Trade,Buy,X,135,8.25,10,-82.5,1417.5,20,10 "Mon, Jan 18 , 2010",9:14 AM,130558,4371,Accept,Your ASK,X,135,8.25

Dispatch Versus Send

2010-03-04 Thread Gregory Lypny
Hello everyone, What's the difference between the two other than Dispatch using the normal message path? Regards, Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and m

Re: Standalone Not Working

2009-12-03 Thread Gregory Lypny
Thank you Sarah, I should have thought of that! Works like a charm now. Gregory On Thu, Dec 3, 2009, at 6:44 AM, Sarah wrote: >> >> Created a standalone on my Mac for both Mac and Windows. I opened the Mac >> version and it works fine. I then uploaded the whole things (folder with

Standalone Not Working

2009-12-02 Thread Gregory Lypny
Hello everyone, Created a standalone on my Mac for both Mac and Windows. I opened the Mac version and it works fine. I then uploaded the whole things (folder with both versions) to a FirstClass server so that my students can download it. When I download the Mac version from the server, it wi

RE: Problem Calling Custom Card Props with the Same Name Using Switch

2009-12-01 Thread Gregory Lypny
cated, but the answer lay hidden in yours. Glad that it's resolved, and thanks to everyone for taking such a thoughtful look at it! Regards, Gregory Gregory Lypny Associate Professor of Finance John Molson School of Business Concordia University Montre

RE: Problem Calling Custom Card Props with the Same Name Using Switch

2009-11-30 Thread Gregory Lypny
The bug report for this bug is 8476. Gregory ___ 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-

RE: Problem Calling Custom Card Props with the Same Name Using Switch

2009-11-30 Thread Gregory Lypny
, but when you say long name, do you mean the long name of the card? If so, then that does not work either. In any case, a bug report is in order. Regards, Gregory Lypny Associate Professor of Finance John Molson School of Business Concordia Unive

Problem Calling Custom Card Props with the Same Name Using Switch

2009-11-29 Thread Gregory Lypny
Hello everyone, Can we assign the same name to custom props of two different objects, for example, the modificationDate of Card 1 and the modificationDate of Card 2? I created a simple stack with two cards named First Card and Second Card, a common button that assigns cu

Re: iRev list of commands available

2009-09-11 Thread Gregory Lypny
Thanks Jacqueline, This is good to know. But like Thomas, I would very much like some sort of document that lists commands that are unique to iRev, RunRev commands that are not currently compatible with iRev, and syntax examples with tips like the very good one that you've provided here.

Re: use-revolution Digest, Vol 72, Issue 12

2009-09-09 Thread Gregory Lypny
Thank you Jacqueline, Yes, I meant scripts. I had seen these at Sarah's site and was guessing that they might be the right thing. I'm going to start tinkering with the "include" keyword. Regards, Gregory On Wed 9 Sep, 2009, at 6:59 AM, Jacqueline wrote:

Re: On-Rev Function in One File Called by Another

2009-09-08 Thread Gregory Lypny
Excellent. Thank you, Jim. G. On Tue 8 Sep, 2009, at 1:00 PM, use-revolution- requ...@lists.runrev.com wrote: Does this help you? Use the message path just like on your local machine start using stack "libStackGLtricks.rev" Now they are in the message path warning: handler names

How Do I Exit an iRev Script

2009-09-08 Thread Gregory Lypny
Hello everyone, What is the iRev equivalent of exit mouseUp? Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.

On-Rev Function in One File Called by Another

2009-09-08 Thread Gregory Lypny
Hello everyone, Wondering if anyone has an example of one iRev file calling a function in another iRev file. The idea is to build up a little library of portable functions. Regards, Gregory ___ use-revolution mailing list use-revolution@lists.ru

Re: On-Rev and Daylight Savings Time (Addendum)

2009-09-02 Thread Gregory Lypny
Maybe we can compare notes then. I'm going to work out something rough-and-ready to user in an online experimental market. Gregory On Wed 2 Sep 2009, at 1:00 PM, use-revolution-requ...@lists.runrev.com wrote: On Sep 1, 2009, at 11:28 AM, Gregory Lypny wrote: Hi Jim, T

Re: On-Rev and Daylight Savings Time (Addendum)

2009-09-01 Thread Gregory Lypny
Hi Jim, Thanks for your thoughtful response. I had grappled with DST in another project that involved press releases that were time stamp GMT. It was tricky. I like your idea of getting the seconds every day at midnight. That's clever, and I think I can incorporate that into my site.

Re: On-Rev and Daylight Savings Time

2009-08-31 Thread Gregory Lypny
Thank you Sarah, Jim, Stephan, and Thomas! Dang, Texas. Birthplace of Buddy Holly and Collings guitars, and a one-hour time difference from Montreal, which appeared to my deceived eyes (as so aptly pointed out by Sarah) as the lack of adjustment for DST. Can be fixed. Regards,

Re: [OT] Styled Text in iWeb

2009-08-31 Thread Gregory Lypny
Thanks again for the heads up, Sarah. I had started cutting and pasting bits of source code from text boxes but was probably taking the wrong stuff. I'll take a stab at the tags you've suggested below. Regards, Gregory On 31-Aug-09, at 11:25 PM, use-revolution-req

On-Rev and Daylight Savings Time (Addendum)

2009-08-31 Thread Gregory Lypny
Just a little more detail on my previous post. Would appreciate anyone confirming that iRev does not adjust for local Daylight Savings Time or I've misunderstood something because this has the potential to really mess up my work if I get it wrong. There's a difference of one hour as this c

[OT] Styled Text in iWeb

2009-08-31 Thread Gregory Lypny
Hi everyone, Suppose I'm using some iFrame tags in iWeb HTML snippets to display the results of handlers of irev code. Does anyone know what formatting codes I would use to give the text in those frames the same style as that of the default Text Boxes for the particular iWeb theme being

On-Rev and Daylight Savings Time

2009-08-31 Thread Gregory Lypny
Hello everyone, How can I handle daylight savings time in my On-Rev code? We're currently in DST in Montreal. When I type put the long time in Revolution's message box, I get the correct time as 5:52:13 PM but when I ask for the long time in an On-Rev handler I get

Re: Building an On-Rev Guest Book

2009-08-28 Thread Gregory Lypny
Hi Sarah, Looks like it will save the entry to a file only if the form action is the iRev code. But I think I've found a fix, and that is to include target="_self" or some other frame in the form tag. I'm going to play around with it and try to incorporate some of the neat code from your

Re: Building an On-Rev Guest Book

2009-08-28 Thread Gregory Lypny
w.troz.net/onrev/ especially the Simple Form script. Cheers, Sarah Sent from my iPhone On 28/08/2009, at 7:23 AM, Gregory Lypny wrote: Hello everyone, Well, I've made some progress with this whole On-Rev thing. I'm trying to reproduce Kevin Miller's video example of guest

Building an On-Rev Guest Book

2009-08-27 Thread Gregory Lypny
Hello everyone, Well, I've made some progress with this whole On-Rev thing. I'm trying to reproduce Kevin Miller's video example of guest book form that echoes the entry and save it to a file except that I want to do it using an HTML snippet object in an iWeb page that I've got served fr

Safe Place to Put Files at On-Rev

2009-08-27 Thread Gregory Lypny
Hello everyone, Starting to tinker with my On-Rev account, and I'm hoping someone can tell me where I should place data files so that they are not public but they can be read and written to in the processing of forms and accessed by Rev scripts. Regards, Gregory _

Web Disk Account at On-Rev

2009-08-27 Thread Gregory Lypny
Probably a silly question but does a web disk account permit access to my computer? Is it a security risk? Gregory ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Putting Stuff Before the Message Box

2009-08-20 Thread Gregory Lypny
iors that cannot easily be traced. It is cool that we can get under the hood and make such changes. My preference is not to do this since Rev is how I make my living. Jim Ault Las Vegas On Aug 19, 2009, at 2:29 PM, Gregory Lypny wrote: Thanks for thoughtful responses Craig, Peter, and Shao, S

Re: Putting Stuff Before the Message Box

2009-08-19 Thread Gregory Lypny
Thanks for thoughtful responses Craig, Peter, and Shao, So, it wasn't the meds. As I mostly use the message box for dumping the results of rough tests, it's good to know its idiosyncrasies so I don't mistakenly think I've goofed. Regards, Gregory ___

Re: Why is Put not Putting?

2009-08-17 Thread Gregory Lypny
Hello everyone, On Mon, Aug 17, 2009, at 7:51 PM, Craig Newman wrote: OK. With a much larger amount of data, the field does not, in fact, load the text until the end of the handler. The "wait with messages" works like a charm. So is Gregory right? Does Rev blanch at the task upcoming, even

Re: Why is Put not Putting

2009-08-17 Thread Gregory Lypny
84f-421c-b8ef-5bca89796...@azurevision.co.uk> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes On 17 Aug 2009, at 16:53, Gregory Lypny wrote: I use the simple handler below to process large amounts of text. Because it can take anywhere from a couple of seconds to ten minu

Putting Stuff Before the Message Box

2009-08-17 Thread Gregory Lypny
Hello again, I apologize in advance. Maybe it's the meds. I created a list with three lines: put "One" & return & "Two" & return & "Three" into theList I want to have the message box display 3 One Two Three Why does put theList put the number of lines in theList

  1   2   3   4   >