Where do I find the current release # at runrev?

2013-06-27 Thread Tiemo Hollmann TB
Hello, I wonder where I can look for, which is the current release # for the commercial LC version. I didn't find a clear info at runrev. When logging on to the LiveCode shop and looking into MyProducts I am offered version 6.0.2 but I am not sure if it is a dp or a release? Or are only

Re: Where do I find the current release # at runrev?

2013-06-27 Thread Jan Schenkel
Hi Tiemo, Only the GM versions are listed in your LiveCode store account. LiveCode 6.0.2 is the latest finished version of the commercial edition. LiveCode 6.1 is currently in the release candidate phase. HTH, Jan Schenkel.   = Quartam Reports PDF Library for LiveCode www.quartam.com

revsecurity.dll appearing for (nearly) no reason

2013-06-27 Thread Pascal Lehner
Hi everyone, I just found out that when buidling for Windows, revsecurity.dll is automatically included as well to support https. However, my stack does not use https at all except for one link in the comments! Now I wanted to ask you how you usually handle such things - should I file that as a

Re: revsecurity.dll appearing for (nearly) no reason

2013-06-27 Thread Mark Schonewille
Hi Pascal, Do you search for inclusions automatically? Do it manually and you should be fine. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color

Re: revsecurity.dll appearing for (nearly) no reason

2013-06-27 Thread Pascal Lehner
Hi Mark, Thank for the hint, I found the settings in the settings :-) Regards, Pascal On 27 June 2013 13:04, Mark Schonewille m.schonewi...@economy-x-talk.comwrote: Hi Pascal, Do you search for inclusions automatically? Do it manually and you should be fine. -- Best regards, Mark

AW: One Year Free (Subscriptions)

2013-06-27 Thread Tiemo Hollmann TB
Hi Curry, I was unsure too, if I read the new licence model right and asked the runrev support. It is definatly like it sounds to be. If you do not renew your license after a year your commercial licence will be downgraded to the opensource license and you can't build anymore closed source apps

AW: Where do I find the current release # at runrev?

2013-06-27 Thread Tiemo Hollmann TB
Thanks Jan for clarifying! -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Jan Schenkel Gesendet: Donnerstag, 27. Juni 2013 12:14 An: How to use LiveCode Betreff: Re: Where do I find the current release # at runrev? Hi

Re: Communicate with server using PUT

2013-06-27 Thread Ben Rubinstein
On 27/06/2013 06:06, J. Landman Gay wrote: If we ever get the authentication worked out, I'm still not sure how to do a PUT. I'll try putting the data back into the variable and send that. Hi Jacque, Are you able to watch your network traffic, eg using WireShark? I've often found this was

Custom Properties

2013-06-27 Thread Graham Pearson
As I am finishing up with my first application, I am now moving global variables to custom properties as recommended by other posts on this list and the RunRev lessons site. On the main stack I have created a custom property called altWebServerURL and custom contents of

Re: Communicate with server using PUT

2013-06-27 Thread Trevor DeVore
On Thu, Jun 27, 2013 at 1:06 AM, J. Landman Gay jac...@hyperactivesw.comwrote: If we ever get the authentication worked out, I'm still not sure how to do a PUT. I'll try putting the data back into the variable and send that. put empty into url

Re: Custom Properties

2013-06-27 Thread Andrew Kluthe
Hmmm, is the data being returned by that custom property an array? Array's don't display as strings on answer dialogs, etc. Also, why move your global variables to custom properties? There are some pretty good use cases for both. On Thu, Jun 27, 2013 at 8:19 AM, Graham Pearson

Android published app live...

2013-06-27 Thread Paul Maguire
Hi. Anyone know how long it takes for a published Android app to go live in Google Play? I pushed the button to publish an hour ago and apparently it should take 'a matter of minutes' Kind regards, Paul. ___ use-livecode mailing list

Re: Custom Properties

2013-06-27 Thread Mike Kerner
Isn't there an issue of speed (although not a big difference) where custom properties are slower than globals? On Thu, Jun 27, 2013 at 9:31 AM, Andrew Kluthe and...@ctech.me wrote: Hmmm, is the data being returned by that custom property an array? Array's don't display as strings on answer

Re: Custom Properties

2013-06-27 Thread Roger Eller
I confirmed that either of these works as long as you have first: *set* the cName of this stack to Bla Bla Bla *answer* the cName of this stack or *get* the cName of this stack; *answer* it ~Roger On Thu, Jun 27, 2013 at 9:31 AM, Andrew Kluthe and...@ctech.me wrote: Hmmm, is the data being

Re: Custom Properties

2013-06-27 Thread Graham Pearson
In the custom contents of this custom property has text which is listed as http://www.yourcfpro.com/TestApp. I also have other custom properties where I have true or false values and they are all displaying blank answer windows when I try to view them so I know I am doing something wrong. To

some sounds not playing on Windows 8

2013-06-27 Thread FORD JR, CURT
We've got a project that involves many sounds, all accessed through players. On most cards the controller is visible; on two cards with shorter sounds, we have small buttons that set the filename of an invisible player and start it playing. It's been working well on Mac, XP, and Windows 7.

Re: Android published app live...

2013-06-27 Thread Mark Wilcox
I've seen anywhere from minutes to a few hours. From: Paul Maguire m...@paulmaguire.me To: How to use LiveCode use-livecode@lists.runrev.com Sent: Thursday, 27 June 2013, 14:48 Subject: Android published app live... Hi. Anyone know how long it takes for a

RE: Android published app live...

2013-06-27 Thread Ralph DiMola
I've had it take from 20 min to a couple of hours Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Paul Maguire Sent: Thursday, June 27, 2013 9:49 AM To:

Re: Communicate with server using PUT

2013-06-27 Thread Dar Scott
I have had trouble with PUT. I worked with the ISP to make sure it was enabled. I set up the right access file permissions. I made sure to put the name and password in the URL. And failure. So, either there was some overriding setting at the ISP that blocked things or either me or liburl

Re: Android published app live...

2013-06-27 Thread Paul Maguire
Thanks Mark and Ralph! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Communicate with server using PUT

2013-06-27 Thread Thomas McGrath III
Ralph, I'm trying to learn about the Google api and understand your code and wanted to know what is expected in CSZ to feed to this function? what is your typical line of code that calls this function? Thanks -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On Jun 26, 2013, at

Re: OOH! Here are a couple of cool ios7 features that I hope LC takes advantage of!

2013-06-27 Thread Mark Wilcox
I think Monte is right, this is per-app control of system services rather than something implemented by the apps themselves.  Like you have per-app settings for notifications right now which the user controls, the first two of these will be settings controlled by the IT department.  App Data

Re: Custom Properties

2013-06-27 Thread Graham Pearson
Now I am very lost as usual. on my stack script I did the set script with a new custom property called altNewCustomPropertythat has a value of http://www.google.com; and when I did the answer I got http:/www.google.com However, In the stack or in the card property inspector under custom

RE: Free Valentina Studio, Valentina DB Reports for LiveCodeUpgraded to 5.3

2013-06-27 Thread Lynn Fredricks
Any problems reported with VServer and Win7 running as a service? It immediately stops after the service starts up. (for me) Skip - you should post to MANTIS and/or get Ruslan's attention so we can check it out. Best regards, Lynn Fredricks President Paradigma Software

Re: OOH! Here are a couple of cool ios7 features that I hope LC takes advantage of!

2013-06-27 Thread Mike Kerner
BTW, there is another setting in the control panels, which allows apps to auto-update in the background, which would also be a bonus - i.e. not having to hack the app to get it to do something in the background - but the user will now have control over apps getting a bunch of time for background

Re: Custom Properties

2013-06-27 Thread Andrew Kluthe
Hmm, perhaps look some of these lessons over again to get a clearer understanding of whats custom properties are and how to use them in various ways. http://lessons.runrev.com/s/lessons/tags?tag=custom+properties The old user manual from when LC was still revolution (I believe it was from the

RE: Communicate with server using PUT

2013-06-27 Thread Ralph DiMola
I apologize for being lazy but I have used the CSZ acronym for 20 years. It stands for City State Zip. I found that just sending the zip yields the best results. Examples: put GeoCode(455 Park Ave suite 4401 , 10011) into Geo put GeoCode(54 Main Street , 12801) into Geo GeoCode returns an array

Re: Communicate with server using PUT

2013-06-27 Thread Trevor DeVore
On Thu, Jun 27, 2013 at 10:00 AM, Dar Scott d...@swcp.com wrote: I have had trouble with PUT. I worked with the ISP to make sure it was enabled. I set up the right access file permissions. I made sure to put the name and password in the URL. And failure. So, either there was some

Re: Custom Properties

2013-06-27 Thread Alan Stenhouse
Perhaps they're under a different custom property set? Did you check in the Custom Properties inspector if there's any other property sets that you could choose? (There's a popup under the scrolling field of custom properties). Can you paste in the command you're using to set one of these

Re: Custom Properties

2013-06-27 Thread Graham Pearson
Well for somehow the custom property was being stored in one of the SubStacks of the main stack and not within the main stack. Now to figure out what I did to make this happen. On 6/27/2013 10:36 AM, Andrew Kluthe wrote: Hmm, perhaps look some of these lessons over again to get a clearer

Re: Custom Properties

2013-06-27 Thread Paul Maguire
I can confirm the following works: Create new stack Add custom property someProperty and set to http://google.com Answer (the someProperty of thisCard) pops open a modal dialog with the URL as expected Perhaps there is a bogus invisible character somewhere in the URL? Perhaps delete custom

BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Benjamin Beaumont
LiveCode 6.1.0-rc-2 is now available. This release contains the following changes: - Images with filenames that look like URLs can cause slowdown. - ASCII string check - UUID Generation - Improved properties Property - Additional statistical functions - Activation removed in

Re: Custom Properties

2013-06-27 Thread Thomas McGrath III
Graham, When ever possible paste the code you are using and the version of Livecode. It will be a lot easier to give an answer. If you want to put quotes into a customProperty you have to use: set the cAddress of this card to quote http://www.google.com; quote and then you can use

Re: Communicate with server using PUT

2013-06-27 Thread Ben Rubinstein
On 27/06/2013 14:28, Mike Bonner wrote: I think a put and a post are very similar. You might manually set the headers to work as a put but us post to send the data. (think the data comes through the same way, its just the headers that differ) I don't think that's needed - LiveCode's PUT

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Thomas McGrath III
I was reading the specs on this and found under UUID: A cryptographic quality pseudo-random number generator is used to generate the randomness. Which in and of itself is very cryptic and rather unspecific in exactly what it is saying. I had to laugh…. Tom -- Tom McGrath III

New properties Property

2013-06-27 Thread Thomas McGrath III
I know there was some talk earlier on 'how' the new properties Property was being changed and that there was a conversation going on somewhere else but I wanted to know if anyone has actually tried to store and later recreate livecode objects based solely on this new implementation? I had a

Re: Free Valentina Studio, Valentina DB Reports for LiveCodeUpgraded to 5.3

2013-06-27 Thread Skip Kimpel
He got back to me yesterday I was missing the license file. SKIP On Jun 27, 2013, at 10:34 AM, Lynn Fredricks lfredri...@proactive-intl.com wrote: Any problems reported with VServer and Win7 running as a service? It immediately stops after the service starts up. (for me) Skip -

Adjusting Data Grid Column Width on an iPad

2013-06-27 Thread Ray Horsley
Here's a good one - does anybody have any suggestions as to how make it easier, especially for users with fat fingers, to adjust column width in a data grid on an iPad? I can do it but it usually takes me four or five tries and can it be a little frustrating. Increasing the size of the text,

Re: Adjusting Data Grid Column Width on an iPad

2013-06-27 Thread Scott Rossi
I would suggest building a dedicated adjustment control that is suited to touch. The data grid was created for use in a mouse-driven environment. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 6/27/13 10:54 AM, Ray Horsley r...@linkit.com wrote: Here's a good one -

Re: Communicate with server using PUT

2013-06-27 Thread J. Landman Gay
Thanks everyone, the problem is solved. It was indeed an authorization problem and once I fixed that, PUT started working. We are using a token to identify the app, and a bad copy/paste caused it to be missing a digit. All that trouble over a single integer. Right now I'm putting the data

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Richmond
On 06/27/2013 06:15 PM, Benjamin Beaumont wrote: LiveCode 6.1.0-rc-2 is now available. Glad to see that silly problem with the script editor has gone away. Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Rick Harrison
Hi Benjamin, Ok, so how do I get 6.1.0 rc2 LiveCode Server? Thanks, Rick On Jun 27, 2013, at 11:15 AM, Benjamin Beaumont b...@runrev.com wrote: LiveCode 6.1.0-rc-2 is now available. This release contains the following changes: - Images with filenames that look like URLs can cause

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Richmond
On 06/27/2013 09:37 PM, Rick Harrison wrote: Hi Benjamin, Ok, so how do I get 6.1.0 rc2 LiveCode Server? Thanks, Rick I'm not Benjamin, but you might like to have a look here: http://downloads.livecode.com/livecode/server/6_1_0/ All it really takes is a 30 second poke about on the RunRev

Re: Custom Properties

2013-06-27 Thread Richard Gaskin
Graham Pearson wrote: As I am finishing up with my first application, I am now moving global variables to custom properties as recommended by other posts on this list and the RunRev lessons site. What are you looking to achieve with this conversion? Most programming languages include support

Re: New properties Property

2013-06-27 Thread Monte Goulding
On 28/06/2013, at 1:26 AM, Thomas McGrath III mcgra...@mac.com wrote: I know there was some talk earlier on 'how' the new properties Property was being changed and that there was a conversation going on somewhere else but I wanted to know if anyone has actually tried to store and later

Re: New properties Property

2013-06-27 Thread Monte Goulding
On 28/06/2013, at 1:26 AM, Thomas McGrath III mcgra...@mac.com wrote: based solely on this new implementation? Oh... forgot to add that it still doesn't include script and custom properties so you would need to deal with them separately -- Monte Goulding M E R Goulding - software

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Rick Harrison
Hi Richmond, Thanks for the link! Rick On Jun 27, 2013, at 3:03 PM, Richmond richmondmathew...@gmail.com wrote: On 06/27/2013 09:37 PM, Rick Harrison wrote: Hi Benjamin, Ok, so how do I get 6.1.0 rc2 LiveCode Server? Thanks, Rick I'm not Benjamin, but you might like to have a

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Rick Harrison
Hi again, That is the community edition link. I need the commercial one! So how do I get it? Thanks, Rick On Jun 27, 2013, at 3:03 PM, Richmond richmondmathew...@gmail.com wrote: On 06/27/2013 09:37 PM, Rick Harrison wrote: Hi Benjamin, Ok, so how do I get 6.1.0 rc2 LiveCode Server?

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread J. Landman Gay
On 6/27/13 4:11 PM, Rick Harrison wrote: Hi again, That is the community edition link. I need the commercial one! So how do I get it? Remove the server portion of the URL: http://downloads.livecode.com/livecode/6_1_0/ Thanks, Rick On Jun 27, 2013, at 3:03 PM, Richmond

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Ralf Bitter
May be I am missing something but I think Rick asked how to get the commercial server version 6.1.0 and this is what I would like to know too. (There is no entry for server at http://downloads.livecode.com/livecode/6_1_0/) Ralf On 28.06.2013, at 00:04, J. Landman Gay jac...@hyperactivesw.com

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Monte Goulding
On 28/06/2013, at 8:36 AM, Ralf Bitter wrote: May be I am missing something but I think Rick asked how to get the commercial server version 6.1.0 and this is what I would like to know too. (There is no entry for server at http://downloads.livecode.com/livecode/6_1_0/) It could be that

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Ralf Bitter
Does this mean that the ability to use protected stacks covers 0.01% of server use cases? Ralf On 28.06.2013, at 00:51, Monte Goulding mo...@sweattechnologies.com wrote: On 28/06/2013, at 8:36 AM, Ralf Bitter wrote: May be I am missing something but I think Rick asked how to get the

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Monte Goulding
On 28/06/2013, at 8:59 AM, Ralf Bitter ra...@revigniter.com wrote: Does this mean that the ability to use protected stacks covers 0.01% of server use cases? I think so... you only need to protect them if you are selling a server solution rather than just hosting it. I guess there's third

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread stephen barncard
There isn't much more functionality the server needs except some of the image manipulation commands that would make sense, including ones that use the templateGraphic and the templateImage. I'd be cool to not have to depend on slow shell calls to imageMagik for the basic image conversion we can do

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Jacques Hausser
Indeed hunderts of PRGs were published… which one is used ? Would be nice to have a reference. Thanks in advance ! Jacques Le 27 juin 2013 à 17:21, Thomas McGrath III mcgra...@mac.com a écrit : I was reading the specs on this and found under UUID: A cryptographic quality pseudo-random

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread stephen barncard
now that I'm looking at the latest api documenthttp://livecode.com/developers/api/6.0.2//newImage/, I see some image commands that have 'server' under supported platforms! and audioclip and videoclipsome testing is needed to see if this works, but I don't remember anything in the release

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Rick Harrison
Hi again, Yes, I was asking about where to get the 6.1.0rc2 COMMERCIAL SERVER link. Thanks, Rick On Jun 27, 2013, at 6:04 PM, J. Landman Gay jac...@hyperactivesw.com wrote: On 6/27/13 4:11 PM, Rick Harrison wrote: Hi again, That is the community edition link. I need the commercial one!

Re: Communicate with server using PUT

2013-06-27 Thread Mark Wieder
J. Landman Gay jacque@... writes: All that trouble over a single integer. Thanks to SCOTUS, single integers can now get married. -- Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Windows 8.1 Preview

2013-06-27 Thread Mark Wieder
For anyone who wants to live out on the edge, the firstdeveloper preview of Windows 8.1 is available for download. I wasn't able to install it into a VirtualBox VM from the ISO file. I didn't try all that hard and I'm not sufficiently motivated to try again. But YMMV.

Re: Communicate with server using PUT

2013-06-27 Thread Dar Scott
This is coming back to me and I think I ended up testing the PUT on a different server. Perhaps some Apache setting was getting in the way and the ISP was not able to track it down. I still wonder if my test had some flaw staring me in the face. In any case, I was able to do the test. Dar

Re: BETA RELEASE: LiveCode 6.1.0 Release Candidate 2

2013-06-27 Thread Richard Gaskin
stephen barncard wrote: Has the graphic section of the Livecode server been shut down because it didn't make sense? Or because there was a technical reason why this couldn't be enabled to at least allow the use of the templates for processing? I believe the main reason was that the routines