Re: LiveCode won't recognize my stack

2019-12-27 Thread Richard Gaskin via use-livecode
LiveCode will recognize any stack file of the same or earlier version of the engine attempting to access it, regardless of file extension. Must be something else going on with that... -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile, and the Web

Re: mobile dev confusion

2019-12-27 Thread Jjs via use-livecode
Choose Android 4.1.2 in the build settings then it will probably be 99% of all devices. But 6% is very low. Did you also provide an apk for armv8, arm64? If i'm correct the x86 are not of interest anymore, it was a short wave of intel mobile processors, correct me if i'm wrong. Tom Glod via use

Re: LiveCode won't recognize my stack

2019-12-27 Thread Bill Vlahos via use-livecode
Mark, It is both the name of the stack and file name. I’d really rather not have to rename the license key file name. It would be better to figure out how LiveCode could work like it used to. Thanks, Bill > On Dec 27, 2019, at 5:08 PM, Mark Wieder via use-livecode > wrote: > > On 12/27/19

Re: mobile dev confusion

2019-12-27 Thread Tom Glod via use-livecode
"The Spiritual Workout" app was created in LiveCode...and I'm running it on Android 7.0 phones and it works fine. And as far as I can tell that is a recently built app. Sooo...what must I do to have my app run on older versions of android (and iOS I guess)??? So confused. ___

mobile dev confusion

2019-12-27 Thread Tom Glod via use-livecode
Hi folks, I'm following this tutorial http://lessons.livecode.com/m/4069/l/985962-livecode-and-android-studio and i've installed android 8.0 SDK as specified the distribution chart says that only 6% of devices have this version of android. Does this mean only 6% of devices will be able to

Re: LiveCode won't recognize my stack

2019-12-27 Thread Mark Wieder via use-livecode
On 12/27/19 2:51 PM, Bill Vlahos via use-livecode wrote: List, Version 9.x of LiveCode doesn’t recognize stacks unless the file name ends with either .rev or .livecode. Previous versions (I don’t know when this changed) were able to. I use a stack file as the Preferences file for InfoWallet b

Re: A Windows 10 WTF

2019-12-27 Thread Tom Glod via use-livecode
Nope..its not sharing any resources, each one runs isolated in its own folder. Yep... you can set affinity manually using the task manager. The only thing shared between them is the name of the stack window...I guess I'll test that first. This is weird and I don't like it . but it only affec

Re: LiveCode won't recognize my stack

2019-12-27 Thread Bill Vlahos via use-livecode
Peter, I don’t want to open or go to that stack. It is like a preferences stack. I want to get and set custom properties of it. Regards, Bill > On Dec 27, 2019, at 4:28 PM, Peter Bogdanoff via use-livecode > wrote: > > Hi Bill, > > In LC 9.04 issue a command > > go stack tURL > > where tU

Re: LiveCode won't recognize my stack

2019-12-27 Thread Peter Bogdanoff via use-livecode
Hi Bill, In LC 9.04 issue a command go stack tURL where tURL is the directory path and it opens the stacks. My stacks don’t have a suffix at all. Peter Bogdanoff > On Dec 27, 2019, at 5:51 PM, Bill Vlahos via use-livecode > wrote: > > List, > > Version 9.x of LiveCode doesn’t recognize

Re: LiveCode won't recognize my stack

2019-12-27 Thread hh via use-livecode
This works here: go stack url("binfile:/Users/admin/xstacks/selectiveGray6789.IW") ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev

LiveCode won't recognize my stack

2019-12-27 Thread Bill Vlahos via use-livecode
List, Version 9.x of LiveCode doesn’t recognize stacks unless the file name ends with either .rev or .livecode. Previous versions (I don’t know when this changed) were able to. I use a stack file as the Preferences file for InfoWallet but the file name is “LicenseKey.IW”. When I execute the fo

Re: How to "save" the IDE stack

2019-12-27 Thread Mark Wieder via use-livecode
On 12/27/19 5:58 AM, Sannyasin Brahmanathaswami via use-livecode wrote: Suddenly on my multi-monitor set up RevMenuBar appears left monitor: topLeft -1023,200 RevNavigator appear left monitor: topLeft -420,442 RevTool on the "bottom" monitor: topLeft 43,1456 OK so I can, from the messag

Re: Polygon Side Does Note Match to Polygon rect

2019-12-27 Thread Richmond via use-livecode
This is similar to a problem I've had with hexagons. Probably the best thing is NOT to use the Regular Polygon Tool but to define your own triangles using a Polygon Graphic where you set the points. Richmond. On 27.12.19 17:30, Sannyasin Brahmanathaswami via use-livecode wrote: Regular Polygon

Doc bug OR htmlText bug?

2019-12-27 Thread Paul Dupuis via use-livecode
LC List Hive Mind: See https://quality.livecode.com/show_bug.cgi?id=22517 - a reported discrepancy between teh Dictionary documentation on htmlText and what is actually returned by getting "the effective htmlText" of a field. I think for an attempt at consistency with HTML attributes, what is

Re: Polygon Side Does Note Match to Polygon rect

2019-12-27 Thread hh via use-livecode
A triangle with width=height is NOT a regular polygon (it doesn't have equal side length). To have what you want create a grc of type "polygon" and then set points of grc 1 to "0,0,10,-10,20,0,0,0" set width of grc 1 to 243 set height of grc 1 to 243 To have equal sideLength you set the width t

Re: A Windows 10 WTF

2019-12-27 Thread Bob Sneidar via use-livecode
That's a thought. Also, there used to be a way to set the affinity of an application to prefer or only run on one core. This was in the early days of multi-cores where apps might not be multicore aware. Not sure if this is a thing anymore. Bob S > On Dec 26, 2019, at 16:15 , Peter Bogdanoff

Re: Polygon Side Does Note Match to Polygon rect

2019-12-27 Thread Bob Sneidar via use-livecode
Can you set the margins to 0? Bob S > On Dec 27, 2019, at 07:30 , Sannyasin Brahmanathaswami via use-livecode > wrote: > > Regular Polygon Tool: > > If you create a triangle grc and set its width and height to 243pt > > the tool positions the top of the triangle to center of the top line of

Re: Polygon Side Does Note Match to Polygon rect

2019-12-27 Thread Brian Milby via use-livecode
The center (loc) of the rect is the center of the triangle.  So to get a triangle of width W, you need to set the height and width of the grc to 2*W/sqrt(3). Thanks, Brian On Dec 27, 2019, 10:31 AM -0500, Sannyasin Brahmanathaswami via use-livecode , wrote: > Regular Polygon Tool: > > If you cr

Polygon Side Does Note Match to Polygon rect

2019-12-27 Thread Sannyasin Brahmanathaswami via use-livecode
Regular Polygon Tool: If you create a triangle grc and set its width and height to 243pt the tool positions the top of the triangle to center of the top line of the rect and leaves margins on the left and right sides. Thus, the triangle itself doesn't take the width of 243pt. It like ist has ma

Re: How to "save" the IDE stack

2019-12-27 Thread Richmond via use-livecode
Probably the best thing to do is to store those instructions in a stack which you save as a plugin to run at every start up of LiveCode. Yes, I know that's a bother . . . Richmond. On 27.12.19 15:58, Sannyasin Brahmanathaswami via use-livecode wrote: Suddenly on my multi-monitor set up RevMen

How to "save" the IDE stack

2019-12-27 Thread Sannyasin Brahmanathaswami via use-livecode
Suddenly on my multi-monitor set up RevMenuBar appears left monitor: topLeft -1023,200 RevNavigator appear left monitor: topLeft -420,442 RevTool on the "bottom" monitor: topLeft 43,1456 OK so I can, from the message box, do this: set the topleft of stack revMenubar to 0,20 and it wo

RE: A Windows 10 WTF

2019-12-27 Thread Ralph DiMola via use-livecode
Is there a common resource that both processes are using? Maybe there on 2 different cores but a file locking, database or some similar issue is causing the standalone to lock up. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: