Re: Checking on the status of playing sounds in LC

2014-07-09 Thread Geoff Canyon
On Wed, Jul 9, 2014 at 4:25 AM, Scott Rossi wrote: > Mobile is > multi-channel. > Ooh, seems like a winner (I wasn't planning to build for desktop anyway). ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: SQL Join question

2014-07-09 Thread divya navaneeth
Hi Mark Smith, You just try this query "select A.col1,A.col2 etc ,B.col1,B.col2 etc from table A inner join table B on A.id=B.id" On Sat, Jun 21, 2014 at 8:27 PM, Mark Smith wrote: > I have two tables A and B, both with the same structure (about 50 columns > each). I would like to combine

Re: function to create One Time Passwords (OTP)

2014-07-09 Thread Dr. Hawkins
On Wed, Jul 9, 2014 at 11:06 AM, Matthias Rebbe | M-R-D < matthias_livecode_150...@m-r-d.de> wrote: > Okay i could use milliseconds and divide them by 1, but that would be > the same. > > Or if you used the milliseconds MOD whatever, you would get far more bits that actually changed . . . (tha

Re: [on-rev] libURL and https

2014-07-09 Thread Scott Morrow
Thanks Simon, Unfortunately, that is what I’m doing now except that it fails from my on-rev account when I use “https”… works if I use “http” — Scott Morrow On Jul 9, 2014, at 1:46 PM, Simon Smith wrote: > Hi Scott > > I have not tried sending messages yet through Mandrill - but this works for

Re: SQL Join question

2014-07-09 Thread Kay C Lan
On Mon, Jun 23, 2014 at 11:14 AM, Mark Smith wrote: > Thanks Peter. Good discussion. I'll check on the developer list to see if > anyone knows if there is an iPad device ID I can grab. Perhaps another > widget for Monte to work on :) > I know I'm late to the thread (just enjoyed 2 weeks bicycling

Re: Conflicting paths

2014-07-09 Thread Richmond
On 09/07/14 23:40, dunb...@aol.com wrote: Richmond. What happens if you "lock moves", set them going, and then "unLock moves"? No joy. However, this works quite well: on mouseUp put the points of grc "OVOID" into fld "POINTZ1" put the points of grc "PATH2" into fld "POINTZ2" pu

Re: Conflicting paths

2014-07-09 Thread Richmond
LOCK MOVES and UNLOCK MOVES oddly enough seems to make things worse. Richmond. ___ 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: [ANN] The IntelliSense Plugin is on the Road

2014-07-09 Thread zryip theSlug
Roger, Thanks for the feedback. Will explore this issue. On Wed, Jul 9, 2014 at 11:10 PM, Roger Eller wrote: > Just a quick try on Mac (works as you described), but then on Windows, the > focus jumps to the LC toolbar after "..." appears, unless I close tools > first. > > ~Roger > > > On Wed, Ju

Re: [ANN] The IntelliSense Plugin is on the Road

2014-07-09 Thread Roger Eller
Just a quick try on Mac (works as you described), but then on Windows, the focus jumps to the LC toolbar after "..." appears, unless I close tools first. ~Roger On Wed, Jul 9, 2014 at 2:56 PM, zryip theSlug wrote: > Dear LiveCode Users, > > > This is the time to release our Intellisense plugin

Re: [on-rev] libURL and https

2014-07-09 Thread Simon Smith
Hi Scott I have not tried sending messages yet through Mandrill - but this works for retrieving my account details: https://mandrillapp.com/api/1.0/users/info.json"; put it ?> Kind Regards Simon On Wed, Jul 9, 2014 at 8:49 PM, Mark Wieder wrote: > John Craig writes: > > > > > Hi, Scott. I c

Re: Conflicting paths

2014-07-09 Thread dunbarx
Richmond. What happens if you "lock moves", set them going, and then "unLock moves"? Craig -Original Message- From: Richmond To: How to use LiveCode Sent: Wed, Jul 9, 2014 4:30 pm Subject: Conflicting paths I have a silly solar system with 2 planets and a stationary sun. Now in

Conflicting paths

2014-07-09 Thread Richmond
I have a silly solar system with 2 planets and a stationary sun. Now in my "Do it" button I have this script: on mouseUp move img "Saturn" to the points of grc "OVOID" in 25 seconds without waiting move img "Mars" to the points of grc "PATH2" in 25 seconds without waiting end mouseUp n

[ANN] The IntelliSense Plugin is on the Road

2014-07-09 Thread zryip theSlug
Dear LiveCode Users, This is the time to release our Intellisense plugin to the Community. This plugin is the result of a challenge made with myself: how to have a window displaying a contextual list on the top of the script editor, but without changing any code in the editor? The first version

Re: [on-rev] libURL and https

2014-07-09 Thread Mark Wieder
John Craig writes: > > Hi, Scott. I couldn't post to an https URL with on-rev the last time I > tried, but the workaround was to use wget via shell. I do something similar, shelling out to httpie, especially when I need to get around the limitations of libURL. -- Mark Wieder ahsoftw...@gm

Re: function to create One Time Passwords (OTP)

2014-07-09 Thread Matthias Rebbe | M-R-D
Hi, thanks for clarifying. I forgot to mention that my function creates a mobile-otp (mOTP). So using only otp in the topic and in the text was misleading. To create a mOTP i need to use the seconds and divide them by 10 in my function, otherwise login will not work on devices which support mOT

Re: Problem with filter and regex

2014-07-09 Thread Bernard Devlin
I haven't use the filter by regex pattern, but perhaps try putting the "End of Line" marker ($) at the end of your regex. You may need the "Start of Line" marker too. ^.*cat.*mat$ ^ is the Start of Line marker. Bernard On Wed, Jul 9, 2014 at 4:28 PM, Magicgate Software - Skip Kimpel < s...@ma

Re: Checking on the status of playing sounds in LC

2014-07-09 Thread Scott Rossi
Yeah, I had to get some help from the developer, but eventually got it working for Mac and Win. If I remember right, there are some sound architecture parts that need to be installed in certain locations for it to work. I can try pull out the code if you're really interested, Regards, Scott

Re: Problem with filter and regex

2014-07-09 Thread Charles E Buchwald
Hi SKIP, Just playing around with "filter" and it is working as expected for me. Is there maybe an issue with your regex pattern? It sounds like you are matching any line with the pattern anywhere in the line, when perhaps you only want to restrict your matches to only the first item. Have you tes

Re: function to create One Time Passwords (OTP)

2014-07-09 Thread Dr. Hawkins
On Mon, Jul 7, 2014 at 11:21 PM, Matthias Rebbe | M-R-D < matthias_livecode_150...@m-r-d.de> wrote: > i don´t understand the meaning of your last sentence and google translate > is also not helpful. > Does it make a difference if using milliseconds and divide them by 1000 > and by 10? > Using the

Re: From my Spam box: "A Newer, Thicker, Stronger . . ."

2014-07-09 Thread Dr. Hawkins
On Wed, Jul 9, 2014 at 2:37 AM, Björnke von Gierke wrote: > If you're only really interested in european languages, being able to > disable 99% of those will make the engine as small as it was before the > changes. I don't even want the rest of the european languages! (although ñ and accents ca

Re: From my Spam box: "A Newer, Thicker, Stronger . . ."

2014-07-09 Thread stephen barncard
On Wed, Jul 9, 2014 at 8:19 AM, Richard Gaskin wrote: > Anyone submit a request for a checkbox for this in the Standalone Builder? or even a whole panel "Languages" *--* *Stephen Barncard - San Francisco Ca. USA - Deeds Not Words* ___ use-livecode ma

Re: Checking on the status of playing sounds in LC

2014-07-09 Thread stephen barncard
On Wed, Jul 9, 2014 at 2:25 AM, Scott Rossi wrote: > You might try the Franklin Audio external for desktop multi-channel sound. > https://livecode.com/store/marketplace/farnklin-audio-1-0-0/ > > Scott, did you ever get that thing to work? All I got was a confusing demo that did nothing and I gave

Problem with filter and regex

2014-07-09 Thread Magicgate Software - Skip Kimpel
Hello LC'ers I am comparing two lists using the following: filter lines of tdg2Text with regex pattern tRegexp into tTemp The problem I have is that this is pulling up multiple lines in tdg2Text when if fact I need to filter out a specific line. tRegExp should MATCH (exactly) item 1 of td

Re: From my Spam box: "A Newer, Thicker, Stronger . . ."

2014-07-09 Thread Richard Gaskin
Björnke von Gierke wrote: > A large part of the unicode bloat comes from the dictionaries. They > are a kind of language descriptor for almost every written language > on earth, their dialects, and synonym ways to write a character. If > you're only really interested in european languages, being

Re: From my Spam box: "A Newer, Thicker, Stronger . . ."

2014-07-09 Thread Björnke von Gierke
A large part of the unicode bloat comes from the dictionaries. They are a kind of language descriptor for almost every written language on earth, their dialects, and synonym ways to write a character. If you're only really interested in european languages, being able to disable 99% of those will

Re: Checking on the status of playing sounds in LC

2014-07-09 Thread René Micout
See also « SunnYmidi » : http://sunny-tdz.com/art-1000 Bon souvenir de Paris René Le 9 juil. 2014 à 10:55, Geoff Canyon a écrit : > Am I correct that LC's support for playing multiple sounds simultaneously > is limited? For example, if I wanted to make a guitar simulator, allowing > the user to

Re: [on-rev] libURL and https

2014-07-09 Thread Scott Morrow
Thanks John, I didn’t know about wget but after reading up on it your script looks like just what I needed. No luck yet, though. :- ) Scott Morrow On Jul 9, 2014, at 12:13 AM, John Craig wrote: > Hi, Scott. I couldn't post to an https URL with on-rev the last time I > tried, but the workaro

Re: Checking on the status of playing sounds in LC

2014-07-09 Thread Scott Rossi
AFAIK, nothing native on desktop has changed (yet). Mobile is multi-channel. You might try the Franklin Audio external for desktop multi-channel sound. https://livecode.com/store/marketplace/farnklin-audio-1-0-0/ (nice typo in the URL) Regards, Scott Rossi Creative Director Tactile Media, UX/

Re: From my Spam box: "A Newer, Thicker, Stronger . . ."

2014-07-09 Thread Robert Brenstein
On 08.07.2014 at 20:36 Uhr +0300 Richmond apparently wrote: Frankly if all I need is a title: I'll make it in a textField in the IDE, tweak it around and do an "import snapshot" so I end up with an image - then no Unicode needed at all. You'd have to be daft to include 'a bloater' of a librar

Checking on the status of playing sounds in LC

2014-07-09 Thread Geoff Canyon
Am I correct that LC's support for playing multiple sounds simultaneously is limited? For example, if I wanted to make a guitar simulator, allowing the user to play the strings individually and in chords would be difficult? Or has that improved? gc ___ u

Re: [on-rev] libURL and https

2014-07-09 Thread John Craig
Hi, Scott. I couldn't post to an https URL with on-rev the last time I tried, but the workaround was to use wget via shell. The example below is for android push notifications and shows how to send headers as well as the post data. put "wget" && \ "--header=" & quote &