[ANN] Yosemite Styles Window Plugin (free)

2015-04-28 Thread Rolf Kocherhans
Hello Everyone... I wanted to have modern OS X style native windows (with Icons in the Titlebar) in LC for a very long time - I made an enhancement request in the Quality Control Center over a year ago: http://quality.runrev.com/show_bug.cgi?id=12069 Unfortunately there is not much going on wi

Re: [OT] upgrading Linux to 64 bit

2015-04-28 Thread Peter TB Brett
On 2015-04-28 07:52, Richmond wrote: I have been running an Ubuntu derivative 32 bit distro for some years now, and should like to upgrade to a 64 bit version. My hard drive is partitioned so that my /Home stuff is on a different partition to the Boot folder and so on. Can I "just" install a 64

Re: LC Builder for sleepy types?

2015-04-28 Thread Peter TB Brett
On 2015-04-28 07:43, Richmond wrote: Like me! Is there any way to convert small LC scripts into the LC Builder language? While the LC 8 DPs provide "a first look at LiveCode’s new “LiveCode Builder” language", there is no comprehensive guide to LC Builder . . . . . . is there something like

Re: Need Help With FTP

2015-04-28 Thread Gregory Lypny
Hi Richard, > On Tue, Apr 28, 2015, at 6:00 AM, Richard Gaskin: > > Seems I missed that. I thought he was posting to his own server. It > wouldn't have occurred to me that a government site still uses FTP. Yes, Doc Hawkins was right: I’m downloading from the Securities and Exchange Commissio

Re: Circle Progress Extension

2015-04-28 Thread Devin Asay
On Apr 27, 2015, at 11:23 AM, Trevor DeVore wrote: > Hi all, > > The Extension Store tab in the Extensions Manager in LiveCode 8 seems a > little sparse so I've added the first 3rd party extension to it. It is > called "Circle Progress" and shows progress by filling in a circle. > > It doesn't

Re: Circle Progress Extension

2015-04-28 Thread Trevor DeVore
On Tue, Apr 28, 2015 at 10:36 AM, Devin Asay wrote: > > On Apr 27, 2015, at 11:23 AM, Trevor DeVore > wrote: > > > Hi all, > > > > The Extension Store tab in the Extensions Manager in LiveCode 8 seems a > > little sparse so I've added the first 3rd party extension to it. It is > > called "Circle

"Self-tailoring" Unicode Chooser Widgets P.S.

2015-04-28 Thread Bob Warren
Two more useful links: http://www.howsoft.com/runrev/downloads/vanilla_utf-8_chooser_demo_linux.txt http://www.howsoft.com/runrev/downloads/vanilla_utf-8_chooser_demo_windows.txt ___ use-livecode mailing list use-livecode@lists.runrev.com Please v

Re: LC Builder for sleepy types?

2015-04-28 Thread Trevor DeVore
On Tue, Apr 28, 2015 at 4:41 AM, Peter TB Brett wrote: > > This library is significantly faster than the LiveCode Script "EasyJSON" > stack (https://github.com/luxlogica/easyjson) -- but, alas, it is still > much slower than Monte's mergJSON. Peter, Thanks for sharing the JSON library! Being a

Inserting a character at the text insertion point in a field

2015-04-28 Thread Tore Nilsen
I try to make a script in a field to allow only numbers or the decimal sign to be entered into the field. To block any other key is easy, but I have run into problems when I try to insert the decimal sign at the text insertion point in the field. This script only allows me to insert the decima

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Peter Haworth
Hi Tore, You'll need to to use the selectedChunk property of the field. Check out the dictionary entry for it but as long as no text is selected in the field, replace your put statement with: put word 4 of the selectedChunk of me into tPos put "." after char tPos of me Pete lcSQL Software

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Tore Nilsen
Thank you! It did the trick nicely. Sometimes the solution is just too easy! In Norway comma is used as a decimal sign, and this way my students can make a script that will allow the user to write whatever decimal sign they choose. Tore > 28. apr. 2015 kl. 21.17 skrev Peter Haworth : > > Hi

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Paul Hibbert
Or another way, replace… >put "." after me …with: put "." into the selection Works OK here, and allows you to replace a number with a period if you typed it wrong. Paul ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Tore Nilsen
This gets better and better! The last solution seems to cover all eventualities! Thank you! Tore > 28. apr. 2015 kl. 21.26 skrev Paul Hibbert : > > Or another way, replace… > >> put "." after me > > …with: > > put "." into the selection > > Works OK here, and allows you to replace a n

iOS Profile Problems..."Could not find a valid identity..."

2015-04-28 Thread JOHN PATTEN
Hi All, I have messed up my iOS profile settings in Standalone Builder. Two days ago I built a Enterprise iOS standalone app fine. Made some change to the app, and attempted to save out a new standalone version and i got a “could not find a valid identity to use for the selected profile” messa

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Richmond
On 28/04/15 22:06, Tore Nilsen wrote: I try to make a script in a field to allow only numbers or the decimal sign to be entered into the field. To block any other key is easy, but I have run into problems when I try to insert the decimal sign at the text insertion point in the field. This scr

Re: Stack is Dirty?

2015-04-28 Thread Peter M. Brigham
Is there any message sent in LC when the cursor moves into the titlebar of a stack? It occurs to me that this would be a good trigger for checking the modifiedMark to indicate the need for saving. The workaround would be a frontscript mouseleave handler that checks to see if the final mouseloc i

Re: [OT] upgrading Linux to 64 bit

2015-04-28 Thread Mark Wieder
Peter TB Brett writes: > When I transitioned from x86 to x86-64 Linux -- a few years ago now! -- > I just carried my /home partition across to the new install and > everything seemed to work absolutely fine. Just to be safe, you might also make sure your /etc and /opt directories are backed up

Re: [OT] upgrading Linux to 64 bit

2015-04-28 Thread Richmond
On 28/04/15 22:56, Mark Wieder wrote: Peter TB Brett writes: When I transitioned from x86 to x86-64 Linux -- a few years ago now! -- I just carried my /home partition across to the new install and everything seemed to work absolutely fine. Just to be safe, you might also make sure your /etc a

Re: [OT] upgrading Linux to 64 bit

2015-04-28 Thread Mark Wieder
Richmond writes: > It would also be "fun" (?) to run the LiveCode 8.0.0 64 bit releases. Although if that's the driving force behind the migration, I'd put it off for (quite) a while. 8.0 currently runs very poorly on linux. Even worse that 7.x, which is somewhat usable even though extremely

Re: iOS Profile Problems..."Could not find a valid identity..." (SOLVED)

2015-04-28 Thread JOHN PATTEN
Okay… maybe I’m just impatient. The certificates seemed to be acting odd the first time I double-clicked to install it. I deleted it from the KeyChain app, double clicked the certificate again to install, and it showed up in the KeyChain app as I remembered. There must be some kind of delayed

Re: Inserting a character at the text insertion point in a field

2015-04-28 Thread Peter Haworth
Thanks for that Paul, learned something new, yet again! Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Tue, Apr 28, 2015 at 12:26 PM, Paul Hibbert wrote: > Or another way, re

Re: Stack is Dirty?

2015-04-28 Thread dunbarx
Peter. Yes and no. The titlebar is no different than the edge of the card window. The only thing you get is "mouseEnter" and "mouseLeave" when you move the cursor across those borders. But since you know the mouseLoc, you can exploit that to determine if you are moving across the top edge.

"Self-tailoring" Unicode Chooser Widgets P.P.S.

2015-04-28 Thread Bob Warren
In the Demo, at the beginning of the callChooser handler, you will see these 3 lines: put empty into field "choice" put empty into field "thePath" put empty into button "theFiles" These are OK in the Demo, but if you copy the handler to your own app as suggested, it will complain abou

mobileSound Files question

2015-04-28 Thread William Prothero
Folks: I have my 3 sound files playing fine on the iOS simulator. But, is it possible to get other file parameters like the play time, or set the location to start play? This is possible on desktop player, but I don’t see any commands for this in the dictionary. Or do I need to use one of Monte

How to initialise a Library stack?

2015-04-28 Thread Peter W A Wood
Is there a reliable method to initialise a library stack before it is used? I tried adding preOpenStack and OpenStack handlers to the library stack but they don’t appear to work. (I was using LiveCode 8.0). Regards Peter ___ use-livecode mailing lis

Re: How to initialise a Library stack?

2015-04-28 Thread Mike Bonner
when you start using a stack, the librarystack message is sent to the stack, so you could use that. On Tue, Apr 28, 2015 at 7:23 PM, Peter W A Wood wrote: > Is there a reliable method to initialise a library stack before it is > used? I tried adding preOpenStack and OpenStack handlers to the lib

Re: How to initialise a Library stack?

2015-04-28 Thread Peter W A Wood
Many thanks Mike. Regards Peter > On 29 Apr 2015, at 09:29, Mike Bonner wrote: > > when you start using a stack, the librarystack message is sent to the > stack, so you could use that. > > On Tue, Apr 28, 2015 at 7:23 PM, Peter W A Wood > wrote: > >> Is there a reliable method to initialis

Re: Plain text library stacks

2015-04-28 Thread Robert Mann
Hi bouncing on my present subject which is how to implement a a simple "semaphore" system to be used by server stacks : could that simple forma t(and I suppose fast to load) be used to store some data along scripts, e.i for a semaphore? -- when loaded in memory, is it parsed and checked? are there

[LC Server] using a stack as a small database to store contacts emails - how to deal with concurrent inputs?

2015-04-28 Thread Robert Mann
Hi! I'll be back into setting up sites after taking a long time off LC into music instrument designs... I'll need to gather some information like contacts emails and thought of using a server stack that I could then use in many ways and simply upload on to the desktop to add functions and do some

Re: [LC Server] using a stack as a small database to store contacts emails - how to deal with concurrent inputs?

2015-04-28 Thread Robert Mann
Quick & dirty live code server semaphore --- context : using a server stack as dynamic data storage medium in relation to a site. How secure would that be, in terms of avoiding loss of data? We have 2 server server stacks : a) a siteStack which receives http reques

Re: [LC Server] using a stack as a small database to store contacts emails - how to deal with concurrent inputs?

2015-04-28 Thread Robert Mann
Possibly some refinements with the text only format of script libraries discussed along. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/LC-Server-using-a-stack-as-a-small-database-to-store-contacts-emails-how-to-deal-with-concurrent-inp-tp4691609p4691611.html Se

Re: [ANN] Yosemite Styles Window Plugin (free)

2015-04-28 Thread Rolf Kocherhans
Hello Everyone… I totally forgot to mention… To create custom shape windows in general is easy, but it is not easy to create custom shape windows which retain their shape on their corners while resizing ! If you use a fixed picture as windowShape and enlarge the window then the whole window gets