AW: How to deinstall LC?

2013-07-11 Thread Tiemo Hollmann TB
Hi Mark, yes that definitely works to get rid of the program folder. I just was wondering if it would be useful / recommended to get rid of supplementary files, like preferences and things I don't know. Tiemo -Ursprüngliche Nachricht- Von: use-livecode

is there any trick to get out of a modal stack hang?

2013-07-11 Thread Tiemo Hollmann TB
Hi, sometimes I get stuck when running into a script error, while having a modal stack open and my close button of the modal stack doesn't responds anymore. The modal stack prevents me to get into the message box, IDE, or anything else. Is there a trick to get a modal stack without title boxes

Re: is there any trick to get out of a modal stack hang?

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 6:18 AM, Tiemo Hollmann TB wrote: Hi, sometimes I get stuck when running into a script error, while having a modal stack open and my close button of the modal stack doesn't responds anymore. The modal stack prevents me to get into the message box, IDE, or anything

Re: Some mobile questions

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 3:41 AM, Malte Brill wrote: Hi all, so I start to seriously tinker with a (to be cross mobile) app. I have a situation where I will need to have some sort of date and time picker on both iOS and Androide. iOs seems pretty straightforward, however what do you folks

Using the or operator with filter

2013-07-11 Thread Roger Eller
global gCodes put tList into tGood; put tList into tBad put PPX,RRY,NNZ into gCodes -- Keep lines that contain any item of gCodes filter tGood with (* item 1 of gCodes *) or (* item 2 of gCodes *) or (* item 3 of gCodes *) filter tBad without (* item 1 of gCodes *) or (* item 2 of gCodes

Re: Using the or operator with filter

2013-07-11 Thread Richard Gaskin
Roger Eller wrote: global gCodes put tList into tGood; put tList into tBad put PPX,RRY,NNZ into gCodes -- Keep lines that contain any item of gCodes filter tGood with (* item 1 of gCodes *) or (* item 2 of gCodes *) or (* item 3 of gCodes *) filter tBad without (* item 1 of gCodes *) or

AW: is there any trick to get out of a modal stack hang?

2013-07-11 Thread Tiemo Hollmann TB
Great, that trick did it! I will instantly pin it to my wall :) Thanks Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Devin Asay Gesendet: Donnerstag, 11. Juli 2013 16:49 An: How to use LiveCode Betreff: Re: is there

Re: Some mobile questions

2013-07-11 Thread Malte Brill
Hi Devon, date is fine. But I need dateTime which only appears to work on iOs. :-( Cheers, Malte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Some mobile questions

2013-07-11 Thread Colin Holgate
Yes, that’s the case. There isn’t a date time picker in Android OS. You can see what some people have done to combine the two types of pickers in one dialog here: http://stackoverflow.com/questions/14254093/date-and-time-picker-dialog Not sure if that can apply to LiveCode. On Jul 11, 2013,

Re: Some mobile questions

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 11:29 AM, Malte Brill wrote: Hi Devon, date is fine. But I need dateTime which only appears to work on iOs. :-( Ah, I see what you mean. It appears you have to do them separately. Devin Devin Asay Learn to code with LiveCode University http://university.livecode.com

Re: Using the or operator with filter

2013-07-11 Thread Roger Eller
Thanks Richard. To give a better picture of the requirements, the gCodes will be read from a user editable preference file (.txt), so there could easily be 3 or more (or less) items that have to be examined for each line of tList (a report file). At the moment, it works for the hard-coded 3

Re: Drag-scrolling a group

2013-07-11 Thread Roger Eller
Can it be done math-free? If you nest a group inside the scrollable locked group, and set the nested group to a simple grab me in a mouseDown or mouseStillDown handler... ~Roger On Thu, Jul 11, 2013 at 2:00 PM, Devin Asay wrote: Hi all, Has anyone worked out a method for drag-scrolling a

Re: Drag-scrolling a group

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 12:10 PM, Roger Eller wrote: Can it be done math-free? If you nest a group inside the scrollable locked group, and set the nested group to a simple grab me in a mouseDown or mouseStillDown handler… While I appreciate the math-free approach, ;) grab isn't the best tool

Re: Drag-scrolling a group

2013-07-11 Thread Scott Rossi
Hi Devin: Maybe something like this is what you're after - in your message box: go url http://www.tactilemedia.com/download/dragscroll.rev; Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 7/11/13 11:28 AM, Devin Asay devin_a...@byu.edu wrote: On Jul 11, 2013, at

Array glitch

2013-07-11 Thread Terry Dennis
-- Run the following script in a new stack -- At the breakpoint, the array has one entry in it -- Go to the Variables tab and click the down-arrow for tSimpleArray to view the contents -- The IDE exits immediately, with no error message -- How do I find out what caused this? Is there a

Re: Drag-scrolling a group

2013-07-11 Thread Roger Eller
You've probably already examined the example on RevOnline. http://revonline2.runrev.com/stack/606/Scrolling-Group ~Roger On Thu, Jul 11, 2013 at 2:28 PM, Devin Asay devin_a...@byu.edu wrote: On Jul 11, 2013, at 12:10 PM, Roger Eller wrote: Can it be done math-free? If you nest a group

Re: Array glitch

2013-07-11 Thread Mark Wieder
Terry- Thursday, July 11, 2013, 12:12:32 PM, you wrote: -- How do I find out what caused this? Is there a limitation on the size of a numeric key? It's a known bug with the built-in debugger. PowerDebug: http://powerdebug.ahsoftware.net

Re: Using the or operator with filter

2013-07-11 Thread Dar Scott
I'd be inclined to do this: repeat for each line... repeat for each item... And check for contains as you are thinking. This goes through tList only once. (I'm assuming that tList is large and gCodes is small.) Other ideas: I think filter does not use a real regex. If it does you can

Ellipsis character in WIndows

2013-07-11 Thread Peter Haworth
Anyone know how to generate an ellipsis character on a Windows computer with no numeric keypad? The standard key combination of alt -0,1,3,3 only seems to work for the numric keypad. Pete lcSQL Software http://www.lcsql.com ___ use-livecode mailing

Re: Ellipsis character in WIndows

2013-07-11 Thread Colin Holgate
You could put numtochar(133) into the place you need it to be. On Jul 11, 2013, at 4:08 PM, Peter Haworth p...@lcsql.com wrote: Anyone know how to generate an ellipsis character on a Windows computer with no numeric keypad? ___ use-livecode

Re: Ellipsis character in WIndows

2013-07-11 Thread Dar Scott
… U2026 You can copy and paste that. Here is midline: ⋯ U22EF You might be able to generate what you want with WordPad. With the new 'put unicode after' you can create a button to insert that. Dar On Jul 11, 2013, at 2:08 PM, Peter Haworth wrote: Anyone know how to generate an ellipsis

Re: Ellipsis character in WIndows

2013-07-11 Thread Dar Scott
Oh, by the way, Windows-1252 character encoding is not portable, so you might not want to use alt -0,1,3,3. Unless you do a conversion later. On WordPad type 2026 and then Alt-X. You get Unicode ellipsis. There might be a way to convince your notebook that you are typing from a keypad, but

Re: Array glitch

2013-07-11 Thread J. Landman Gay
On 7/11/13 2:26 PM, Mark Wieder wrote: Terry- Thursday, July 11, 2013, 12:12:32 PM, you wrote: -- How do I find out what caused this? Is there a limitation on the size of a numeric key? It's a known bug with the built-in debugger. What's the bug exactly? Big numbers as keys? --

Re: Drag-scrolling a group

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 1:21 PM, Roger Eller wrote: You've probably already examined the example on RevOnline. http://revonline2.runrev.com/stack/606/Scrolling-Group Thanks for that reference, Roger. I hadn't seen it before. It does appear to be more oriented toward mobile, and I'm working on

Re: Ellipsis character in WIndows

2013-07-11 Thread Peter Haworth
Thanks Colin, that's what I ended up doing but just curious if there is a way to do it on the keyboard. Pete lcSQL Software http://www.lcsql.com On Thu, Jul 11, 2013 at 1:23 PM, Colin Holgate co...@verizon.net wrote: You could put numtochar(133) into the place you need it to be. On Jul 11,

Re: Drag-scrolling a group

2013-07-11 Thread Devin Asay
On Jul 11, 2013, at 1:01 PM, Scott Rossi wrote: Hi Devin: Maybe something like this is what you're after - in your message box: go url http://www.tactilemedia.com/download/dragscroll.rev; Thanks, Scott. Most helpful, as usual. The bit that I was overlooking was updating the saved mouseV

Re: Ellipsis character in WIndows

2013-07-11 Thread Peter Haworth
Thanks Dar. Pete lcSQL Software http://www.lcsql.com On Thu, Jul 11, 2013 at 1:44 PM, Dar Scott d...@swcp.com wrote: Oh, by the way, Windows-1252 character encoding is not portable, so you might not want to use alt -0,1,3,3. Unless you do a conversion later. On WordPad type 2026 and then

Re: Array glitch

2013-07-11 Thread Mark Wieder
Jacque- Thursday, July 11, 2013, 2:07:04 PM, you wrote: What's the bug exactly? Big numbers as keys? Oops. I can't find the bug I was thinking about at the moment, but it turns out I was thinking of another reported bug. I tried the test script here and it worked fine. -- -Mark Wieder

out-of-the-blue codesigning error

2013-07-11 Thread Mike Kerner
An app that I have been using and deploying to my team for months is now failing to build with codesigning failed with aps-environment development I checked the certs in keychain and in xcode and at apple's developer portal, and nothing seems to be expired or otherwise out of the ordinary. So any

Re: out-of-the-blue codesigning error

2013-07-11 Thread Scott Rossi
Not sure if this is your issue, but FWIW, trying to load/transfer a newly built app to a device always fails on my system unless I use the AppResigner tool that was mentioned on the list a ways back. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 7/11/13 3:22 PM, Mike

Re: Array glitch

2013-07-11 Thread Dar Scott
I wonder if tSimpleArray is really global or scriptLocal. OK, not likely. Sometimes weird characters sneak into scripts. Maybe the crash dump has a clue. Dar On Jul 11, 2013, at 4:03 PM, Mark Wieder wrote: Jacque- Thursday, July 11, 2013, 2:07:04 PM, you wrote: What's the bug

Re: out-of-the-blue codesigning error

2013-07-11 Thread Randy Hengst
Mike, The only time that's happened to me is when I didn't change to the correct profile when I built the standalone in LC. That was the problem even when I knew I used the right one. be well, randy - On Jul 11, 2013, at 5:35 PM, Scott Rossi sc...@tactilemedia.com wrote: Not sure if

Re: Array glitch

2013-07-11 Thread Mark Wieder
Dar- Thursday, July 11, 2013, 3:20:04 PM, you wrote: I wonder if tSimpleArray is really global or scriptLocal. I tried it all three ways and it still worked for me. Maybe it was triggered in between seconds like that Damon Knight story... -- -Mark Wieder mwie...@ahsoftware.net

lcTaskList version 1.3 available now

2013-07-11 Thread Bill Vlahos
My lcTaskList IDE plugin is 1 year old this month. I'm happy to report that the 3rd update is available exclusively at RunRev's LiveCode Marketplace. http://livecode.com/store/marketplace/lcTaskList-1-3/ This indispensable plugin to the IDE makes it easy to bookmark your code. See a list of

Re: out-of-the-blue codesigning error

2013-07-11 Thread Mike Kerner
Is there some known way to debug this? I haven't seen anything on this list about it. Creating a new app gives the five-point signing error, now, too, and it seems that all of my apps have lost their link to their provisioning profiles. On Thu, Jul 11, 2013 at 6:55 PM, Randy Hengst

Re: Array glitch

2013-07-11 Thread Terry Dennis
Well, back to my original question ... how do I determine what caused this? If the debugger chokes on it, there's a good chance there's some other insidious related glitch in the guts of LC that will cause other strange happenings. I'm allergic to strange happenings. I don't want to use a

Re: Array glitch

2013-07-11 Thread Dar Scott
Oh, what I meant was that maybe there was something weird in the variable. On Jul 11, 2013, at 4:58 PM, Mark Wieder wrote: Dar- Thursday, July 11, 2013, 3:20:04 PM, you wrote: I wonder if tSimpleArray is really global or scriptLocal. I tried it all three ways and it still worked for

Re: lcTaskList version 1.3 available now

2013-07-11 Thread Alex Tweedly
It is indeed a great product - highly recommend it. Rather confusingly, for an existing user, in the My Products page, it says no updates available, but if you go ahead and download it anyway, then you do get the new version. Thanks Bill. -- Alex. On 12/07/2013 00:25, Bill Vlahos wrote:

Re: Array glitch

2013-07-11 Thread Dar Scott
Does this occur if you dump the array (using your favorite method)? Does this occur with just the breakpoint? Does this occur with typing in a whole new script with no cut and paste? Does this occur with other number keys or other values or simply by setting the variable? Does this occur with

Re: Array glitch

2013-07-11 Thread Terry Dennis
Does this occur if you dump the array (using your favorite method)? -- NO. All other accesses to the array *appear* to work fine. Of course, I haven’t tested *every* possible value. Does this occur with just the breakpoint? -- It occurs with either a manually applied breakpoint, or a coded

Re: lcTaskList version 1.3 available now

2013-07-11 Thread Bill Vlahos
Alex, Thank you for the endorsement. Yes RunRev built the Marketplace so that you only see Updates if the update costs money. Free ones don't give any notice. You are correct that re-downloading it will get the current version. Bill Vlahos On Jul 11, 2013, at 4:51 PM, Alex Tweedly

Re: Array glitch

2013-07-11 Thread Mark Wieder
Terry- Thursday, July 11, 2013, 5:19:46 PM, you wrote: Does this occur with typing in a whole new script with no cut and paste? -- YES. That’s how I created the test script. I manually typed it into a new button’s mouseUp script. How about that test script in a button in a *new stack*? My

Re: Array glitch

2013-07-11 Thread Terry Dennis
Mark: re: test script in a button in a *new stack*? Been there, done that. As I noted in a prior email, it occurred ... 3) in an entirely new stack after exiting and re-entering LC Perhaps I'm being paranoid and I shouldn't worry about it. If I rely on that assumption as a basis for using