Hi-Res Images at Natural Size?

2016-02-23 Thread Scott Rossi
I hope I'm missing something with regard to displaying hi res images in a mobile (iOS) stack... If one has a mobile stack built at "natural size" (say 320 x 568, iPhone 5), is it possible to display hi res images in the stack without resizing the stack? I have an image that's saved at double

Re: updating progress to user during long handler

2016-02-23 Thread Phil Davis
Hi James, I find it sometimes helps to lock & unlock the screen right after updating a progress bar, when it's part of a long process at least. Or throw in a "wait 0 seconds" right after it - that can help too. It seems the OS sometimes needs a reminder that it's time for it to update the

Re: leap to future

2016-02-23 Thread James Hale
Soon after HTML5 was released I too remembered Kevin's announcement and wondered why I was not seeing HTML5 in my license. I wrote to support and soon after HTML5 appeared in my license for all LC8's. So I am not sure what to make of the response from support stating they are separate as for me,

Re: updating progress to user during long handler

2016-02-23 Thread James Hale
Ok, so no lockscreens anywhere in the routines being called from start to end. Guess the problem lies elsewhere. I put in a few BEEPs at each 'progressive step and they all fired ok but there was still no update to the text in my splash stack. I am using the glx framework and it might be that it

Datagrid Scrolling is GLACIAL.

2016-02-23 Thread stephen barncard
Is there any trick to speed up a datagrid's scrolling? I've come back to an old project started in stable 6 and I don't remember it being so slow... MACOS Yosemite latest versions of 8 and 7 - Mac Pro 5,1 17gigs ram 350 records 13 fields. Almost useless. really slow. Is it time for the DG to

Re: LCB: Error: illegal escape in string

2016-02-23 Thread Peter Haworth
Doesn't seem like it should be treated as an escape character since it's in quotes, as you say. I'd enter a QCC report about it and see what the LCB team have to say. On Tue, Feb 23, 2016 at 5:55 PM Stephen MacLean wrote: > Hi Phil, > > Thanks for responding, I’m not

Re: LCB: Error: illegal escape in string

2016-02-23 Thread Stephen MacLean
Hi Phil, Thanks for responding, I’m not one either and it works fine with no issues when run directly in LC. Removing the “\” does cure the error, but of course doesn’t work any more. So the question I guess is two fold: 1) Why is that considered an escape character when it is enclosed in

Build Number for Mobile Standalones?

2016-02-23 Thread Scott Rossi
Is there any way to get/set a build number for a mobile standalone like the build number used in Xcode? I'm not looking to set a custom property, but rather use a real build number that is saved along with the app's version number. Thanks for any pointers for this. Regards, Scott Rossi

Re: updating progress to user during long handler

2016-02-23 Thread jameshale
Hi Mark, Hmm, it is possible I have a lock screen buried in there somewhere. I will check it out. Good to know the code should work. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/updating-progress-to-user-during-long-handler-tp4701326p4701339.html Sent from

Re: updating progress to user during long handler

2016-02-23 Thread jameshale
Hi Craig, This is what I initially did but, as you surmised, I actually had no way of knowing or predicting the actual progress. I then made some calculations and 'step' loops placing a sequence of progress bar updates. Didn't work. Some bars didn't show and those that did didn't progress. Hence I

Re: Email Test 1

2016-02-23 Thread stephen barncard
Rick I see it here. Are you using Gmail? sqb Stephen Barncard - Sebastopol Ca. USA - mixstream.org On Tue, Feb 23, 2016 at 3:42 PM, Rick Harrison wrote: > Hi Heather and LiveCoders, > > I’ve noticed that my posts to the lists haven’t been > showing up at all for a

Email Test 1

2016-02-23 Thread Rick Harrison
Hi Heather and LiveCoders, I’ve noticed that my posts to the lists haven’t been showing up at all for a few months, so we are trying to solve the problem. If anyone on the Use list or Dev List sees this email please let me know, so I’ll know things are good again. Thanks, Rick

Re: LCB: Error: illegal escape in string

2016-02-23 Thread Phil Davis
I'm not much of a regex guy, but what happens if you remove the backslash after {1,63} ? I assume something will probably stop working, but that's the only \ in the string. Phil Davis On 2/23/16 1:59 PM, Stephen MacLean wrote: Hi All, Working to build a library extension and I’m getting

Cursor changes to a hand in the ide

2016-02-23 Thread Jim Byrnes
I am running the Community Edition vers 7.1.1 Build 10048 on Ubuntu 14.04. I am just getting started with Livecode and was laying out the gui for my first little project. I'm not sure what I did but the cursor changed to the hand pointer and now I can no longer work with any of my controls.

LCB: Error: illegal escape in string

2016-02-23 Thread Stephen MacLean
Hi All, Working to build a library extension and I’m getting an error on this line when I go to test it in LCB: put "^[A-Z0-9._%+-]{1,64}@(?:[A-Z0-9-]{1,63}\.){1,125}[A-Z]{2,63}$" into tRegex The error is: illegal escape in string

Re: Re Topic'd. Probable LC bug getting return from a Value function

2016-02-23 Thread William Prothero
I tried all of the suggestions folks listed. Here are my results (OSX El Capitan, LC8 DP15): on mouseUp breakpoint put value("getValue()",group "myGroup" of card "myCard") into tVal1(Result: Works correctly) --put value(getValue(group "myGroup" of card "myCard")) into tVal2 (Result:

LCB library tutorials?

2016-02-23 Thread Stephen MacLean
Hi All, Looking to see if anyone has put up a tutorial for making an LCB library extension? I’ve been able to find Trevor Devore’s url_parser lib on github, but haven’t seen much else. If no tutorials, can someone describe the differences that need to be changed from widget to library?

Re: [ANN] Release 8.0.0 DP 15

2016-02-23 Thread RM
Well; "burger', "cog" or something else? Personally a start might be to have the "cog" (if that's what we are going to have) with a lot more contrast against its background, or even "Heaven forfend" in a different colour. Richmond. On 23.02.2016 20:18, J. Landman Gay wrote: On February 23,

Re: [ANN] Release 8.0.0 DP 15

2016-02-23 Thread J. Landman Gay
On February 23, 2016 5:21:55 AM RM wrote: I notice that in Firefox and Thunderbird they use an odd, 3 horizontal lines sort of icon: neither worse nor better than the revTools cog . . . That's a standard icon on Android at least, and it represents a list, usually

Re: updating progress to user during long handler

2016-02-23 Thread Mark Waddingham
On 2016-02-23 15:23, James Hale wrote: I thought I could use something like this... put "Extracting epub" into mupdate send "updateme mupdate" to stack "splash" wait 0 milliseconds with messages at different places within the processing handler and it would send the text off an

Re: updating progress to user during long handler

2016-02-23 Thread dunbarx
Hi. While you have your processing handler doing its thing, why not increment a progress bar at intervals? I do not know if that process knows accurately where it is along its journey, but this is the best feedback for the user. I have noticed progress bars that proceed nicely, giving the

Re: leap to future

2016-02-23 Thread Shawn Blc
Thanks everyone. That's what I did. Have a great day. On Tue, Feb 23, 2016 at 8:11 AM, Matthias Rebbe | M-R-D < matthias_livecode_150...@m-r-d.de> wrote: > Hi Shawn, > > the lifetime license from the 1st Kickstarter campaign is for all > platforms Livecode supported at the time when the

updating progress to user during long handler

2016-02-23 Thread James Hale
I have a splash stack that loads and calls the main stack before closing. While the splash is being displayed the preopen handler in my main stack asks for a file to locate. Once located it then loads and processes the file before it takes over. The processing takes some time and I have been

Re: leap to future

2016-02-23 Thread Stephen MacLean
Hi Shawn, You may need to re-license your copy of LC specifically for HTML5 deployment. Login to your account at livecode.com and see what licenses you have. You’ll see the HTML5 license separately. I have both HTML5 and Indy, but need to re-license my copy specifically for HTML5 when I want

Re: leap to future

2016-02-23 Thread Matthias Rebbe | M-R-D
Hi Shawn, the lifetime license from the 1st Kickstarter campaign is for all platforms Livecode supported at the time when the Kickstarter campaign ran and for all new platforms Livecode will support in future. That is a fact and already confirmed by Kevin in several posts and emails. If your

Re: leap to future

2016-02-23 Thread Shawn Blc
Well, when I launched LC and try to build HTML 5, I have a button that says Buy Now. I then saw Kevin's comments here. Perhaps I'm mistaken. I hope so. If so, I apologize in advance :) On Tue, Feb 23, 2016 at 7:33 AM, Kay C Lan wrote: > On Tue, Feb 23, 2016 at 9:16

Re: leap to future

2016-02-23 Thread Kay C Lan
On Tue, Feb 23, 2016 at 9:16 PM, Shawn Blc wrote: > I purchased a lifetime license on the kickstarter campaign... Cheated! > > How have you come to that conclusion. Didn't you receive an email on or about 23Jul14 from Kevin stating: As you know, you will receive a HTML5

Re: leap to future

2016-02-23 Thread Shawn Blc
I purchased a lifetime license on the kickstarter campaign and donated to the HTML 5 campaign. The main reason for donating to both was for HTML 5 and now you're saying that it's a separate license? What the heck is that all about? Cheated! On Fri, Feb 19, 2016 at 3:04 AM, Kevin Miller

Re: Getting a return from a dispatch to a function

2016-02-23 Thread Mark Schonewille
Bill, Have you tried this using value("getValue()",...) instead of value(getValue,...)? I think getValue is interpreted as a string. Probably, this isn't a bug but just how xTalk languages are supposed to work. Kind regards, Mark Schonewille http://economy-x-talk.com

Re: [ANN] Release 8.0.0 DP 15

2016-02-23 Thread RM
On 23.02.2016 13:08, Ali Lloyd wrote: The tools palette settings menu pops up when you click the 'cog' icon at the top right of the tools palette. Um . . . I wonder if that is as intuitive as your interface developers think it is? All sections are set to visible, and if you take a look at

Re: [ANN] Release 8.0.0 DP 15

2016-02-23 Thread Ali Lloyd
The tools palette settings menu pops up when you click the 'cog' icon at the top right of the tools palette. On Tue, Feb 23, 2016 at 10:59 AM RM wrote: > > > On 22.02.2016 22:38, Ali Lloyd wrote: > > Do you have widgets ticked in the show controls submenu of the

Re: [ANN] Release 8.0.0 DP 15

2016-02-23 Thread RM
On 22.02.2016 22:38, Ali Lloyd wrote: Do you have widgets ticked in the show controls submenu of the tools palette settings? Where would I find the "submenu of the tools palette setting" ? I have searched throughout and cannot locate that. Richmond.