Re: RELEASE: rIDE 3.0

2014-01-16 Thread Richmond
On 16/01/14 09:57, Mats Wilstrand wrote: Dear All! I'm pleased to announce rIDE 3.0! This is a main release with a lot of work under the hood and a handful of new features: New Top Bar with fast toggle buttons for Tools Palette, Property Inspector, Script Editor, Dictionary and Preferences.

Re: [OT] boasting

2014-01-16 Thread John Craig
Well done - looks like you've put a hell of a lot of work into it! I imagine you're now like Neo from the film The Matrix : you don't see real people or objects any more, but everything just appears as continually updating, green, animated Sanskrit text! On 15/01/2014 18:09, Richmond wrote:

Re: pageHeights ignores new line properties in fields?

2014-01-16 Thread Jan Schenkel
Hi David, I took a quick look at the source of the 'pageHeights' property implementation and can confirm it's not taking these properties into account. And since the 'pageRanges' property implementation follows the same approach, I'm sorry to say that it won't take them into account either.

Re: Using sockets

2014-01-16 Thread Björnke von Gierke
On 15.01.2014, at 01:14, Peter Haworth p...@lcsql.com wrote: The dictionary adds to the confusion when, in the write to socket entry, it says the socket id is an ip address followed by a port when it's actually followed by a socket. I agree that there's some small inconsistencies in naming

Re: Apple Push Notification error after uploading app with LC 6.5.1

2014-01-16 Thread Mike Kerner
This has been an issue in LC for quite a while, and discussed several times. It does not affect anything. As the message says, this is a warning, only. APNS is built into the engine, and LC doesn't bother to strip it out if you don't use it. On Wed, Jan 15, 2014 at 12:45 PM, William de Smet

Any work around for no SFTP in LC?

2014-01-16 Thread Jim Schaubeck
I need to support SFTP for a project I'm working on and it seems that even after all of the legitimate requests for it from the LC community (even over the years) there is no response from RunRev on this.  Unfortunately, I can not wait for RunRev to respond...I have to keep going. I've looked

Re: Any work around for no SFTP in LC?

2014-01-16 Thread Mark Schonewille
Hi Jim, You could use CURL or PuTTy SFTP or ask someone to make an external. You'd need an external for Windows only. Mac OS X and (most versions of) Linux have CURL installed by default. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage:

Re: Any work around for no SFTP in LC?

2014-01-16 Thread Björnke von Gierke
I haven't had to do this myself, but as you said it has come up her and there. As far as i know, sftp is easier to achieve then ftps, but there's several ways for both. Of course only as long as you don't ship for mobiles, where you're generally fucked (but hey, at least it's secure to download

Re: Using sockets

2014-01-16 Thread Peter Haworth
Thanks for the explanations Bjornke. I have been prowling around the web for more info and found a topic on Stack Overflow attempting to explain the difference between a socket and a port - lots of responses with many different analogies! It seems to be a common source of confusion but at least

Mouse Color not Working

2014-01-16 Thread Ray
Does anybody know if there's a problem with getting the mouseColor in 6.5.0? I'm using Windows 8.1 and all I get is 0,0,0 regardless as to whether I'm on my laptop which only uses one monitor, or my desktop which uses two. ___ use-livecode mailing

Re: Mouse Color not Working

2014-01-16 Thread Klaus major-k
Hi Ray, Am 16.01.2014 um 21:53 schrieb Ray r...@linkit.com: Does anybody know if there's a problem with getting the mouseColor in 6.5.0? I'm using Windows 8.1 and all I get is 0,0,0 regardless as to whether I'm on my laptop which only uses one monitor, or my desktop which uses two. yes,

Re: Mouse Color not Working

2014-01-16 Thread Scott Rossi
Ray: 6.5.0 has several color issues. If you can, go with 6.5.1. Otherwise you may need to temporarily use 6.1.3. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 1/16/14 12:53 PM, Ray r...@linkit.com wrote: Does anybody know if there's a problem with getting the

Re: Mouse Color not Working

2014-01-16 Thread Richmond
On 16/01/14 22:53, Ray wrote: Does anybody know if there's a problem with getting the mouseColor in 6.5.0? I'm using Windows 8.1 and all I get is 0,0,0 regardless as to whether I'm on my laptop which only uses one monitor, or my desktop which uses two.

Re: Mouse Color not Working

2014-01-16 Thread Ray
I've just downloaded and tried Richmond's test stack. I can verify that mouseColor does NOT work using 6.5.0. Klaus, looking forward to the fix. Thanks. I'd like to try 6.5.1 as Scott Rossi suggested but as I click on Help and choose Check for Updates I'm informed there are none, so I

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
The GM release is available here along with rc1 2… http://downloads.livecode.com/livecode/6_5_1/ Paul On 2014-01-16, at 1:41 PM, Ray r...@linkit.com wrote: I've just downloaded and tried Richmond's test stack. I can verify that mouseColor does NOT work using 6.5.0. Klaus, looking

Playing audioclips hangs LiveCode under Linux

2014-01-16 Thread Alejandro Tejada
Hi All, I just filed this bug in the Quality Center: http://quality.runrev.com/show_bug.cgi?id=11680 Playing audioclips hangs LiveCode under Linux The report include a zipped Folder with one stack and four audioclips (aiff, au, mp3, wav)

Re: Any work around for no SFTP in LC?

2014-01-16 Thread Alejandro Tejada
Hi Jim, Could you test if this method works for you? In the origin: 1) Send the name, length (in bytes) and sha-1 and md5 digest of the file 2) Grab a chunk of your file 3) encrypt this chunk 4) send via normal ftp along chunk's sha-1 and md5 digest In the destination: 5) verify chunk's sha-1

Re: Mouse Color not Working

2014-01-16 Thread Alejandro Tejada
Hi Richmond, Your mouseColor test stack works fine under LiveCode 6.5.1 on Lubuntu Linux. I just made a small change: 1) Add a vector graphic (for example, a circle) on the card and set the opaque of this vector graphic to true 2) Change card script to: on mouseDown put the mouseColor

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
Ray, This 'workaround' may work for you until the next release… on mouseDown put mouseColourWorkAround (the mouseLoc) into tColour answer tColour -- Or do whatever you need with tColour end mouseDown function mouseColourWorkAround pLoc lock screen import snapShot from rect ( item 1

RE: Mouse Color not Working

2014-01-16 Thread John Dixon
mouseColor is working on OSX mavericks running LC 6.5.0 6.5.1 in the card script :- on mouseMove put mouseColor() into fld 1 end mouseMove ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: Mouse Color not Working

2014-01-16 Thread Paul Hibbert
Does it return the expected result? On OS X 10.8.5 the colours are not right, try creating a graphic with a fill of 255,0,0 then see what the mouseColor returns when you move over it. I found that changing the screen profile in system preferences has an effect on mouseColor too. Using a

Errors detected in Open Source projects

2014-01-16 Thread Alejandro Tejada
Found in the website: http://blog.thameera.com/ Viva64 develops PVS-Studio, which is a static code analyzer for C/C++/C++11. But their popularity has come from the fact that they run this software on quite a few major open source projects around the internet and post the results. They hit the

Re: Errors detected in Open Source projects

2014-01-16 Thread Mark Wieder
Alejandro- Thursday, January 16, 2014, 9:39:22 PM, you wrote: http://www.viva64.com/en/examples/ A real eye opening collection of bugs from open source projects... Thanks. Interesting indeed. Nice find. V516 Consider inspecting an odd expression. Well, sure... who hasn't been there? Right?