Need info about Mark Cards command...

2014-10-26 Thread Tim Selander
Now that v7 is out, I've started playing with bringing some of my company's (still in use) HyperCard/9to5 Reports systems over to LiveCode. I have a customer database. If I want to pull up all Tokyo customers, mark cards where Tokyo is in field city is working well. But if I want to pull

Re: Need info about Mark Cards command...

2014-10-26 Thread Jerry Jensen
On Oct 25, 2014, at 10:58 PM, Tim Selander selan...@tkf.att.ne.jp wrote: Question 2) How would I use the mark cards, or some other command, to pull up AND constructs. For example marks cards where Main Street AND Central Ward are in field address ?? Just an untested guess, but how about:

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 25/10/14 22:44, Peter Haworth wrote: I have a free plugin that allows you to enter your own notes and tags about a dictionary entry. They are local to you so not available to all users. If interested, you can find it at http://www.lcsql.com/free-stuff.html Pete lcSQL Software

Re: Need info about Mark Cards command...

2014-10-26 Thread Tim Selander
Jerry, That did it -- thanks! Thought I had tried that combo, but I guess not! Same syntax using OR instead of AND solves my first question too. Tim Selander Tokyo, Japan On 10/26/14, 3:32 PM, Jerry Jensen wrote: On Oct 25, 2014, at 10:58 PM, Tim Selander selan...@tkf.att.ne.jp wrote:

Re: sendmail through On-Rev server

2014-10-26 Thread Pyyhtiä Christer
The following script works well - on Tio. Used it yesterday with no problems. Response was immediate. I got it from someone at RR. rgds christer -- -- mail -- -- Emails the given message to the recipients specified. -- Each address passed can have a name attached in the form name

Re: how to disturb newbies

2014-10-26 Thread Jacques Hausser
Le 26 oct. 2014 à 03:27, Kay C Lan lan.kc.macm...@gmail.com a écrit : Again, I FULLY SUPPORT Richard's recommendation that if anyone notices any errors or even believes there should be better examples, Notes, Tips or inclusions in the Dictionary and User Guide, then PLEASE submit them to:

deleting lines in a field

2014-10-26 Thread larry
I have a field that allows non-contiguous selection of lines What is the easiest way to delete the selected lines? I've tried a bunch of things and I end up doing this big convoluted script to do it. It seems like it should be simple? Thanks, Larry

hilitedline

2014-10-26 Thread larry
I have the following script in a button: on mouseUp put the hilitedline of field mySelects into myDelete repeat for each item L in myDelete delete line L of field mySelects end repeat end mouseUp If the hilitedlines of the field are, say, 1,4,7 then it will delete lines 1 and 4, but not

Re: how to disturb newbies

2014-10-26 Thread larry
I appreciate all this effort to improve the Dictionary. But I feel the discussion about allowing EACH LC user to personally modify the Dictionary with his/her own notes is being overlooked. I think it is crazy that LC only allows notes in the Dictionary that have been reviewed by the staff. I

Re: hilitedline

2014-10-26 Thread Terry Judd
Larry - you need to delete the lines in reverse orderŠ put the hilitedlines of field mySelects into myDelete repeat with i = (the number of items in myDelete) down to 1 delete line (item i of myDelete) of fld ³mySelects end repeat HTH, Terry... On 26/10/2014 7:58 pm,

Re: hilitedline

2014-10-26 Thread larry
Thanks Terry, Sometimes I wish I wasn't so dense. Larry - Original Message - From: Terry Judd terry.j...@unimelb.edu.au To: How to use LiveCode use-livecode@lists.runrev.com Sent: Sunday, October 26, 2014 4:35 AM Subject: Re: hilitedline Larry - you need to delete the lines in

Re: Sort cards doesn't work in 7.0

2014-10-26 Thread FlexibleLearning.com
As I tell my own clients: Don't worry about backups... be paranoid! Hugh Senior FLCo ...and my backup negligence is forever cured. You're one of the lucky ones. Most of us don't get religious about backups until after we lose critical data. ___

Re: Looking for best practice in switching libraries

2014-10-26 Thread Paul Dupuis
On 10/25/2014 10:28 PM, Phil Davis wrote: Sorry, I was late to the party! Phil Thank you for the tip, late or not :-) ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

On-Rev Client

2014-10-26 Thread Kenji Kojima
On-Rev client cannot connect to tio on-rev server on Yosemite. It happens only on Yosemite (MacOS X 10.10). Is it only me? -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: how to disturb newbies

2014-10-26 Thread Richard Gaskin
Jacques Hausser wrote: Le 26 oct. 2014 à 03:27, Kay C Lan a écrit : Again, I FULLY SUPPORT Richard's recommendation that if anyone notices any errors or even believes there should be better examples, Notes, Tips or inclusions in the Dictionary and User Guide, then PLEASE submit them to:

[bug 13814] LiveCode 7.0

2014-10-26 Thread Shawn Blc
Submitted bug # 13814. Can anyone confirm or deny on their system. I'm running OSX Yosemite. LC 7.0 Commercial. Thanks. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: how to disturb newbies

2014-10-26 Thread Richard Gaskin
larry wrote: I appreciate all this effort to improve the Dictionary. But I feel the discussion about allowing EACH LC user to personally modify the Dictionary with his/her own notes is being overlooked. I think it is crazy that LC only allows notes in the Dictionary that have been reviewed

Re: how to disturb newbies

2014-10-26 Thread Earthednet-wp
Folks, To me, allowing the entire LC user base to modify the dictionary that we all use, will cause more problems than it solves. Richard's idea to form a team of experienced live coders to at least review additions and changes and brainstorm improvements is a great idea. Also, a feature that

orientation in iOS 8.1 simulator

2014-10-26 Thread Klaus major-k
Hi friends, I'm not getting it! Not sure if this is my fault or the simulators? 8-) OS X 10.10, LC 6.7, Xcode 6.1 I have a stack 320*480 px with only one card with one field and this script of cd 1:

Re: Looking for best practice in switching libraries

2014-10-26 Thread Peter Haworth
I'm wondering what is the best practice for when to delete a library. For example, if I have multiple stacks in memory that all access the same library stack, I can't stop using it until the last stack closes. Should I implement some sort of count mechanism to determine when it's safe to stop

Re: sendmail through On-Rev server

2014-10-26 Thread Paul Hibbert
Thanks Christer, That's the script I was trying on Diesel, but sadly with no joy. Paul On Oct 26, 2014, at 1:20 AM, Pyyhtiä Christer chris...@mindcrea.com wrote: The following script works well - on Tio. Used it yesterday with no problems. Response was immediate. I got it from someone

Re: On-Rev Client

2014-10-26 Thread Paul Hibbert
Kenji, RR are working on restoring the On-Rev client, some servers are working, but not all just yet. You could report it to supp...@on-rev.com Paul On Oct 26, 2014, at 7:51 AM, Kenji Kojima in...@kenjikojima.com wrote: On-Rev client cannot connect to tio on-rev server on Yosemite. It

Re: orientation in iOS 8.1 simulator

2014-10-26 Thread Sean Cole (Pi)
Hi Klaus, I was getting this too (from some time ago). There is a delay in the message between 'orientationChanged' to updating the 'mobileDeviceOrientation' value. So, what I do is: on orientationChanged send checkOrientation to me in 20 millisec end orientationChanged on

Re: orientation in iOS 8.1 simulator

2014-10-26 Thread Klaus major-k
Hi Sean, Am 26.10.2014 um 17:45 schrieb Sean Cole (Pi) s...@pidigital.co.uk: Hi Klaus, I was getting this too (from some time ago). There is a delay in the message between 'orientationChanged' to updating the 'mobileDeviceOrientation' value. So, what I do is: on orientationChanged

Re: On-Rev Client

2014-10-26 Thread Kenji Kojima
Paul, Thanks. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Oct 26, 2014, at 12:16 PM, Paul Hibbert paulhibb...@mac.com wrote: Kenji, RR are working on restoring the On-Rev client, some servers are working, but not all just yet. You could report it to supp...@on-rev.com

Re: orientation in iOS 8.1 simulator

2014-10-26 Thread Klaus major-k
Hi Sean, Am 26.10.2014 um 18:10 schrieb Klaus major-k kl...@major-k.de: Hi Sean, Am 26.10.2014 um 17:45 schrieb Sean Cole (Pi) s...@pidigital.co.uk: Hi Klaus, I was getting this too (from some time ago). There is a delay in the message between 'orientationChanged' to updating the

Re: how to disturb newbies

2014-10-26 Thread Mark Wieder
Richard- Sunday, October 26, 2014, 8:24:47 AM, you wrote: It may seem crazy until you consider the alternative: once any communications venue is open for unmoderated posting by everyone, it becomes a spam magnet. Right cough Something like Wikipedia that would never work cough -- -Mark

Re: Looking for best practice in switching libraries

2014-10-26 Thread Paul Dupuis
On 10/26/2014 12:07 PM, Peter Haworth wrote: I'm wondering what is the best practice for when to delete a library. For example, if I have multiple stacks in memory that all access the same library stack, I can't stop using it until the last stack closes. Should I implement some sort of count

Re: how to disturb newbies

2014-10-26 Thread Richmond
I wonder . . . If for the Dictionary . . . We don't need a system like the bug reporting system, and a triage nurse who weeds through the cases. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Looking for best practice in switching libraries

2014-10-26 Thread Mark Wieder
Phil- Saturday, October 25, 2014, 7:28:16 PM, you wrote: Sorry, I was late to the party! No problem. Can't say it often enough. -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected and stored by the National Security Agency (NSA) in secret. The parties to

Re: how to disturb newbies

2014-10-26 Thread larry
Richard, It appears to me that you missed my point. I do not see how me adding a note to my OWN Dictionary causes a spam issue. Right now if I want to add a note to the Dictionary I have to log in. Then the note is submitted for approval (I don't know to whom.) Then if the note is approved by

Re: how to disturb newbies

2014-10-26 Thread larry
Hi Bill As I already replied to Richard: It seems you missed my point. I am NOT talking about the LC user base modifying the Dictionary we all use. I specifically said: MY Dictionary. In other words, just my own copy of the Dictionary on my machine. I apologize if I did not make that more clear.

Re: how to disturb newbies

2014-10-26 Thread Richard Gaskin
Mark Wieder wrote: Richard- Sunday, October 26, 2014, 8:24:47 AM, you wrote: It may seem crazy until you consider the alternative: once any communications venue is open for unmoderated posting by everyone, it becomes a spam magnet. Right cough Something like Wikipedia that would never

Re: how to disturb newbies

2014-10-26 Thread Mark Wieder
Richmond- Sunday, October 26, 2014, 10:37:32 AM, you wrote: I wonder . . . If for the Dictionary . . . We don't need a system like the bug reporting system, and a triage nurse who weeds through the cases. As I understand things, that's what we have now, the problem being that it gets

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 26/10/14 19:47, la...@significantplanet.org wrote: Hi Bill As I already replied to Richard: It seems you missed my point. I am NOT talking about the LC user base modifying the Dictionary we all use. I specifically said: MY Dictionary. In other words, just my own copy of the Dictionary on my

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 26/10/14 19:49, Richard Gaskin wrote: Mark Wieder wrote: Richard- Sunday, October 26, 2014, 8:24:47 AM, you wrote: It may seem crazy until you consider the alternative: once any communications venue is open for unmoderated posting by everyone, it becomes a spam magnet. Right cough

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 26/10/14 19:50, Mark Wieder wrote: Richmond- Sunday, October 26, 2014, 10:37:32 AM, you wrote: I wonder . . . If for the Dictionary . . . We don't need a system like the bug reporting system, and a triage nurse who weeds through the cases. As I understand things, that's what we have now,

Re: how to disturb newbies

2014-10-26 Thread Peter Haworth
On Sun, Oct 26, 2014 at 8:33 AM, Earthednet-wp proth...@earthednet.org wrote: Perhaps, taking it a bit further, users' private notes might contain a button to submit them to the dictionary committee for review and inclusion in the master dictionary. I'd have to look at the dictionary code

Re: how to disturb newbies

2014-10-26 Thread Mark Wieder
larry- Sunday, October 26, 2014, 10:47:27 AM, you wrote: Hi Bill As I already replied to Richard: It seems you missed my point. I am NOT talking about the LC user base modifying the Dictionary we all use. I specifically said: MY Dictionary. In other words, just my own copy of the

Re: how to disturb newbies

2014-10-26 Thread Mark Wieder
Richard- Sunday, October 26, 2014, 10:49:51 AM, you wrote: Right cough Something like Wikipedia that would never work cough That may point to an interesting direction: what automated systems does Wikipedia employ to prevent spam? Well, there are notifications, all entries are logged (text,

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 26/10/14 19:54, Peter Haworth wrote: On Sun, Oct 26, 2014 at 8:33 AM, Earthednet-wp proth...@earthednet.org wrote: Perhaps, taking it a bit further, users' private notes might contain a button to submit them to the dictionary committee for review and inclusion in the master dictionary.

[NoSQL] Cloudant

2014-10-26 Thread Shawn Blc
I'm trying to wrap my head around using Cloudant (NoSQL) for data crud operations. I can read the whole document into my LC demo desktop project as long as I have the objectID, but not having luck with searching elements or writing, or creating a new doc. Has anyone gone down this road and has

Re: Confused

2014-10-26 Thread Mark Wieder
Richmond- Friday, October 24, 2014, 2:36:16 AM, you wrote: I've just installed 6.7 on linux and the about window does, indeed, display the Livecode 7 details . . . something not quite right. Confirmed here. Not a show-stopper, but weird. Maybe a result of merging the develop and refactor

Re: how to disturb newbies

2014-10-26 Thread Peter Haworth
On Sun, Oct 26, 2014 at 10:44 AM, la...@significantplanet.org wrote: Also, it would be nice to search on the body and notes of the Dictionary. If that is currently possible (in 6.1.1) I do not know how to do it. Check out Bjornke's bvgDocu stack. Pete lcSQL Software http://www.lcsql.com Home

Re: Confused

2014-10-26 Thread Richmond
On 26/10/14 20:06, Mark Wieder wrote: Richmond- Friday, October 24, 2014, 2:36:16 AM, you wrote: I've just installed 6.7 on linux and the about window does, indeed, display the Livecode 7 details . . . something not quite right. Confirmed here. Not a show-stopper, but weird. Maybe a result

Re: how to disturb newbies

2014-10-26 Thread Jeff Reynolds
One thing also with documentation like the, and newbies are the most vulnerable to this, is how well written it is and does it cover all the steps (ie not start c, d, e...). It hard for a high end development crew to hopefully have the ability to write and edit to a very clean and readable

Re: how to disturb newbies

2014-10-26 Thread Richmond
On 26/10/14 20:11, Jeff Reynolds wrote: One thing also with documentation like the, and newbies are the most vulnerable to this, is how well written it is and does it cover all the steps (ie not start c, d, e...). It hard for a high end development crew to hopefully have the ability to write

Re: FTP vs MYSQL for storing splash stack loading

2014-10-26 Thread Shawn Blc
Why not have the stores simply use a splash stack, the most recent version is always on the server? All the store needs is port 80 open. Example: go stack URL http://chum310.byu.edu/InClass/09-RevAndInternet/InternetLecture.rev; On Fri, Oct 24, 2014 at 2:06 PM, Bob Sneidar

Re: how to disturb newbies

2014-10-26 Thread Richard Gaskin
larry wrote: Richard, It appears to me that you missed my point. Indeed, and apparently I'm not alone in that. I understand that you want a tool for your own personal use that is separate from what others would have access to. You've made the request rather frequently here, and I

Re: how to disturb newbies

2014-10-26 Thread Mark Wieder
What Jeff said. I almost never hear anyone complaining about there being too much documentation. -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected and stored by the National Security Agency (NSA) in secret. The parties to this email do not consent to the

Re: how to disturb newbies

2014-10-26 Thread Richard Gaskin
Jeff Reynolds hit on some excellent points here: One thing also with documentation like the, and newbies are the most vulnerable to this, is how well written it is and does it cover all the steps (ie not start c, d, e...). It hard for a high end development crew to hopefully have the ability

Re: how to disturb newbies

2014-10-26 Thread Peter Haworth
On Sun, Oct 26, 2014 at 11:29 AM, Richard Gaskin ambassa...@fourthworld.com wrote: I'd like to see a tag system introduced, so both the core team and the community could supply tags for token entries. Hi Richard, My stack lets you add tags to entries as well as writing notes, and search on

pre-7.0.0 Unicode question

2014-10-26 Thread Richmond
I wonder why this doesn't work: on mouseUp set the useUnicode to true if char 2 of fld ff is numToChar(7637) then set the unicodeText of char 2 of fld ff to numToChar(100) end if end mouseUp --- AND, while I'm here: why, when I copy from the

Re: hilitedline

2014-10-26 Thread JB
I had trouble with that too. Most people probably do. If you are deleting a bunch of lines say that are 5 thru 38 you can delete line 5 and then keep deleting line 5 until you have deleted enough lines. John Balgenorth On Oct 26, 2014, at 3:57 AM, la...@significantplanet.org

Re: hilitedline

2014-10-26 Thread Mark Wieder
John- Sunday, October 26, 2014, 1:22:37 PM, you wrote: I had trouble with that too. Most people probably do. If you are deleting a bunch of lines say that are 5 thru 38 you can delete line 5 and then keep deleting line 5 until you have deleted enough lines. LOL. Quite true. I never

Re: pre-7.0.0 Unicode question

2014-10-26 Thread Kenji Kojima
Richmond, I don’t know the character “7637”. But i thought you wanted to write like this. on mouseUp if char 2 of fld 1 is numToCodepoint(12356) then put numToCodepoint(12354) into char 2 of fld 1 end if end mouseUp the script changes “あいうえお” to “ああうえい”. -- Kenji Kojima / 小島健治

[OT] Jack Bruce Died

2014-10-26 Thread Peter Haworth
For the bass players amongst us and those who remember English band Cream: http://www.independent.co.uk/news/people/jack-bruce-dead-cream-bassist-dies-of-liver-disease-aged-71-9818343.html Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html

Re: orientation in iOS 8.1 simulator

2014-10-26 Thread Sean Cole (Pi)
Found it :D You have to set orientations at inception. mobileSetAllowedOrientations portrait,portrait upside down,landscape left,landscape right Then it works perfectly, even the resize without waiting. Sean Cole *Pi Digital Productions Ltd* www.pidigital.co.uk +44(1634)402193

Re: [OT] Jack Bruce Died

2014-10-26 Thread Alex Tweedly
On 26/10/2014 22:52, Peter Haworth wrote: For the bass players amongst us and those who remember English band Cream: http://www.independent.co.uk/news/people/jack-bruce-dead-cream-bassist-dies-of-liver-disease-aged-71-9818343.html English ?When 1/3 of them were Scottish rather than

Re: pre-7.0.0 Unicode question

2014-10-26 Thread Kenji Kojima
the script changes “あいうえお” to “ああうえい”. Correction: the script changes “あいうえお” to “ああうえお”. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Oct 26, 2014, at 6:03 PM, Kenji Kojima in...@kenjikojima.com wrote: Richmond, I don’t know the character “7637”. But i thought you wanted to

Re: how to disturb newbies

2014-10-26 Thread Dr. Hawkins
On Sun, Oct 26, 2014 at 10:30 AM, Mark Wieder mwie...@ahsoftware.net wrote: Right cough Something like Wikipedia that would never work cough Wikipedia has active moderation. My thinking would be to have enough moderation that a person's first few are held until approved, and after that point,

Re: deleting lines in a field

2014-10-26 Thread Dr. Hawkins
Once you have the lines in variable theLins repeat with i = the number of words in theLins down to 1 delete line (word i of theLins) of theData end repeat On Sun, Oct 26, 2014 at 2:10 AM, la...@significantplanet.org wrote: I have a field that allows non-contiguous selection of lines What

Re: [OT] Jack Bruce Died

2014-10-26 Thread Mark Wieder
Pete- Sunday, October 26, 2014, 3:52:19 PM, you wrote: For the bass players amongst us and ... or the wonderful duets he did with Linda Ronstadt on Carla Bley's Escalator Over the Hill... -- -Mark Wieder ahsoftw...@gmail.com This communication may be unlawfully collected and stored by the