Re: Finding matched parentheses

2013-07-28 Thread Geoff Canyon
I checked, and your solution and my strictTotalMatching function return identical results. It took me a while to figure out how it works. It's very clever, but interestingly, not very efficient -- it almost certainly doesn't matter for the likely use cases, but if you throw a string with a few

Re: Finding matched parentheses

2013-07-28 Thread Thierry Douez
2013/7/27 Peter Haworth p...@lcsql.com On Fri, Jul 26, 2013 at 10:10 AM, Thierry Douez th.do...@gmail.com wrote: There are solutions for recursive pattern matching with PCRE, but never being able to make them work within LC. Hi Thierry, If you follow the link in my post to Geoff,

Re: Replicant

2013-07-28 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, Richmond, …. if you did not exist ….. …… we would have to invent you ! Best Regards - Francis ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

How can I get Unicode Menu Items on Windows?

2013-07-28 Thread in...@kenjikojima.com
Hi, It works on Mac OS, But does not work on Windows. go to url http://kenjikojima.com/livecode/download/unicodeMenuStudy.livecode; What's wrong? Thanks, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ ___ use-livecode mailing list

Re: Easier Dropbox Access

2013-07-28 Thread Guglielmo Braguglia
I'm back and ... ... *thanks to Mike Kerner*, a new version (1.04) of the phxDropboxLib, solving the /folder/ problem on mobile phx_DropboxWriteFile, as been made available still on the same link : http://www.phoenixsea.ch/downloads/Livecode/phxDropboxLib.zip Still thanks to Mike, also some

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread Richmond
On 07/28/2013 03:14 PM, in...@kenjikojima.com wrote: Hi, It works on Mac OS, But does not work on Windows. go to url http://kenjikojima.com/livecode/download/unicodeMenuStudy.livecode; What's wrong? Thanks, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ Sorry; pictures required for

Missing APPLY button on IDE

2013-07-28 Thread Camm
Hi , On Windows 7:- The Apply button is missing on the script editor in IDE ?? Also errors shown but do not go to script line number ?? Any clues .. Regards Camm ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: Missing APPLY button on IDE

2013-07-28 Thread Richmond
On 07/28/2013 04:11 PM, Camm wrote: Hi , On Windows 7:- The Apply button is missing on the script editor in IDE ?? Also errors shown but do not go to script line number ?? Any clues .. Regards Camm Which version are you using? I just had a go with LC 6.1.1 rc 1

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread in...@kenjikojima.com
Richmond, You installed a vertical font. You can install regular fonts from an installer CD. http://www.dartmouth.edu/~introjpn/00_windowsxp.html You can show Japanese font in a field. But can not select menu items correctly. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Jul 28,

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread Richmond
On 07/28/2013 06:06 PM, in...@kenjikojima.com wrote: Richmond, You installed a vertical font. That seems quite obvious from my screenshots; unfortunately EPSON did not specify that those were vertical fonts. I'm sorry; but as I have no Japanese, and almost as little knowledge of Windows XP,

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread Richmond
I do believe that if all the Japanese characters you use are within the Unicode area reserved for Hiragana, Katakana and Kanji it should not be necessary for end-users to have to perform extra tricks to get your stuff working on their setup. My, limited, experience with Livecode and Unicode fonts

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread in...@kenjikojima.com
I tested the stack on Windows XP. It did not work. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Jul 28, 2013, at 11:16 AM, Richmond wrote: I do believe that if all the Japanese characters you use are within the Unicode area reserved for Hiragana, Katakana and Kanji it should not be

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread Richmond
On 07/28/2013 06:26 PM, in...@kenjikojima.com wrote: I tested the stack on Windows XP. It did not work. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ Well then, that needs to be filed as a BUG report so that the RunRev people can sort it out. Richmond.

Re: huh? a non-table accepting tabs instead of leaving?

2013-07-28 Thread Dr. Hawkins
On Sat, Jul 27, 2013 at 7:50 PM, Mark Wieder mwie...@ahsoftware.net wrote: Saturday, July 27, 2013, 3:21:11 PM, you wrote: On one of these, when I tab, it inserts a tab into the next field, rather than processing it. The tabstops of that field is not empty. We have a winner. Now if I can

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread in...@kenjikojima.com
I will. Thanks, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Jul 28, 2013, at 11:29 AM, Richmond wrote: On 07/28/2013 06:26 PM, in...@kenjikojima.com wrote: I tested the stack on Windows XP. It did not work. -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ Well then,

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread Richmond
On 07/28/2013 06:37 PM, in...@kenjikojima.com wrote: I will. Thanks, -- Kenji Kojima / 小島健治 http://www.kenjikojima.com/ On Jul 28, 2013, at 11:29 AM, Richmond wrote: On 07/28/2013 06:26 PM, in...@kenjikojima.com wrote: I tested the stack on Windows XP. It did not work. -- Kenji

Re: Finding matched parentheses

2013-07-28 Thread Peter Haworth
Yes, I can believe that. don't think regex is the most efficient thing in the world. Some of the tests I did resulted in LC running out of memory too! That's another thing I think should work better with matchText and matchChunk. Any errors, eg a bad regex, result in a runtime error - would be

RE: Missing APPLY button on IDE

2013-07-28 Thread Camm
I found the simple problem.. In the top far right of script editor page it has an up or down arrow to hide or not the script editor toolbar ! Must have clicked it by mistake , it stops the red cross as well ? Regards Camm -Original Message- From: use-livecode

Re: Finding matched parentheses

2013-07-28 Thread Peter Haworth
On Sun, Jul 28, 2013 at 12:56 AM, Thierry Douez th.do...@gmail.com wrote: I dropped the idea of using (?R) or its derivatives because for most practical cases it didn't worked as expected (even crash LC) but those regex worked in Perl scripts! (looks like in php it works great too).

Re: Missing APPLY button on IDE

2013-07-28 Thread Richmond
On 07/28/2013 08:59 PM, Camm wrote: I found the simple problem.. In the top far right of script editor page it has an up or down arrow to hide or not the script editor toolbar ! Very happy to hear it was easily solved :) Must have clicked it by mistake , it stops the red cross as well

Re: Finding matched parentheses

2013-07-28 Thread dunbarx
I will gladly accept being clever and inefficient. Craig -Original Message- From: Peter Haworth p...@lcsql.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Sun, Jul 28, 2013 2:00 pm Subject: Re: Finding matched parentheses Yes, I can believe that. don't think regex is

Re: Finding matched parentheses

2013-07-28 Thread Thierry Douez
H ​i,​ 2013/7/28 Peter Haworth p...@lcsql.com Yes, I can believe that. don't think regex is the most efficient thing in the world. ​Having using them for years, I still think they are efficient :)​ ​But as any tools, you have to use them for the right purpose.. ​ Some of the tests I did

Re: How can I get Unicode Menu Items on Windows?

2013-07-28 Thread in...@kenjikojima.com
This is temporary unicode menu script until bugs are fixed. go to url http://kenjikojima.com/livecode/download/tempoUnicodeMenu.livecode; Use menuHistory and custom function getUnicodeMenuItem. It works on MacOS and WIndows. I do not use Linux. Please try. -- Kenji Kojima / 小島健治

[OT] Free Benchmarking Stuff

2013-07-28 Thread Alejandro Tejada
on Fri Jul 26, Richard Gaskin wrote: Does Mark's contribution seem a good start for what you had in mind? Actually, I could not find RRTest in RevOnline: http://revonline2.runrev.com/search/tag/developer%20tool/direction/descending/searchtype/latest/ Could you post a direct download link?

Re: Finding matched parentheses

2013-07-28 Thread David Epstein
Thanks for all the interesting replies to this query. I used offset rather than (what most replies suggested) repeat with (or for) each character thinking it would be faster, but that seems to be true only if the string is extremely long and the sought for character very far from the

Re: Finding matched parentheses

2013-07-28 Thread Peter Haworth
On Sun, Jul 28, 2013 at 1:28 PM, Thierry Douez th.do...@gmail.com wrote: Having using them for years, I still think they are efficient :) But as any tools, you have to use them for the right purpose.. I agree with you on that. Some of the tests I did resulted in LC running out of memory

App Template and Icons Pack?

2013-07-28 Thread Magicgate Software - Skip Kimpel
Anybody have any details (screen shots, ect) of what is included with this product from RunRev? SKIP ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: [OT] Free Benchmarking Stuff

2013-07-28 Thread Mark Wieder
Alejandro- Sunday, July 28, 2013, 4:53:58 PM, you wrote: on Fri Jul 26, Richard Gaskin wrote: Does Mark's contribution seem a good start for what you had in mind? Actually, I could not find RRTest in RevOnline: