A problem with RunRev email account "sage.on-rev.com"

2019-05-26 Thread James Hurley via use-livecode
I have an email account with RunRev: @sage.on-rev.com It has worked flawlessly for many years, but for several weeks now all email sent from this account to Microsoft addresses (for example, Hotmail and MSN) have bounced. (All addresses on my list, other than the MS addresses, go through withou

Re: Versions 7.1.1 and 8.1.3 no long working properly

2018-12-21 Thread James Hurley via use-livecode
blem. > > Hope it works! > > Rick > >> On Dec 20, 2018, at 3:22 PM, James Hurley via use-livecode >> wrote: >> >> I am having trouble running a stack on 7.1.1, Community >> >> I have had no problem with it in the past. >> >> Bu

Versions 7.1.1 and 8.1.3 no long working properly

2018-12-20 Thread James Hurley via use-livecode
I am having trouble running a stack on 7.1.1, Community I have had no problem with it in the past. But now it will not display the Tools Palette. Closing any window I get the message “Do you want to save….” I have to click “Cancel” to proceed The stack runs, but erratically. So I thought I

Re: Speed

2014-08-24 Thread James Hurley
Sorry about that last post. Forgot to delete all message above Geoff’s. Jim ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mai

Re: Speed

2014-08-24 Thread James Hurley
There are significant differences in speed between 5.5 and 6.6. Not so much in deriving the permutations as in displaying the results in a field. To see this run this in the message box: go url "https://dl.dropboxusercontent.com/u/47044230/PermutationSpeed3.rev” (Does this only work in LC 6

Setting the cursor

2012-01-01 Thread James Hurley
How do I set the loc of the cursor? By script, of course. Jim ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinf

Point at which speaking is stopped?

2011-12-25 Thread James Hurley
I one executes a "revStopSpeach", is it possible to learn the point in the text where the speaking was stopped? Jim ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscript

Accessing archives

2011-11-24 Thread James Hurley
This problem has just come up within the last few days. When I try to access the RR archives at: http://lists.runrev.com/pipermail/use-livecode/2011-November/date.html I get the following message: Forbidden You don't have permission to access /pipermail/use-livecode/2011-November/date.html o

Repeat until (mouseDoulbeUp?)

2011-11-22 Thread James Hurley
is it possible to terminate (exit) a repeat loop with a mouseDoubleUp? Thanks, Jim Hurley ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lis

Re: Copy msg box?

2011-11-22 Thread James Hurley
Thanks Mike and Mark. I just wish it weren't so complicated. Jim > Jim, > > I believe that should be: put msg into myVar > > -- > Best regards, > > Mark Schonewille > Mike Bonner wrote: > > This works. > put msg into field 1 ___ use-liveco

Copy msg box?

2011-11-21 Thread James Hurley
Is there a way, by script, to copy the text in the msg box, not the command line but the field below. Thanks, Jim ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscriptio

Re: Location of dialog box

2011-11-18 Thread James Hurley
l stack as you suggest, I can roll my own "answer" dialogue. This would give me more flexibility. I assume many others take this route. Thanks, again, Jim Hurley > On Nov 17, 2011, at 10:05 AM, James Hurley wrote: > > > > Can one set the location of the popu

Location of dialog box

2011-11-17 Thread James Hurley
Can one set the location of the popup dialog box? In my application, it obscures the object it is addressing. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pre

Running a script after pasting text

2011-11-16 Thread James Hurley
Is there a message I might trap to run a script after pasting text into a field? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.

Re: mouse within oval filled area: A solution using geometry

2011-11-14 Thread James Hurley
Hugh, You'll love the atan2 function. It takes care of all nasty bits at 90 and 270 degrees as well as dealing with the quadrants issues. Use atan2(y,x) for angles measure clockwise from the x-axis Use atan2(-y,x) for angles measure counterclockwise from the x-axis. Jim Hurley --| Get the p

Re: mouse within oval filled area

2011-11-13 Thread James Hurley
By the way, to see how different the startAngle is from the polar angle, make a very wide oval with a very small height. Set the startangle to 45 degrees and the arcangle to say 250. The start angle appears to be about 10 degrees. ___ use-livecode mail

Re: mouse within oval filled area

2011-11-13 Thread James Hurley
st is all Greek to me. Jim > On 11/13/11 12:01 AM, James Hurley wrote: > > function r tA --Radial distance to the ellipse as afunction of the angle > put (cos(tA*pi/180))^2 / (a*a) + (sin(tA*pi/180))^2 / (b*b) into temp > return 1/sqrt(temp) > end r > > > T

Re: mouse within oval filled area

2011-11-12 Thread James Hurley
Hugh, Would this help? The script below will draw a polygon that looks like an ellipse with a start and stop angle. The trouble with the start angle and the arcangle in RR is that they are not polar angles but are related in a complex way: arcAngle = arctangent( b/a * tangent(polarangle) (Don

Re: ANN: Harmonic Oscillators

2011-11-08 Thread James Hurley
> > Message: 1 > Date: Sun, 06 Nov 2011 15:05:13 -0800 > From: Roger Guay > To: use-livecode@lists.runrev.com > Subject: ANN: Harmonic Oscillators > Message-ID: > Content-Type: text/plain; CHARSET=US-ASCII > > > Not so much an exhaustive physics/math tutorial as a demonstration of some > tech

Re: handler to connect buttons with a line

2011-11-01 Thread James Hurley
Correction: That should have been n * (n-1)/2 connecting lines. Same as the number of hand shakes among n people. :-) Jim ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subs

Re: handler to connect buttons with a line

2011-11-01 Thread James Hurley
Kresten, I think I understand. The card script below will create n button and n * (n-1) connecting lines. As the buttons are moved the connecting lines follow. Jim Hurley local myNAME, n on mouseDown put the short name of the target into myName put 5 into n repeat with i = 1 to n

Re: When has a field changed?

2011-10-26 Thread James Hurley
> > Message: 10 > Date: Wed, 26 Oct 2011 15:05:09 -0700 > From: Pete > To: How to use LiveCode > Subject: Re: When has a field changed? > Message-ID: > > Content-Type: text/plain; charset=windows-1252 [snip] >> >> On Oct 26, 2011, at 11:29 AM, Pete wrote: >> >>> Hi Ken, >>> This took

Re: When has a field changed?

2011-10-25 Thread James Hurley
Thanks all. Problem solved. The closeField is triggered only when the field is changed and the focus is changed to something outside the field. The only problem is when the next selection is a button (on the Mac at least) the focus remains in the field. The work around, as several pointed out

Re: When has a field changed?

2011-10-25 Thread James Hurley
Mark, Well there's another RR command (md5hash) I was unaware of. I worry about the size of the field text that it would be hashing. It would be book length. I don't have that much in there at present, so I can't test it, but that is the ultimate goal. Jim _

RE: When has a field changed?

2011-10-25 Thread James Hurley
Thanks all for the info about the effect of closeField. I have assumed that it was called only when a field is closed. As you point out it is also called when the field loses focus. It appears that that will happen when one clicks in another field or on the card, BUT not when one immediately

When has a field changed?

2011-10-25 Thread James Hurley
I have a text field (unlocked) that the user can edit, but I want to know when and to deal with the changes. Here is what I have come up with, something of a kludge. Is there a cleaner way? on mouseEnter --Enter the field set the textChange of me to false end mouseEnter on rawkeydown tKey

Was "New rendering test" or something like that

2011-10-20 Thread James Hurley
ply appreciate being well thought of. Thank you. Jim And now, back to Earth and breakfast. > Alejandro Tejada wrote: > >> James Hurley wrote: >>> >>> My cup already runneth over. I'm 80 years old now, but still manage to >>> keep busy. >>&g

Re: New rendering testing

2011-10-19 Thread James Hurley
gt; It doesn't do very much, it gets stuck at line 47 quickly: > >put asin(sinGamma) into gamma > > > On Oct 18, 2011, at 2:49 PM, James Hurley wrote: > >> go url "http://jamesphurley.com/jhurleyFolder/NineBallWithProjections.rev"; > > Colin, Th

Re: New rendering testing

2011-10-18 Thread James Hurley
Hi Al, On Oct 18, 2011, at 11:54 AM, Alejandro Tejada wrote: > Hi Jim, > > James Hurley wrote: >> >> Al, >> >> The potential for LC in education is two-fold. One is in writing >> educational software and the other is LC as a programming environment. &

Re: New rendering testing

2011-10-18 Thread James Hurley
Reposting with the proper Subject: Message: 4 Date: Tue, 18 Oct 2011 09:47:26 -0700 From: James Hurley To: use-livecode@lists.runrev.com Subject: Re: use-livecode Digest, Vol 97, Issue 37 Message-ID: <6a7f939b-3627-43df-95a0-84401c010...@sbcglobal.net> Content-Type: text/plain; char

Re: use-livecode Digest, Vol 97, Issue 37

2011-10-18 Thread James Hurley
h for the cue ball, and draws that line showing the projected result. You can't miss. Not much fun unless you are failure averse. go url "http://jamesphurley.com/jhurleyFolder/NineBallWithProjections.rev"; Jim Hurley [Alejandro wrote: ] > James Hurley wrote: >&

Re: New rendering testing

2011-10-17 Thread James Hurley
Al, This all started while was teaching at the university and working with a local grade school teacher. At that time Logo was all the rage and I thought it would be an ideal language in which young children might solve interesting physics problems, essentially implement numerical methods to so

Re: Galactic Gaunlet

2011-10-17 Thread James Hurley
Thanks Geoff. I'm up to 4 milliseconds now. A good part of my problem was that I didn't get the iconic messages for up and down control. Dah. I was looking for references to some of the new graphic features introduced in 5.0. I did find the layermode set to "dynamic" , but nothing about the co

New rendering testing

2011-10-16 Thread James Hurley
i have been experimenting with the new rendering tools in 5.0 Here is a stack that allows you to experiment for yourselves. Run this in the message box. go url "http://jamesphurley.com/jhurleyFolder/SimpleMotion.livecode"; It doen't appear that 5.0 is that different from 4.6 when the graphic

Galactic Gaunlet

2011-10-15 Thread James Hurley
I confess I have been able to get past the first millisecond of this game, but does anyone know where the code that runs this game is stored? I can't find anything beyond a few lines of code in the Application Browser. Jim Hurley ___ use-livecode maili

Re: Another examples of the screen refresh problem on the Mac?

2011-10-12 Thread James Hurley
oblem on the > Mac? > Message-ID: <4e959c2b.5080...@fourthworld.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > James Hurley wrote: > >> Thank you for this Bernd. It is going to take me a while to digest these new >> graphic features in

Re: Another examples of the screen refresh problem on the Mac?

2011-10-12 Thread James Hurley
Thank you for this Bernd. It is going to take me a while to digest these new graphic features in 5.0. I confess I am unaware of the interaction between RR code and the display on the screen. That's probably important. :-) Like you, I don't see much improvement of 5.0 over 4.6 in animation. The

Re: Another example of the screen refresh problem on the Mac?

2011-10-11 Thread James Hurley
f cars driving around. > > On Oct 11, 2011, at 12:52 PM, James Hurley wrote: > > > > Frustration with animation on the Mac, I guess.) > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: Another example of the screen refresh problem on the Mac?

2011-10-11 Thread James Hurley
rfect > redraw sync. > > > On Oct 11, 2011, at 10:50 AM, James Hurley wrote: > > > > I tried, using Brnd's "MoveTest" utility and the Move command is markedly > smoother at a syncRate of 6 over that at 17. > > ___

Re: Another example of the screen refresh problem on the Mac?

2011-10-11 Thread James Hurley
Colin, Thanks for this. Very informative. I tried, using Brnd's "MoveTest" utility and the Move command is markedly smoother at a syncRate of 6 over that at 17. I need to do some experimentation to test 5.0. I'm hoping that RR educates us on how best to take advantage of the improvements in

Re: Another example of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
ype: text/plain; charset=ISO-8859-1; format=flowed > > On 10/10/11 6:04 PM, James Hurley wrote: >> Ken, >> >> Thanks for your careful test. This is driving me nuts and I can't >> find a work-around. > > The workaround might be LiveCode 5.0, where animation

Re: Another examples of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
Ken, The script I sent you was just an example and I simplified what I ultimately would like to try. I would like, for example, to simulate dynamical motion, for example projectile motion, and that requires fairly close spacing of the points. Or motion around an elliptical orbit. Generally thi

Re: Another examples of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
Bob, Here is what I get on the lockMove messages. (I'm on the email digest so I have trouble copying your message.) on mouseUp put 200 into x put 200 into y put 2 into dx put 1 into dy repeat 100 times put x,y & cr after tPoints add dx to x end repeat put 200 int

Re: Another examples of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
Ken, Thanks for your careful test. This is driving me nuts and I can't find a work-around. I think the problem is RR not doing a screen refresh after each of the MULTIPLE steps. (I have always, in OS 10) had to do a refresh after EACH step. Would you please try this for me: on mouseUp put

Another examples of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
I should have said that this is a Mac OS 10 problem. > I suspect this is a problem peculiar to the Mac. > > When I run: > > set the lockmoves to true > move grc "Oval" to tPoints without waiting > move grc "rectangle" to tNewPoints without waiting > set the lockmoves to false > > The

Another examples of the screen refresh problem on the Mac?

2011-10-10 Thread James Hurley
I suspect this is a problem peculiar to the Mac. When I run: set the lockmoves to true move grc "Oval" to tPoints without waiting move grc "rectangle" to tNewPoints without waiting set the lockmoves to false The oval moves reasonably smoothly, but the rectangle take several abrupt

Re: Setting visible of control within group to false

2011-10-03 Thread James Hurley
> > Message: 16 > Date: Sun, 02 Oct 2011 19:25:25 -0500 > From: "J. Landman Gay" > To: How to use LiveCode > Subject: Re: Setting visible of control within group to false > Message-ID: <4e8900f5.3010...@hyperactivesw.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > That

Re: Setting visible of control within group to false

2011-10-02 Thread James Hurley
t; > Regards, > > Scott Rossi > Creative Director > Tactile Media, UX Design > >> Recently, James Hurley wrote: >> >> Is this supposed to happen? When I set the visible of a control within a >> group to false, it is removed from the group. >> &g

Setting visible of control within group to false

2011-10-02 Thread James Hurley
Is this supposed to happen? When I set the visible of a control within a group to false, it is removed from the group. As a work-around I find that if I include a rectangle that physically encompasses everything in the group and THEN set the visible of a control within the rectangle to false,

Re: Copying from MS word into RunRev 4.0

2011-09-02 Thread James Hurley
> > Message: 10 > Date: Fri, 2 Sep 2011 11:21:17 -0400 > From: Jonathan Lynch > To: use-livecode@lists.runrev.com > Subject: Copying from MS word into RunRev 4.0 > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > Hi everyone. > > When I type this word into MS Word: it's >

Re: Replacing the quote character

2011-08-08 Thread James Hurley
I discovered I have the MS curly quotes. This is what works for these: replace numToChar(210) with "#" in tList replace numToChar(211) with "#" in tList Thanks Mike and Jerry. Jim Hurley ___ use-livecode mailing list use-livecode@lists.runrev.com Plea

Replacing the quote character

2011-08-08 Thread James Hurley
How do I replace the quote character in a string using the "replace" command? Replace [] with "#" in tList Jim Hurley ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscr

The emdash in RunRev's RTF is missing?

2011-08-08 Thread James Hurley
When I put the url "the file path"(of a rtf file) into a field I get a lot of formatting code. That code includes a marker for the emdash that was in the file. When I set the rtfText of a field to the url "the file path" I get well formatted rtf text in that field, EXCEPT for the emdash which

Re: Countdown HH:MM:SS

2011-07-21 Thread James Hurley
> > Message: 15 > Date: Wed, 20 Jul 2011 15:19:07 -0400 > From: Roger Eller > To: How to use LiveCode > Subject: Re: Countdown HH:MM:SS > Message-ID: > > Content-Type: text/plain; charset=ISO-8859-1 > > On Wed, Jul 20, 2011 at 1:06 PM, Ken Ray wrote: > >>> Using the dateItems is definit

Re: Countdown HH:MM:SS

2011-07-20 Thread James Hurley
Roger, I forgot the stop clause. Maybe: if field 1 is "0:0:0" then --or whatever --Do your business else send countDown to me in 1 sec end if > Roger > > Is this what you are looking for? > > on mouseUp > set itemdel to ":" > put the long time into tTime > put char 1 to -4 of tT

Re: Countdown HH:MM:SS

2011-07-20 Thread James Hurley
Roger Is this what you are looking for? on mouseUp set itemdel to ":" put the long time into tTime put char 1 to -4 of tTime into field 1 convert tTime to dateItems set the hms of me to tTime countDown end mouseUp on countDown put the hms of me into temp subtract 1 fr

Re: repeat with i=

2011-07-15 Thread James Hurley
> -- > > Message: 7 > Date: Thu, 14 Jul 2011 10:06:01 -0500 > From: Ronald Zellner > To: use-livecode@lists.runrev.com > Subject: Re: repeat with i= > Message-ID: > Content-Type: text/plain; charset=us-ascii > > Jim's seems to be the most efficient and accurate, Ron

Re: repeat with i=

2011-07-14 Thread James Hurley
I haven't been following this thread so my apologies if I'm missing the point, but a while back I had to deal with the task of selecting m random people for a voter pole from a list N registered voters, where N was over 100,000. Check out "Random pick" in Rev Online. I found using an array 3 tim

Re: find by content with Mac OS

2011-06-10 Thread James Hurley
> - > > Message: 4 > Date: Fri, 10 Jun 2011 10:32:45 -0700 > From: Bob Sneidar > To: How to use LiveCode > Subject: Re: find by content with Mac OS > Message-ID: > Content-Type: text/plain; charset=us-ascii > > It does not. What you want to use is that little magnifying

Re: find by content with Mac OS

2011-06-10 Thread James Hurley
> --- > > Message: 2 > Date: Thu, 09 Jun 2011 14:11:19 -0700 > From: Richard Gaskin > To: use-livecode@lists.runrev.com > Subject: Re: find by content with Mac OS > Message-ID: <4df136f7.3050...@fourthworld.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed >

Re: Importing Word documents

2011-06-09 Thread James Hurley
t; > Economy-x-Talk Consulting and Software Engineering > Homepage: http://economy-x-talk.com > Twitter: http://twitter.com/xtalkprogrammer > KvK: 50277553 > > New: Download the Installer Maker Plugin 1.6 for LiveCode here > http://qery.us/ce > > On 9 jun 2011, at 19:29

Re: Importing Word documents

2011-06-09 Thread James Hurley
> > Message: 10 > Date: Thu, 9 Jun 2011 16:20:42 +0200 > From: Mark Schonewille > To: How to use LiveCode > Subject: Re: Importing Word documents > Message-ID: > Content-Type: text/plain; charset=us-ascii > > Jim, > > get shell("textutil -convert rtf" && quote & "path/to/file.docx" & quote) >

Importing Word documents

2011-06-09 Thread James Hurley
If one copies a Word document from within Word and pastes that copy into a LC field, much of the formatting is retained. Not so if one just uses: get url "file:" & tFileName Is there a way, within LC, to obtain the copy and paste formatting, perhaps with an imbedded AppleScript? Thanks, Jim

Re: Printing addresses on newsletters

2011-06-09 Thread James Hurley
> -- > > Message: 13 > Date: Thu, 9 Jun 2011 01:30:43 +0200 > From: Mark Schonewille > To: How to use LiveCode > Subject: Re: Printing addresses on newsletters > Message-ID: > Content-Type: text/plain; charset=us-ascii > > Hi James, > > open printing -- with dial

Printing addresses on newsletters

2011-06-08 Thread James Hurley
To clarify. After the address is printed in the address area, the page is folded and mailed. Jim > I have 350 pre-printed newsletters to be mailed to 350 different addresses. > > If I use the following in a script: > > repeat for each line tLabel in tList > replace tab with cr in tLab

Printing addresses on newsletters

2011-06-08 Thread James Hurley
I have 350 pre-printed newsletters to be mailed to 350 different addresses. If I use the following in a script: repeat for each line tLabel in tList replace tab with cr in tLabel put tLabel into field 1 of this card print this card from 0,0 to 608,792 end repeat Where tList

Re: Find restricted to the given card

2011-05-01 Thread James Hurley
Craig, Not my situation but a good point. I'm surprised that RR didn't allow for greater level of specification in where to look, as in Find tWord in field [or "veld"] "myField" of this card Jim > I assumed that you were talking about grouped "backGround" fields that also > would have h

Re: Find restricted to given card

2011-05-01 Thread James Hurley
Thanks John. That is perfect. I changed the line from: Find "jim" in field "theText" to: Find "jim" in field id the id of field "theText" Too lazy to even look up the number. Jim John Dixon Wrote > Hi Jim... > > Just had a quick test... two cards each with a field... > > on mouseU

Find restricted to the current card?

2011-05-01 Thread James Hurley
I have a field with the script: on mouseUP put the value of the clickline into tText set itemdel to tab put item 1 of tText into tText find string tText in field "thetext" end mouseUP When I click on a line in the field RR finds the string in the field "theText" and a second click

Re: Name of control in a given group

2011-04-01 Thread James Hurley
> > Message: 20 > Date: Fri, 01 Apr 2011 11:32:00 -0700 > From: Scott Rossi > To: LiveCode Mail List > Subject: Re: Name of control in a given group > Message-ID: > Content-Type: text/plain; charset="US-ASCII" > > Recently, James Hurley wrote: >

Name of control in a given group

2011-04-01 Thread James Hurley
"Put the name of control 1 in group id 1005" doesn't work. Any suggestions? Best I can do is get the number of controls in a group. I need the names. Jim Hurley ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to sub

Re: Tab panels

2011-03-25 Thread James Hurley
Thanks everyone. You always come through. You have taught me a new property: MenuHistory I have found the following works for me. In place of the "MenuPick" handler I used only a "mouseUP" handler. (The TabMenu object handles all the highlighting chores.) on mouseUp put the menuhistory of

Tab panels

2011-03-25 Thread James Hurley
I prefer the tab panel to the drop down menus. The choices are always visible. But I have a problem. If a particular tab is selected, it will no longer respond to a menuPick message. Normally this is not a problem, but I am using the panel to select lines or sentences from a long text doc

Re: Having fits with the menu bar

2011-03-14 Thread James Hurley
>case "Clear" > > if the selectedField is not empty then put > empty into the selectedField > > break > >case "Select All" > >

Re: Having fits with the menu bar

2011-03-13 Thread James Hurley
ask for it.) Thanks again, Jim Hurley > > Message: 9 > Date: Sat, 12 Mar 2011 13:43:56 -0600 > From: "J. Landman Gay" > To: How to use LiveCode > Subject: Re: Having fits with the menu bar > Message-ID: <4d7bccfc.6000...@hyperactivesw.com> > Content-Type: text/plain

Re: Having fits with the menu bar

2011-03-12 Thread James Hurley
Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > On 3/11/11 7:13 PM, James Hurley wrote: >> >> >> I'm getting nowhere with the menu bar. (Mac OS) >> >> I have two item in the menu bar, a "File" menu and a "Help" menu

Having fits with the menu bar

2011-03-11 Thread James Hurley
&&%R$$#^#*(( I'm trying to keep this clean. I'm getting nowhere with the menu bar. (Mac OS) I have two item in the menu bar, a "File" menu and a "Help" menu. They both work as expected in the IDE. But when I set the menubar property of the stack to the name of the menu bar group, the menu di

Re: LiveCode & google maps...

2011-02-15 Thread James Hurley
Peter, Thanks. Very interesting. A couple of questions. Is "lineoffsets" a custom function or a typo? And what is the "sr" function? Thanks again, Jim Hurley On Feb 15, 2011, at 10:00 AM, use-livecode-requ...@lists.runrev.com wrote: > function getMileage >put "http://maps.googleapis.c

The many faces of the thumb position

2011-01-29 Thread James Hurley
I dissevered this the hard way. Put this into the script of a scrollbar: on scrollbardrag put the thumbposition of me into x put x into field 1 put x*1 into field 2 end scrollbardrag You will find that field 1 gets the round(x) while field 2 gets the decimal value of the thumb posit

Re: Missing plug-in. Again

2011-01-01 Thread James Hurley
Message: 4 Date: Thu, 30 Dec 2010 15:50:17 -0800 From: Mark Wieder To: How to use LiveCode Subject: Re: Missing plug-in. Again Message-ID: <821110092953.20101230155...@ahsoftware.net> Content-Type: text/plain; charset=us-ascii Jim- Thursday, December 30, 2010, 3:38:44 PM, you wrote: Don't t

Re: Missing plug-in. Again

2010-12-30 Thread James Hurley
Message: 33 Date: Thu, 30 Dec 2010 17:14:38 -0600 From: "J. Landman Gay" To: How to use LiveCode Subject: Re: Missing plug-in. Again Message-ID: <4d1d125e.3080...@hyperactivesw.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed On 12/30/10 4:25 PM, dunb...@aol.com wrote: My inst

Re: How detect the object over other object is?

2010-12-20 Thread James Hurley
Message: 14 Date: Sun, 19 Dec 2010 23:41:05 -0800 (PST) From: JosepM To: use-revolut...@lists.runrev.com Subject: Re: How detect the object over other object is? Message-ID: <1292830865948-3095145.p...@n4.nabble.com> Content-Type: text/plain; charset=us-ascii Yes, but I need to check for each,

RE: focus question

2010-12-06 Thread James Hurley
-- Message: 6 Date: Mon, 6 Dec 2010 10:33:02 -0500 From: "Walt Brown" To: "'How to use LiveCode'" , Subject: RE: focus question Message-ID: <4cfd0240.8e7adc0a.73ad.5...@mx.google.com> Content-Type: text/plain; charset="US-ASCII" Interesting if useles

Re: Finding local minima and maxima of a graph

2010-12-05 Thread James Hurley
Brian, Jonathan, Jerry, et al As to the number of potential observations. Thousands of series, 10s to hundreds of thousands of observations per series at a minimum. Possibly millions. So computational efficiency isn't a luxury, it is a requirement. Brian The following method is fairly

Re: Finding local minima and maxima of a graph

2010-12-04 Thread James Hurley
Message: 26 Date: Sat, 04 Dec 2010 12:56:05 -0500 From: Bryan McCormick To: use-livecode@lists.runrev.com Subject: Finding local minima and maxima of a graph Message-ID: <4cfa80b5.3090...@deepfoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed I have a very large number of grap

Re: Nine digit zip code

2010-11-30 Thread James Hurley
Bob and Pete, Thanks for bringing this issue up. Some years back the USPS's web site made it much easier to do batch process of addresses. When they changed it to make it more difficult, I wrote a letter to the Postmaster General. (Yes, I know, really stupid.) I suggested that they might

Re: Nine digit zip codes

2010-11-30 Thread James Hurley
le about XML and GET/POST commands -- I had to look around to find a webpage that I could post the address using straight HTML rather than Java or SQL or whatever, and Google Maps was it. Only a 5-digit zip, though. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Nov

Re: Nine digit zip codes

2010-11-28 Thread James Hurley
s, etc. The key is to format the message so that the sever program can know how to decode the text and where the parts begin and end, if multiple parts are sent in one message. This is the function of 'multi-part boundaries' (long random strings that divide the parts) On Nov 27, 2010, at

Re: Nine digit zip codes.

2010-11-27 Thread James Hurley
. I don't see "visited=1&pagenumber=0 etc. anywhere in field 1 or 2. Floundering, Jim James Hurley wrote: > At the USPS web site (http://zip4.usps.com/zip4/) it is possible by > entering the street address, the city and the state to obtain the 9 > digit zip code for that ad

Re: Nine digit zip codes.

2010-11-27 Thread James Hurley
ssing the ingredient where my data (address, city and St) goes into field 1. I think that is what I am missing. I don't see "visited=1&pagenumber=0 etc. anywhere in field 1 or 2. Floundering, Jim James Hurley wrote: > At the USPS web site (http://zip4.usps.com/zip4/) it

Nine digit zip codes

2010-11-27 Thread James Hurley
I sent this message a while back, but I suspect it got lost in the RunRev-LiveCode changeover. At the USPS web site (http://zip4.usps.com/zip4/) it is possible by entering the street address, the city and the state to obtain the 9 digit zip code for that address. This may be naive, but is