Re: HTML browser and mobile.

2014-04-29 Thread Pierre Sahores
Ralph, Credits goes to LiveCode and Javascript ;D Thanks for your kind words. Pierre Le 29 avr. 2014 à 04:07, Ralph DiMola rdim...@evergreeninfo.net a écrit : Pierre, Thank You!! Just what the DR ordered! Works likes a charm on Android. Going for iOS now. Ralph DiMola IT Director

Re: play two sounds

2014-04-29 Thread Pierre Sahores
Hi Larry, in the preopenstack command : put specialFolderPath(engine) /CityChic.mp3 into Melodie[1] ### spécifique sous-domaine : 1_a/7 ### put specialFolderPath(engine) /CitySport.mp3 into Melodie[2] ### spécifique sous-domaine : 1_b/7 ### put

Re: play two sounds

2014-04-29 Thread larry
Thank you, Pierre Larry - Original Message - From: Pierre Sahores s...@sahores-conseil.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Tuesday, April 29, 2014 12:24 AM Subject: Re: play two sounds Hi Larry, in the preopenstack command : put

Re: play two sounds

2014-04-29 Thread Scott Rossi
If this is for desktop, am pretty sure you have track playback of the first sound, using wait or a looping script. on openStack play ac 1 wait until the sound is done play ac 2 end openStack If you need to allow simultaneous events to take place, you can try adding with messages to

Re: play two sounds

2014-04-29 Thread larry
Thanks very much, Scott. very helpful info! Larry - Original Message - From: Scott Rossi sc...@tactilemedia.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Tuesday, April 29, 2014 12:40 AM Subject: Re: play two sounds If this is for desktop, am pretty sure you have

How to encode/decode PHP - LC on Win/Mac?

2014-04-29 Thread Tiemo Hollmann TB
Hello, I am having PHPs communicating with LC 6.5.2. In the PHP files I am having Umlaute entities in fix texts as returning values to LC. When returning to Windows, the Umlaute are displayed correctly, on Mac not. When substituting the Umlaute by HTML entities (auml;), the Umlaute are displayed

Re: How to encode/decode PHP - LC on Win/Mac?

2014-04-29 Thread Björnke von Gierke
If the php files are executed by a web-server (like apache), then you probably have an encoding header supplied with each request. To find out the encoding you can query the URL in LC, and then use the libURLLastRRHHeaders() function. Note that sometimes the headers are badly made, and do not

AW: How to encode/decode PHP - LC on Win/Mac?

2014-04-29 Thread Tiemo Hollmann TB
the libURLLastRHHeader() returns: Transfer-Encoding: chunked Content-Tape: text/html Whatever that means. But isoToMac() does the trick. I thought Unix and Mac would use the same charset. Thanks Tiemo -Ursprüngliche Nachricht- Von: use-livecode

The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richmond
The standard Round Radius button in Livecode looks something like Mac OS system 7; frankly awful. And not, honestly acceptable as of 2014. if roundRadius were added to the properties of buttons it would be very easy to make Aqua Round Rect buttons in Livecode. Complete with pretty pictures

Manuel Dias Ribeiro

2014-04-29 Thread Mark Schonewille
Dear Manuel Dias Ribeiro, Could you please send another e-mail to supp...@economy-x-talk.com ? I have tried to answer your e-mails, but they don't seem to arrive. Please, contact support and make sure that we can answer by whitelisting the domain name. -- Best regards, Mark Schonewille

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread dunbarx
Richmond. Sort of like the corner radius gadget for a rounded rectangle? Craig -Original Message- From: Richmond richmondmathew...@gmail.com To: How to use LiveCode use-livecode@lists.runrev.com Sent: Tue, Apr 29, 2014 1:22 pm Subject: The parlous state of Rounded Rectangular

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Terence Heaford
And please can we have correct buttons in a Tab Panel? Terry On 29 Apr 2014, at 18:21, Richmond richmondmathew...@gmail.com wrote: The standard Round Radius button in Livecode looks something like Mac OS system 7; frankly awful. And not, honestly acceptable as of 2014. if roundRadius

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Charles E Buchwald
I would like to second this request. I'm working on a project right now, where every button is grouped with a round rectangle graphic for this same effect. It would be so much easier if I could change the corner radius of rounded buttons On 29 Apr 2014, at 12:21 PM, Richmond

SoCal LUG meeting: Thursday, May 1

2014-04-29 Thread Richard Gaskin
Just a quick reminder about the upcoming meeting of the LiveCode User Group in Pasadena on Thursday at 7PM. Details in the forum: http://forums.runrev.com/viewtopic.php?f=50t=19934 -- Richard Gaskin Fourth World LiveCode training and consulting: http://www.fourthworld.com Webzine for

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richmond
On 29/04/14 22:35, Richard Gaskin wrote: Richmond wrote: The standard Round Radius button in Livecode looks something like Mac OS system 7; frankly awful. And not, honestly acceptable as of 2014. if roundRadius were added to the properties of buttons it would be very easy to make Aqua Round

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richard Gaskin
Richmond wrote: On 29/04/14 22:35, Richard Gaskin wrote: The URL to submit a bug report is: http://quality.runrev.com/ Indeed it is. And the last 3 times I tried to submit enhancement requests I got stuck on a 'Desktop OS thing where there was no thing to check. If you have a reproducible

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richmond
On 29/04/14 22:44, Richard Gaskin wrote: Richmond wrote: On 29/04/14 22:35, Richard Gaskin wrote: The URL to submit a bug report is: http://quality.runrev.com/ Indeed it is. And the last 3 times I tried to submit enhancement requests I got stuck on a 'Desktop OS thing where there was no

play sound problem

2014-04-29 Thread larry
Here is my problem: I have this in my code: play audioclip myClip1.wav - which is 8 seconds in duration. wait 8 seconds play audioclip myClip2.wav looping The problem is that any form of the wait command means that I cannot do anything else during the wait period - such as clicking on a button

Re: play sound problem

2014-04-29 Thread Marc Siskin
Larry, Try adding “with messages” to the wait command. That should allow other actions to occur while the sound is playing. Marc On Apr 29, 2014, at 5:05 PM, la...@significantplanet.orgmailto:la...@significantplanet.org wrote: Here is my problem: I have this in my code: play audioclip

Re: play sound problem

2014-04-29 Thread Jerry Jensen
wait with messages. See the dictionary entry for wait. On Apr 29, 2014, at 2:05 PM, la...@significantplanet.org wrote: Here is my problem: I have this in my code: play audioclip myClip1.wav - which is 8 seconds in duration. wait 8 seconds play audioclip myClip2.wav looping The problem

Re: play sound problem

2014-04-29 Thread J. Landman Gay
On 4/29/14, 4:05 PM, la...@significantplanet.org wrote: How do I wait to play the 2nd clip, but still allow the user to click on a Stop Play button? For another approach, don't use embedded audio, use an audio file on disk and a player in the stack. Set the filename of the player to the

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Alejandro Tejada
Richard Gaskin wrote If you have a reproducible recipe for an issue preventing you from using the bug report system, please send it via email to support AT runrev.com. By the way, Richard, Which is your email as LiveCode Community Manager? Thanks in advance! Al -- View this message in

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richard Gaskin
Alejandro Tejada wrote: By the way, Richard, Which is your email as LiveCode Community Manager? We're going to set me up with an address at livecode.org, but it's not in place yet so until we get that pinned down you're always welcome to write me at the address I use here. -- Richard

Re: play sound problem

2014-04-29 Thread Alejandro Tejada
Hi Larry, larry wrote Here is my problem: I have this in my code: play audioclip myClip1.wav - which is 8 seconds in duration. wait 8 seconds play audioclip myClip2.wav looping The problem is that any form of the wait command means that I cannot do anything else during the wait

[OT] On RegExp

2014-04-29 Thread Walt Brown
This is a cool site. I'm not sure if it's been posted here. It's an interactive tutorial/tester of RegExp expressions you might find useful. http://www.regexr.com/ Walt Brown ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: [OT] On RegExp

2014-04-29 Thread Richard Gaskin
Walt Brown wrote: This is a cool site. I'm not sure if it's been posted here. It's an interactive tutorial/tester of RegExp expressions you might find useful. http://www.regexr.com/ Handy site, Walt - thanks. It's a good compliment to Rinaldi's RegEx Builder plugin included with LiveCode.

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Mark Wieder
Charles- Tuesday, April 29, 2014, 11:06:56 AM, you wrote: I would like to second this request. ...and I'll third it. I'd love to have native controls for whatever platform, but I'm not holding my breath for that. I just usually end up using images for buttons. No, they don't scale, but they

Re: [OT] On RegExp

2014-04-29 Thread Mark Wieder
Alain- Tuesday, April 29, 2014, 7:01:23 PM, you wrote: Hello Walt, Thanks for the URL. Is their regex the same as ours (livecode) ? It uses the regex parser in the browser, do that depends on the browser implementation and vintage. -- -Mark Wieder ahsoftw...@gmail.com This communication

Re: [OT] On RegExp

2014-04-29 Thread Alain Farmer
Which browser are you referring to ?? Where does browser come into play ?? My question is whether the site ( http://www.regexr.com/ )  uses the same regex syntax as livecode users do ? Thanks, On Tuesday, April 29, 2014 10:10:43 PM, Mark Wieder mwie...@ahsoftware.net wrote: Alain- Tuesday,

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Alejandro Tejada
Richard Gaskin wrote We're going to set me up with an address at livecode.org, but it's not in place yet so until we get that pinned down you're always welcome to write me at the address I use here. Great news! :D Did you receive two emails that I send you previously? The first was about

Re: [OT] On RegExp

2014-04-29 Thread Mark Wieder
Walt- Thanks. Nice site. -- -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 retrieving or storing of this communication and any related metadata, as

Re: [OT] On RegExp

2014-04-29 Thread Alejandro Tejada
mwieder wrote It uses the regex parser in the browser, do that depends on the browser implementation and vintage. Client-side regex processing? :( Normally, we expect Server-side processing to avoid possible differences among browsers implementations in so many platforms... Al -- View

Re: [OT] On RegExp

2014-04-29 Thread Alain Farmer
Perhaps I have not been clear. Here is my attempt to be clearer. Can I use the regex expressions in site http://www.regexr.com/ in a LiveCode stack on my local computer ? Thank you, On Tuesday, April 29, 2014 11:06:40 PM, Alejandro Tejada capellan2...@gmail.com wrote: mwieder wrote It uses

Re: Really basic SQLite questions

2014-04-29 Thread Kay C Lan
On Mon, Apr 28, 2014 at 10:59 PM, Peter Haworth p...@lcsql.com wrote: I'm also interested in what type of errors you've encountered that make your database inaccessible? SQLite is most definitely designed for multiple connections, Well this appears to be the 2nd change that's happened to LC

Re: The parlous state of Rounded Rectangular buttons

2014-04-29 Thread Richard Gaskin
Alejandro Tejada wrote: Did you receive two emails that I send you previously? The two that came in over the weekend? Yes I did. I'll reply to those in the AM. It's been a bit hectic 'round here. If you have anything time-sensitive feel free to put something like URGENT or READ THIS

Newbie question

2014-04-29 Thread Alain Farmer
I am stumped. Why the contradiction below ? on mouseUp    answer the cantDelete of part 1 -- answers true or false    repeat with x = 1 to the number of parts   get the cantDelete of part x -- error! object does not have this property    end repeat end mouseUp

Re: the menuBar and the EditMenus

2014-04-29 Thread Bob Sneidar
I will quote a good friend of mine, and an excellent graphic artist: “Space. The layout needs room to breath. Spread things out. Give them lots of space.” Bob S On Apr 11, 2014, at 20:54 , Kay C Lan lan.kc.macm...@gmail.commailto:lan.kc.macm...@gmail.com wrote: In one respect I think those

Re: [OT] free personality portraits

2014-04-29 Thread Bob Sneidar
Oh hell no. I don’t fall into someone’s matchbox of what a *normal* person should be, and the next thing I know I’m reading about how I’m some kind of sociopath! Screw that!!! Wait… am I proving the point?..? Bob S grinning of course On Apr 13, 2014, at 19:24 , Robert Brenstein

Re: [OT] free personality portraits

2014-04-29 Thread Alejandro Tejada
Robert Brenstein wrote [snip] Anybody that completes the first questionnaire can get a short personality portrait emailed to them. [snip] When? I completed the first questionnaire weeks ago. Do not have received this short personality portrait from them. Al -- View this message in

Re: Newbie question

2014-04-29 Thread J. Landman Gay
On 4/29/14, 11:28 PM, Alain Farmer wrote: I am stumped. Why the contradiction below ? on mouseUp answer the cantDelete of part 1 -- answers true or false repeat with x = 1 to the number of parts get the cantDelete of part x -- error! object does not have this property end

Re: [OT] free personality portraits

2014-04-29 Thread Jim sims
Yes, I did the thing when last posted but no statement telling me how crazy i am. In fact, nothing sent to me. On Wednesday, April 30, 2014, Alejandro Tejada capellan2...@gmail.com wrote: Robert Brenstein wrote [snip] Anybody that completes the first questionnaire can get a short