Re: Data Persistence

2018-07-27 Thread J. Landman Gay via use-livecode
On 7/27/18 12:47 PM, John McKenzie via use-livecode wrote: Tom, thank you for welcoming me. Much different than some online programming groups. :-) We love new users, it's more brains for the collective. :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

Re: Data Persistence

2018-07-27 Thread J. Landman Gay via use-livecode
On 7/27/18 2:26 PM, Richard Gaskin via use-livecode wrote: if the result is empty then   return "Error in getTempSavedParams: "& the result for error end if I believe you had a thinko: "not empty", yes? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

iOS multi-line input field

2018-07-29 Thread J. Landman Gay via use-livecode
I'm looking at a stack with a multi-line input field in the iOS simulator. A handler shows a group and creates a multi-line input in the correct location, but as soon as I tap into the field to type the group is hidden. There is only one command anywhere in the stack that hides the group and

Re: iOS multi-line input field

2018-07-30 Thread J. Landman Gay via use-livecode
r it First one: Try moving your handler to inputEndEditing, just for giggles On Sun, Jul 29, 2018 at 6:30 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: I'm looking at a stack with a multi-line input field in the iOS simulator. A handler shows a group an

Re: Drag Drop State of Affairs

2018-08-03 Thread J. Landman Gay via use-livecode
Could the defaultstack have changed? It sounds a bit like that. On 8/3/18 1:13 PM, Knapp Martin via use-livecode wrote: I’ve had the same issue. FWIW I’ve found that after a drag and drop, if I move my mouse into the LC toolbar and back (with no clicking) it returns to normal. Marty On Aug 3,

Move command on iOS

2018-08-03 Thread J. Landman Gay via use-livecode
Anyone else having trouble with the move command on iOS? I'm sliding a group into view, which works the first time, and after that it starts to move and then immediately jumps to its destination without any animation. It works fine in the IDE. AccleratedRendering is true and the group layermod

Re: Drag Drop State of Affairs

2018-08-03 Thread J. Landman Gay via use-livecode
Try checking the topstack, that's another one that sometimes resets. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 3, 2018 5:22:36 PM Bob Sneidar via use-livecode wrote: No tamalies Jacque. With the stack unresponsive, I typ

Re: A poor man's app updater

2018-08-03 Thread J. Landman Gay via use-livecode
Apple specifies that apps should store their app-related data in their own folder inside Application Support, where you will always have permissions. You can also store prefs in the Preferences folder but it's discouraged in favor of App Support. LC has specialFolderPath("support") for that whic

Re: Move command on iOS

2018-08-03 Thread J. Landman Gay via use-livecode
I'm not using visual effects so it probably isn't that bug. I'll put in a report when I can get a test stack together. The simulator I'm using is set up for 11.4 so the problem is in at least iOS 11 and 12 both. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://

Re: Move command on iOS

2018-08-03 Thread J. Landman Gay via use-livecode
Here's the relevant part of the script. There's only one "move" command: put the long id of grp "iOSPicker" into tGrp get the height of tGrp div 2 put the height of this cd - it into tDestV show tGrp -- before updating text wait 1 millisecond with messages move tGrp to (it

Re: A poor man's app updater

2018-08-03 Thread J. Landman Gay via use-livecode
On Android, "documents" is sandboxed with the app, so isn't accessible unless the device is rooted. On 8/3/18 8:59 PM, Brian Milby via use-livecode wrote: Yes, specialFolderPath would be good to use. On a desktop, I'm not sure that I'd want non-user facing data stored in the documents location

Re: Move command on iOS

2018-08-03 Thread J. Landman Gay via use-livecode
Skip the test, it works fine in isolation. Bug report is here: https://quality.livecode.com/show_bug.cgi?id=21461 But there must be something else going on so I should send the real stack to either you or Panos I guess. On 8/3/18 9:27 PM, J. Landman Gay via use-livecode wrote: Here'

Re: Move command on iOS

2018-08-03 Thread J. Landman Gay via use-livecode
what is going on so he can put it wherever private test stacks go. On 4 Aug 2018, at 1:05 pm, J. Landman Gay via use-livecode wrote: Skip the test, it works fine in isolation. Bug report is here: https://quality.livecode.com/show_bug.cgi?id=21461 But there must be something else going on

Re: valueDiff for arrays?

2018-08-04 Thread J. Landman Gay via use-livecode
This caught my attention. The increased security is great, and I've heard it said before, but would love to hear the reasons that make it more secure than lower level code. That way I'd have a knowledgeable reason to be smug. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Soft

Re: Move command on iOS

2018-08-04 Thread J. Landman Gay via use-livecode
mes five depending on the context of the call. I was also seeing some issues with the acceleratedRendering/dynamic in the IDE. be well, randy www.classroomFocusedSoftware.com On Aug 3, 2018, at 4:53 PM, J. Landman Gay via use-livecode wrote: Anyone else having trouble with the move command on

Re: valueDiff for arrays?

2018-08-04 Thread J. Landman Gay via use-livecode
On 8/4/18 12:41 PM, Mark Waddingham via use-livecode wrote: Can you immediately see the error? Who, me? LOL. Well, I did find the line that was different. Brian and others who can read this stuff did better. But I did get the gist of your post and feel sufficiently smug now. -- Jacqueline L

Re: Data Persistence

2018-08-04 Thread J. Landman Gay via use-livecode
On 8/4/18 2:27 PM, John McKenzie via use-livecode wrote: Thank you to the additional people who welcomed me. I contrast this with the time I asked a question on Usenet about a scripting language I was learning and the first reply told me I was awful (true, which is why I was asking questions) a

Re: Move command on iOS

2018-08-04 Thread J. Landman Gay via use-livecode
On 8/4/18 5:11 PM, Monte Goulding via use-livecode wrote: So I guess ensuring it is positioned correctly for the device before the first move and the hide move hides the whole thing would be a good place to start. I saw that, just fixed it today. This stack was made 6 years ago before we had

Re: Move command on iOS

2018-08-04 Thread J. Landman Gay via use-livecode
ell, randy www.classroomFocusedSoftware.com On Aug 4, 2018, at 3:00 PM, J. Landman Gay via use-livecode wrote: I did tinker with accleratedRendering when the problem first appeared. I turned it off before the move command and back on afterward, but it didn't help. I also changed the time so that the

Re: datagrid scrolling question

2018-08-04 Thread J. Landman Gay via use-livecode
I was thinking the same thing. I think the critical distinction is that datagrids are primarily display mechanisms, not really intended to be read directly. It's much easier to parse the original input data than to try to traverse the grid itself, which uses some tricks to appear as a continuous

Re: valueDiff for arrays?

2018-08-05 Thread J. Landman Gay via use-livecode
This is getting pretty contorted and is becoming less like natural language. For what it's worth, I have never been confused by the current use of filter. I think of it as pouring soup through a wire strainer. Filtering "with" keeps the solids. Filtering "without" dumps them and keeps the liqui

Re: valueDiff for arrays?

2018-08-05 Thread J. Landman Gay via use-livecode
Yes, yours is natural. Some of the others were stretching it a bit. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 5, 2018 11:10:47 AM Mark Waddingham via use-livecode wrote: On 2018-08-05 17:36, J. Landman Gay via use

Re: valueDiff for arrays?

2018-08-05 Thread J. Landman Gay via use-livecode
& iFingers LinkedIn On 5 Aug 2018, at 16:36, J. Landman Gay via use-livecode wrote: This is getting pretty contorted and is becoming less like natural language. For what it's worth, I have never been confused by the current use of filter. I think of it as pouring soup through a wir

Re: valueDiff for arrays?

2018-08-05 Thread J. Landman Gay via use-livecode
On 8/5/18 4:07 PM, Mark Waddingham via use-livecode wrote: But this isn't cooking - this is coding, so in this case you need to read the docs to find out what the default mode of filter is. (Of course, this might entirely be one of those things that my brain just won't get, or ever get - so it

Re: Android, local PDF and the Browser Widget

2018-08-07 Thread J. Landman Gay via use-livecode
On 8/7/18 3:25 PM, Dan Friedman via use-livecode wrote: put specialFolderPath("documents") & "myTemp.pdf" This returns on desktop: /Users//DocumentsmyTemp.pdf So I think you're writing to the wrong folder. Apparently iOS allows that, Android doesn't. Add a slash: put specialFolderPath("docu

Re: Android and https

2018-08-07 Thread J. Landman Gay via use-livecode
On 8/7/18 2:38 PM, Dan Friedman via use-livecode wrote: If I try to access a https link/page in my Android app, I get empty (the result is empty too). If I do the same call on my iOS app, it’s fine. Is there some type of secure issue with LC 9.0.1 on Android? Or, am I supposed to flip a sw

Re: Regaining IDE Efficiency: Property Inspector

2018-08-09 Thread J. Landman Gay via use-livecode
Me either. I tried to like them, and tested at least three, and even made my own. But in the long run it's all muscle memory for me. I need landmarks, and colors aren't enough. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 9,

Re: Need a little help with image resizing

2018-08-11 Thread J. Landman Gay via use-livecode
Do you mean that you just want more white space around the image? You can use the crop command for that. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 11, 2018 11:54:16 AM Michael Kristensen via use-livecode wrote: Hi ther

Re: How to filter a list with a variable anywhere in a line

2018-08-13 Thread J. Landman Gay via use-livecode
I You can't parse html with regex: https://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags# See the top accepted answer. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 13, 2018 11:12:53

Re: Android compass question

2018-08-13 Thread J. Landman Gay via use-livecode
On 8/11/18 3:34 PM, Jonathan Lynch via use-livecode wrote: I have a new galaxy phone. When I read the mobile compass, both magnetic heading and true heading constantly change - even if the phone is laying down still. It changes up and down randomly by 5 degrees or so. Does anyone know if this

Re: stack rect with decorations?

2018-08-13 Thread J. Landman Gay via use-livecode
Try "the effective rect of stack x". -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 13, 2018 9:58:42 PM Richard Gaskin via use-livecode wrote: My dictionary doesn't work and I don't see what I need in the See Also for the onl

Re: Fun with Windows 10

2018-08-14 Thread J. Landman Gay via use-livecode
On 8/14/18 11:26 AM, Richmond Mathewson via use-livecode wrote: That's why I'm saving up for a Petticoat 5 A brief diversion: I have always hated pink since I can remember. I climbed trees and read books up there as soon as I was able. When I was some high 1-digit age, I asked for a chemist

Determine if device is a tablet

2018-08-14 Thread J. Landman Gay via use-livecode
I need to determine whether the current mobile device is a tablet or a phone. On iOS I can use "the machine" but on Android it only provides the manufacturer's name. Does anyone know a way to do that? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

Re: Fun with Windows 10

2018-08-14 Thread J. Landman Gay via use-livecode
ling me  a "pansy" when he found me making daisy chains round the back of the goal while other boys managed to score 3 goals because I wasn't there. Love, Richmond. On 15/8/2018 12:04 am, J. Landman Gay via use-livecode wrote: On 8/14/18 11:26 AM, Richmond Mathewson via use

Re: Determine if device is a tablet

2018-08-14 Thread J. Landman Gay via use-livecode
On 8/14/18 11:13 PM, Richard Gaskin via use-livecode wrote: J. Landman Gay wrote: > I need to determine whether the current mobile device is a tablet or a > phone. On iOS I can use "the machine" but on Android it only provides > the manufacturer's name. > > Does anyone know a way to do that

Re: Determine if device is a tablet

2018-08-15 Thread J. Landman Gay via use-livecode
multi-column apps on the new phones. Eg. : https://gadgets.ndtv.com/mobiles/news/apple-iphone-x-plus-6-5-inch-2018-landscape-mode-ios-12-beta-1893260 :-Håkan On 15 Aug 2018, 08:32 +0200, J. Landman Gay via use-livecode , wrote: On 8/14/18 11:13 PM, Richard Gaskin via use-livecode wrote: J. Landm

Re: Fun with Windows 10

2018-08-15 Thread J. Landman Gay via use-livecode
On 8/15/18 11:12 AM, tbodine via use-livecode wrote: To know and be your true self at such a young age is like a super power. My mom called my super power "stubborn brat." :) Thanks to all who responded, these little mental blurps sometimes pop out independently. -- Jacqueline Landman Gay

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-18 Thread J. Landman Gay via use-livecode
Actually, the rect of the stack remains constant in fullscreenmode, you don't need to account for the engine resizing. All placement calculations can be done normally. That's one of the beauties of it. Handling dynamic placement is no different than without fullscreenmode, except that you don'

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-18 Thread J. Landman Gay via use-livecode
On 8/18/18 7:52 PM, J. Landman Gay via use-livecode wrote: Actually, the rect of the stack remains constant in fullscreenmode, you don't need to account for the engine resizing. All placement calculations can be done normally. That's one of the beauties of it. I didn't expre

Re: Macintosh bloat

2018-08-19 Thread J. Landman Gay via use-livecode
If I remember right, LC now always builds for 64 bit. If you also want to support 32 bit, it adds that to the build, which approximately doubles the size. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 19, 2018 5:07:57 AM Richm

Re: Macintosh bloat

2018-08-19 Thread J. Landman Gay via use-livecode
On 8/19/18 2:26 PM, Richmond Mathewson via use-livecode wrote: I'm talking about LC 8.1.10 which gives me the choice of building a 32-bit Mac app or a 64-bit app ('experimental'): currently, at least, I am ONLY building a 32-bit build for Mac. I wasn't at the Mac when I wrote (I shouldn't do t

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-19 Thread J. Landman Gay via use-livecode
Android does receive orientationChanged messages. I've been tinkering with Swami's test stack, and dynamic positioning (no fullscreenMode) works fine with some effort. The footer isn't a widget, it's a group containing half a dozen controls, so they all need to be individually managed. You wer

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-19 Thread J. Landman Gay via use-livecode
ubmitted, still pending). On Sun, Aug 19, 2018 at 5:31 PM, J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: Android does receive orientationChanged messages. I've been tinkering with Swami's test stack, and dynamic positioning (no fullscreenMode) works fine with s

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-19 Thread J. Landman Gay via use-livecode
On 8/19/18 9:37 PM, Sannyasin Brahmanathaswami via use-livecode wrote: "Intuitively" resize stack is all that is required. And, "intuitively" a group should place all controls relative to itself. And it does on iOS I think that was just incidental. The original stack was sized to fit the same

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-19 Thread J. Landman Gay via use-livecode
On 8/19/18 10:21 PM, Brian Milby via use-livecode wrote: I'm not sure what the fleet of widths would need to be supported on the Android side though. They vary all over the place. Basically you need to calculate a ratio and set all the control sizes accordingly. I can't speak directly to An

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-20 Thread J. Landman Gay via use-livecode
On 8/19/18 11:11 PM, Brian Milby via use-livecode wrote: When the engine resizes the stack, I’m assuming that it takes into account any system furniture? That isn’t a consideration for iOS (at least yet). I’m excluding keyboard for the moment. The screenrect is always the actual size of the s

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-20 Thread J. Landman Gay via use-livecode
On 8/20/18 2:29 AM, Terry Judd via use-livecode wrote: Oh, and my apps probably weren't terribly HIG compliant either. I used custom buttons and controls that looked and functioned identically on Android and iOS versions of the same app. Ditto. I don't think I've ever had to work on a stack t

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-20 Thread J. Landman Gay via use-livecode
On 8/19/18 11:11 PM, Ludovic THEBAULT via use-livecode wrote: But i found i can get the « real » top and bottom with : round((item 4 of the screenrect*the systemscale)/2)-theight // +theight (for the bottom) where theight is the height of my stack before fullscreenmode. You should be able to g

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-20 Thread J. Landman Gay via use-livecode
On 8/19/18 11:45 PM, Richard Gaskin via use-livecode wrote: Consider a Note app.  At the top is a navbar that spans the width of the device at 60 px tall; below is a field for the user to type in; centered below that is a "Save" button. This is in the card script: on resizeStack x,y   set th

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-20 Thread J. Landman Gay via use-livecode
On 8/20/18 8:32 PM, Richard Gaskin via use-livecode wrote: Swami has not asked me to evaluate strategies for precise control of his layouts.  That would not be possible until I see how things are constructed. He estimated months, and that sounds about right. Every card is laid out differently

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-21 Thread J. Landman Gay via use-livecode
On 8/21/18 1:26 PM, Richard Gaskin via use-livecode wrote: Jim Lambert wrote: > A shootout between FSM vs. scripted resizing might make a good LC > Global presentation. > The pros and cons of each. Cases where one may be better than the > other. Etc. > Examples. I touched on it in my LCG t

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-21 Thread J. Landman Gay via use-livecode
On 8/21/18 10:28 AM, Sannyasin Brahmanathaswami via use-livecode wrote: @ Monte: "mobileSetFullScreenRectForOrientations to set the rects you want the stack to be for each orientation" you mean we can actually set up several of these with the same preopenstack handler! That big news... I th

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-22 Thread J. Landman Gay via use-livecode
On 8/21/18 2:11 PM, Ludovic THEBAULT via use-livecode wrote: But even « the rect of this cd » return the rect of the stack i created (0,0,768,1024) not the rect of the screen. I’ve made a test stack. It’s an « iPad » stack. Test it with iOS simulator on an iPhone device. https://www.dropbox.co

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-22 Thread J. Landman Gay via use-livecode
On 8/22/18 3:13 PM, J. Landman Gay via use-livecode wrote: But the stack should still fill the screen and it doesn't. This will resize the stack the same way as your "adapt" handler does, so you can eliminate that entirely: on preopenstack mobileSetAllowedOrienta

Re: Set the backgroundcolor of all lines a field to null

2018-08-23 Thread J. Landman Gay via use-livecode
If you just want to clear the whole field (Richard suggested something similar): set the backcolor of char 1 to - 1 of fld x to empty After that you can hilite other lines if needed. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-23 Thread J. Landman Gay via use-livecode
On 8/23/18 12:59 AM, Ludovic THEBAULT via use-livecode wrote: Le 22 août 2018 à 22:24, J. Landman Gay via use-livecode a écrit : On 8/22/18 3:13 PM, J. Landman Gay via use-livecode wrote: But the stack should still fill the screen and it doesn't. This will resize the stack the sam

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-24 Thread J. Landman Gay via use-livecode
On 8/23/18 8:30 PM, Brian Milby via use-livecode wrote: The original stack worked fine on my iPad (since it was sized at the same resolution). Maybe I chose the wrong simulator, but on an iPad Air it failed to resize correctly with or without FSM. I looked up the screenrect and it claimed to

Re: Best way to store videos

2018-08-24 Thread J. Landman Gay via use-livecode
On 8/24/18 8:16 AM, Martin Koob via use-livecode wrote: Search the LC 9 dictionary for the commands that start with AWS and AWSS3 to see what it available to you. Mac and iOS only though. :( -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | h

Android permissions

2018-08-24 Thread J. Landman Gay via use-livecode
I was happy to see the new functions for working with Android permissions. The release notes say: "Apps built with LC 9.0.1 do support this new permissions model, and request permissions automatically when the app actually requires the services or data protected by the services." It sounds l

Re: Best way to store videos

2018-08-24 Thread J. Landman Gay via use-livecode
On 8/24/18 3:42 PM, Monte Goulding via use-livecode wrote: On 25 Aug 2018, at 5:44 am, J. Landman Gay via use-livecode wrote: Search the LC 9 dictionary for the commands that start with AWS and AWSS3 to see what it available to you. Mac and iOS only though. :( mergAWS is Mac and iOS

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-24 Thread J. Landman Gay via use-livecode
ove the lines. On Fri, Aug 24, 2018 at 2:56 PM, Brian Milby wrote: I never even try the sim. I’ll give it a try this weekend though. None of the regular iPads should require a resize. Only the pro models have a different rect. Thanks, Brian On Aug 24, 2018, 2:39 PM -0500, J. Landman Gay v

Re: Android permissions

2018-08-24 Thread J. Landman Gay via use-livecode
e dialog has a checkbox "Do not ask me again". So in this case, it might be useful to add a check if permission X has been granted, and if not, show an appropriate message. Hope this helps, Panos -- On Fri, Aug 24, 2018 at 11:22 PM J. Landman Gay via use-livecode < use-livecode@l

Re: fullscreenmode and rect of a substack on mobile device ?

2018-08-24 Thread J. Landman Gay via use-livecode
It's more complicated than that. Using the iPad Air simulator and this preOpenCard handler: on preopenstack mobileSetAllowedOrientations("portrait") iphoneUseDeviceResolution true,true end preopenstack When I press the "Get the rect" button it reports the stack, card, and screenrect are al

Re: Android permissions

2018-08-24 Thread J. Landman Gay via use-livecode
On 8/24/18 5:46 PM, Andrew Ferguson via use-livecode wrote: Or even just have the blockedPermissions, which would be checked by the app when using a device feature. That could be useful. +1 I couldn't see "androidRequestPermission" in the dictionary It's in the latest 9.0.1(rc 2). Brand new

Re: iPad Pro Simulator

2018-08-24 Thread J. Landman Gay via use-livecode
On 8/24/18 10:04 PM, Colin Holgate via use-livecode wrote: This is not obvious at all, but the splash screen name of default-portr...@2x.png is now owned by iPad Pro. To support iPad Pro, iPad Retina, and iPad 1, you need these splash screens: default-portr...@2x.png - 2048x2732 Default-Portra

Re: Word counter crashing LiveCode?

2018-08-25 Thread J. Landman Gay via use-livecode
On 8/25/18 6:04 AM, Alex Tweedly via use-livecode wrote: On 25/08/2018 12:01, Alex Tweedly via use-livecode wrote: Not sure why yours is crashing, and I admit I haven't really looked closely :-) I'm trying to figure out why it crashes too. on mouseUp    local tSource, tNoise, tWords    l

[OT]Silly weekend LC poll

2018-08-25 Thread J. Landman Gay via use-livecode
I wonder how people pronounce two common LC abbreviations. In print you never notice but in real life I always have to translate what they're talking about. How do you pronounce: CHAR Rhymes with "care" Sounds like smoldering wood LOC Rhymes with "smoke" Sounds like a deadbolt I supp

Re: [OT]Silly weekend LC poll

2018-08-25 Thread J. Landman Gay via use-livecode
me in german, even in one and the same script. It could be that i use tDate in one script and in another one tDatum as date var. But that´s an other story. Regards, Matthias Am 25.08.2018 um 21:07 schrieb J. Landman Gay via use-livecode : I wonder how people pronounce two common LC abbre

Re: [OT]Silly weekend LC poll

2018-08-25 Thread J. Landman Gay via use-livecode
I swear one of these days someone is going to sew your fingers shut. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On August 25, 2018 3:03:28 PM Mark Wieder via use-livecode wrote: On 08/25/2018 12:57 PM, J. Landman Gay via use

Re: Best way to store videos

2018-08-27 Thread J. Landman Gay via use-livecode
On 8/27/18 4:12 PM, Niggemann, Bernd via use-livecode wrote: When using Tiny Dictionary in the option menu either choose "All" and search for "aws" or choose from the option menu "library.aws". If you start your search with a quote it will return whatever starts with "aws". Of course this only

Re: Best way to store videos

2018-08-28 Thread J. Landman Gay via use-livecode
On 8/27/18 9:02 PM, BNig via use-livecode wrote: That baffles me because Tiny Dictionary only "knows" the path to the documentation folder of the currently running LC. Even when running multiple versions of LC concurrently it will only ever use the path to the documentation folder of that specif

Re: Mobile Rotation Redux

2018-08-31 Thread J. Landman Gay via use-livecode
On 8/30/18 8:46 PM, Brian Milby via use-livecode wrote: I'll post the stack file if anyone wants to see it. On the one Android device I have available it works correctly. Resizestack handlers fire correctly. So I guess I need to find something with a later OS to test against to see the problem

Re: Searching for a word when it's more than one word

2018-09-01 Thread J. Landman Gay via use-livecode
There is a town in Texas called West, made infamous a few years ago by a giant explosion. I don't think you can make assumptions about names of places. Mark's suggestion to check for words ending in "s" will fail on many towns, though apostrophe-s may be safe. -- Jacqueline Landman Gay | jac..

Re: Searching for a word when it's more than one word

2018-09-01 Thread J. Landman Gay via use-livecode
On 9/1/18 10:55 AM, Mark Wieder via use-livecode wrote: On 09/01/2018 08:39 AM, J. Landman Gay via use-livecode wrote: There is a town in Texas called West, made infamous a few years ago by a giant explosion. I don't think you can make assumptions about names of places. And thu

Re: Searching for a word when it's more than one word

2018-09-01 Thread J. Landman Gay via use-livecode
No, it's a little north-east of center. On 9/1/18 12:02 PM, Richmond Mathewson via use-livecode wrote: Is West, Texas in West Texas? Richmond. On 1/9/2018 6:55 pm, Mark Wieder via use-livecode wrote: On 09/01/2018 08:39 AM, J. Landman Gay via use-livecode wrote: There is a town in

[OT] Up is down (was: Searching for a word when it's more than one word)

2018-09-01 Thread J. Landman Gay via use-livecode
On September 1, 2018 6:34:17 PM Mark Wieder via use-livecode wrote: On 09/01/2018 02:48 PM, J. Landman Gay via use-livecode wrote: No, it's a little north-east of center. Wait. What? West is north-east of center? Of course. When you're that far south, everything is north. I as

Re: Where's Fraser?

2018-09-03 Thread J. Landman Gay via use-livecode
On 9/3/18 10:57 AM, Mark Wieder via use-livecode wrote: On 09/03/2018 06:53 AM, Lagi Pittas via use-livecode wrote: In the spirit of where's wally Can you spot Fraser in this Pic? https://www.dejero.com/about-us/profile Ha! Well, that certainly looks like Fraser. Is that really him? Gotta

Re: ANN: LC Documentation Cache Cleaner

2018-09-03 Thread J. Landman Gay via use-livecode
On 9/2/18 1:21 PM, Mark Wieder via use-livecode wrote: Posted a utility stack to livecodeshare: When first launched, the LiveCode IDE will build a documentation cache for the current version. When you upgrade to a new version, a new cache folder is created, but any older cache is still in the

Re: Mobile Rotation Redux

2018-09-03 Thread J. Landman Gay via use-livecode
I ran both stacks on my Pixel and they got exactly the same results you reported; in other words, everything worked just fine. I decided to try my theory that we could combine fullscreenMode with individual object placement and we can. This will prevent the tiny image when the device is rotate

Re: ANN: LC Documentation Cache Cleaner

2018-09-03 Thread J. Landman Gay via use-livecode
18 01:56 PM, J. Landman Gay via use-livecode wrote: Maybe run it on a Mac, I wasn't able to unhilite the verify button. Well, that's distressing. I did try it on osx before releasing it, but I'll go back and check it again - may have skipped a version. -- -- Mark Wieder

Re: Android install on Lollypop 9.01 rc2

2018-09-04 Thread J. Landman Gay via use-livecode
It could be the minimum required version, check that first. Also be sure the app has been signed (for development only is okay.) It can also happen if the app manifest requires permissions or features that Android 5 doesn't support. Apps are also not installed if the device already has a previ

RE: Android install on Lollypop 9.01 rc2

2018-09-04 Thread J. Landman Gay via use-livecode
see if it still installs. V5 is still 20% of market. 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 J. Landman Gay via use-livecode Sent: Tuesday, September 04, 2

Re: ANN: LC Documentation Cache Cleaner

2018-09-04 Thread J. Landman Gay via use-livecode
On 9/3/18 9:08 PM, Mark Wieder via use-livecode wrote: My bad - I actually uploaded an earlier version Nah, your good. This is really useful, and the error was trivial. You also have to be credited with finding those files that most of us didn't know existed. I can't believe the cruft my driv

Re: PreOpenBackground Messages

2018-09-05 Thread J. Landman Gay via use-livecode
You may need to pass the message. From the dictionary entry for preOpenBackground: "If the card does not handle the message, or passes it, the message proceeds through each group in reverse layer order (from highest to lowest)." On 9/5/18 12:23 AM, Brian Milby via use-livecode wrote: Quick que

Re: Android install on Lollypop 9.01 rc2

2018-09-05 Thread J. Landman Gay via use-livecode
On 9/5/18 12:20 PM, Ralph DiMola via use-livecode wrote: I rebuilt using 9.0.1rc2 but un-ticked "ad support" in the standalone settings. The user was able to install. Although I don't use ads, I looking into it. I will re-enable and have the user try to install just so we can all know if this was

Re: Stacks in Memory

2018-09-05 Thread J. Landman Gay via use-livecode
There are a number of things that will prevent destroyStack from working. It will fail if the stack is in use, if there is an open socket, if there is an open driver, and maybe some other things I can't remember. Basically, if any part of the stack is still in operation it can't be purged. On

Re: ANN: LC Documentation Cache Cleaner

2018-09-05 Thread J. Landman Gay via use-livecode
On September 5, 2018 10:34:40 PM Richard Gaskin via use-livecode wrote: The last time I was keen on this I stopped pursuing it based on this post: http://lists.runrev.com/pipermail/use-livecode/2016-November/232864.html We can upload zip files to Sample Stacks? If that's the case then I thin

Re: ANN: LC Documentation Cache Cleaner

2018-09-06 Thread J. Landman Gay via use-livecode
On 9/6/18 9:02 PM, Mark Wieder via use-livecode wrote: On 09/06/2018 06:08 PM, James At The Hale via use-livecode wrote: Mark asked: There's a new extension store on the way? Well it is here already. Only it currently only offers widgets. The plan, as presented in one of the LC Globals a whi

Re: Script Editor Magic Keys

2018-09-06 Thread J. Landman Gay via use-livecode
On 9/6/18 9:41 PM, Sannyasin Brahmanathaswami via use-livecode wrote: Is the some documentation the Script Editor, auto complete et. al.? It's in the User Guide, page 498. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperacti

Re: ANN: LC Documentation Cache Cleaner

2018-09-06 Thread J. Landman Gay via use-livecode
On 9/6/18 10:56 PM, J. Landman Gay via use-livecode wrote: On 9/6/18 9:02 PM, Mark Wieder via use-livecode wrote: On 09/06/2018 06:08 PM, James At The Hale via use-livecode wrote: Mark asked: There's a new extension store on the way? Well it is here already. Only it currently only o

Re: 4WDevolution question

2018-09-08 Thread J. Landman Gay via use-livecode
Just a tip for those not using devo: cmd-ctrl-shift-right click on any stack displays a menu with many different options, one of which is to save the stack regardless of the mode. It also allows you to send messages to the card or stack directly (easier than the message box for stacks not tople

Re: Remote Debugger Anomalies

2018-09-12 Thread J. Landman Gay via use-livecode
I've seen the same thing repeatedly. I wasn't able to work around the problem. I'd like a way to manually force the debugger to unload itself and reload the new script. There is a bug report you can add to: On 9/12/18 8:40 AM, Sannyasin Brah

Re: Remote Debugger Anomalies

2018-09-13 Thread J. Landman Gay via use-livecode
On 9/13/18 8:42 AM, Andrew Bell via use-livecode wrote: - The stack that caches object scripts is not being cleaned up properly between debugging sessions. This would mean that you would see the old script but what would be executing would be the new script. One way to test this might be to mov

Re: [OT] Working with Android devices

2018-09-14 Thread J. Landman Gay via use-livecode
Take a look at AirDroid, it's free and in the Play Store. It mounts the Android device on the Mac desktop and allows dragging files in either direction over your local network. It also allows a lot of other things too, including running your Android apps on the Mac. If you want a more shell ty

Re: [OT] Working with Android devices

2018-09-14 Thread J. Landman Gay via use-livecode
reen lock. That would be a huge security risk. ADB may allow it (I haven't looked into that) but it does require cabling to the computer. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 14, 2018 10:16:47 AM "J. Lan

Re: Internet Date Service test

2018-09-14 Thread J. Landman Gay via use-livecode
You could put a little one line CGI on your server that just returns the time and date. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 14, 2018 8:47:51 PM Peter Bogdanoff via use-livecode wrote: Yes, that’s right. We had

Re: Remote Debugger Anomalies

2018-09-15 Thread J. Landman Gay via use-livecode
I asked this before and the fix is to quit the app, if I remember right. The problem on Android is that apps never really quit, they remain in the background until the OS needs the RAM. When the OS wipes the app, we don't receive any messages so the debugger won't know when the socket closes. Th

Re: Remote Debugger Anomalies

2018-09-16 Thread J. Landman Gay via use-livecode
Stacks named that way were the ones I tried deleting when the whole IDE went down on my next test build. I decided not to do that any more. :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 16, 2018 6:20:13 PM Monte Goulding v

Re: best way to open a script-only library stack?

2018-09-17 Thread J. Landman Gay via use-livecode
On 9/17/18 12:49 PM, Curtis Ford via use-livecode wrote: I'm just getting started with the idea of a library stack for scripts, and have a dopey question: what's the best way to edit the library as I work on the project? I've created a script-only stack and included start using stack "myScrip

Re: best way to open a script-only library stack?

2018-09-17 Thread J. Landman Gay via use-livecode
On 9/17/18 8:45 PM, Richard Gaskin via use-livecode wrote: While in memory it has all the properties of any stack in memory. I just checked, and script-only stacks do have filenames. I didn't realize that before, I'd assumed they were temporary only. Good info. -- Jacqueline Landman Gay

<    6   7   8   9   10   11   12   13   14   15   >