RE: Android Release Requires 21 but 911 Devices Get Dropped?

2020-04-18 Thread Ralph DiMola via use-livecode
BR, If I read the release notes correctly Android versions 4.4 (KitKat) 4.1-4.3 (Jelly Bean) 4.0 (Ice Cream Sandwich) Are no longer supported. Supported Android minimum version is now 5.0-5.1 (Lollipop) Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net

Simple 3D animation question

2020-04-18 Thread David Bovill via use-livecode
For Earth Day this Wendesday a few of us are working on an art piece that I want to use Livecode for. As part of this event I need to create an interactive presentation and wish to create an icosahedrons - so a 3 dimensional hexagon - that I need to rotate in different dimensions. I have seen

DataGrid table DeleteIndex

2020-04-18 Thread Neville Smythe via use-livecode
Am I doing something wrong? I put a comma delimited list into tIndexes, then dispatch DeleteIndex to my DataGrid with tIndexes. Only the first index in my list is actually deleted. LC 9.5.1, Mac Catalina. [Also, If I perform another action in the same handler as the call to delete indexes

Re: DataGrid table DeleteIndex

2020-04-18 Thread Bob Sneidar via use-livecode
Also, tIndexes is a CR delimited list, not a COMMA delimited one. http://lessons.livecode.com/m/datagrid/l/7344-data-grid-api Bob S > On Apr 18, 2020, at 6:04 AM, Bob Sneidar wrote: > > The data grid does not use threads. Nothing in LC does. Did you try the > plural form of deleteIndex(es)?

Re: DataGrid table DeleteIndex

2020-04-18 Thread Bob Sneidar via use-livecode
The data grid does not use threads. Nothing in LC does. Did you try the plural form of deleteIndex(es)? Bob S > On Apr 18, 2020, at 1:50 AM, Neville Smythe via use-livecode > wrote: > > Am I doing something wrong? > > I put a comma delimited list into tIndexes, then dispatch DeleteIndex

Re: DataGrid table DeleteIndex

2020-04-18 Thread Bob Sneidar via use-livecode
Belay that it’s early morning and my eyes aren’t focusing well. DeleteIndexes • DeleteIndexes pIndexes • Deletes the specified indexes from the data grid. pIndexes is a comma delimited list of integers. Bob S > On Apr 18, 2020, at 6:06 AM, Bob Sneidar via use-livecode >

Re: Apps to fight COVID-19

2020-04-18 Thread JeeJeeStudio via use-livecode
That's not made with livecode right? Op 18-4-2020 om 15:45 schreef David Bovill via use-livecode: The app looks a good start, but basic. I took a closer look at the cartoon images, they are quite specific, but a good base for a discussion about privacy issues. Not so good for an app. My

LC 9.6.0 (dp4) - cannot set the URL of an iOS native browser if it was previously set to empty

2020-04-18 Thread HENRY LOWE via use-livecode
Took me some time to track this one down, so I thought that it might be helpful to know in advance: With LC 9.6.0 (dp4) after setting the url of the iOS native browser (not the Browser Widget) to empty, one cannot set the browser’s url to another value. Example: MobileControlSet

Visual Effect

2020-04-18 Thread Bob Sneidar via use-livecode
I’m having trouble wrapping my head around visual effects. I’ trying to hide and show stacks using visual effects. Consider this in a button: on mouseUp wait 1 second set the visible of homeStack() to false lock screen set the visible of homeStack() to true unlock screen with

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
Not sure at this point. When I open a sub stack called “Devices” (or any sub stack) of my main stack “Forms Generator” and I enter “put the defaultStack” in the message box, I get “Forms Generator”. If I put the command “put the defaultStack” in the last line of the openStack handler of stack

Re: Visual Effect

2020-04-18 Thread scott--- via use-livecode
From the docs: The visual effect command affects only navigation within a window. If you want to create a transition effect when moving between stacks, use the go...in window form of the go command : visual effect "wipe down" go stack Index in window "Part 2" -- replaces stack on screen —

Re: Visual Effect

2020-04-18 Thread Bob Sneidar via use-livecode
Thanks Scott. I should read the whole command. I only got as far as the examples for cards. Bob S > On Apr 18, 2020, at 12:15 PM, scott--- via use-livecode > wrote: > > From the docs: > > The visual effect command affects only navigation within a window. If you > want to create a

Re: Apps to fight COVID-19

2020-04-18 Thread David Bovill via use-livecode
The app looks a good start, but basic. I took a closer look at the cartoon images, they are quite specific, but a good base for a discussion about privacy issues. Not so good for an app. My suggestion regarding taking this forwards is that we have a creative workshop on Earth Day this coming

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread dunbarx--- via use-livecode
Bob. I make a new stack "XXX", and a substack "YYY", and save the lot. To be sure, I quit LC and open "XXX" from the desktop. There is a single button on "XXX" that:on mouseUp   go stack"yyy"answer the  defaultStackend mouseUp I get "YYY" What are you seeing? Craig -Original Message-

Re: Simple 3D animation question

2020-04-18 Thread Rick Harrison via use-livecode
Hi David, How many wires in your wire animation? How fast and smooth does your rotation need to be? Is there going to be an image or writing on the side that shows up? Hmm, an icosahedron has 20 sides, so it’s like 20 sided dice! I just saw a web version that didn’t bother to rotate the image

Re: Simple 3D animation question

2020-04-18 Thread David Bovill via use-livecode
Thanks Rick - yes an icosahedrons wireframe is quite minimal. No opacity or shading needed at this stage. Livecode animation of the graphic object is certainly fast enough. It’s acceptable smooth enough - though not ideal due to lack of antialiasing (I think). I could look around for some

RE: Simple 3D animation question

2020-04-18 Thread Clarence Martin via use-livecode
Check out an animation that Jim Lambert does with a scrolling group with images. It is really slick. He may have a posting on the LiveCode forum. In the mean time I will try to find a copy for you. I also believe that he showed it at the LiveCode Conference last year. -Original

RE: Simple 3D animation question

2020-04-18 Thread Clarence Martin via use-livecode
Cell animation by Jim Lambeert http://livecodeshare.runrev.com/stack/857/Cel-Animation -Original Message- From: use-livecode On Behalf Of David Bovill via use-livecode Sent: Saturday, April 18, 2020 7:26 AM To: How to use LiveCode Cc: David Bovill Subject: Re: Simple 3D animation

Re: Simple 3D animation question

2020-04-18 Thread Mark Wieder via use-livecode
On 4/18/20 6:32 AM, David Bovill via use-livecode wrote: For Earth Day this Wendesday a few of us are working on an art piece that I want to use Livecode for. As part of this event I need to create an interactive presentation and wish to create an icosahedrons - so a 3 dimensional hexagon -

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Mark Wieder via use-livecode
On 4/18/20 11:33 AM, Bob Sneidar via use-livecode wrote: Until I can figure out what is causing it, I cannot trust the defaultStack. I think the basic lesson here is "if you're going to rely on the defaultstack you should set the defaultstack". -- Mark Wieder ahsoftw...@gmail.com

Auto opening of Project Browser

2020-04-18 Thread JeeJeeStudio via use-livecode
Hi, maybe i missed it, but i think not. Why is in preferences no option, to or not to, always have the Project Browser opened when starting LC? Actually same counts for the message box. Thanks! Jerry ___ use-livecode mailing list

Re: Simple 3D animation question

2020-04-18 Thread Håkan Liljegren via use-livecode
When teaching my students about hybrid apps I usually do a session called "Vad är klockan vart då?" (What is the time where?) Where we have a globe in a browser widget, that you can spin and tap. When you tap a location we have a clock-widget set to the current time at that location. The globe

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
same thing Bob S > On Apr 18, 2020, at 2:18 PM, J. Landman Gay via use-livecode > wrote: > > What do you get if you use "go" instead of "open"? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
I’m putting together a simple demo and will post on bulgiest in a few. Bob S > On Apr 18, 2020, at 2:18 PM, J. Landman Gay via use-livecode > wrote: > > What do you get if you use "go" instead of "open"? > > On 4/18/20 3:48 PM, Bob Sneidar via use-livecode wrote: >> Okay I created a simple

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
https://quality.livecode.com/show_bug.cgi?id=22691 if anyone is interested. Very simple test stacks included. Bob S > On Apr 18, 2020, at 2:20 PM, Bob Sneidar via use-livecode > wrote: > > I’m putting together a simple demo and will post on bulgiest in a few. > > Bob S > > >> On Apr

Re: Apps to fight COVID-19

2020-04-18 Thread dsc--- via use-livecode
I will attend. > On Apr 18, 2020, at 7:45 AM, David Bovill via use-livecode > wrote: > > The app looks a good start, but basic. I took a closer look at the cartoon > images, they are quite specific, but a good base for a discussion about > privacy issues. Not so good for an app. > > My

Re: Apps to fight COVID-19

2020-04-18 Thread Dar Scott Consulting via use-livecode
I don't think Coronika is made with LiveCode. However, it might be inspiring. For some reason downloading never completes on my old Android phone. > On Apr 18, 2020, at 11:56 AM, JeeJeeStudio via use-livecode > wrote: > > That's not made with livecode right? > > Op 18-4-2020 om 15:45 schreef

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread dunbarx--- via use-livecode
Hi. I know that doing the simplest things, breathing, going down to the message box, can upset the defaultStack. I see this often when trying to change properties in open inspector(s). My example may have been unfair to your issue, because I wound it so tightly within a single short handler.

Re: Visual Effect

2020-04-18 Thread dunbarx--- via use-livecode
Hi. I never use visual effects, but I think you may need to go to the dictionary. One thing it says is:  "The visual effect command affects only navigation within a window. If you want to create a transition effect when moving between stacks, use the go...in window form of the go command :

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
By the way, this has NOTHING to do with substacks as I initially thought. The same thing happens with separate stacks. > On Apr 18, 2020, at 1:48 PM, Bob Sneidar via use-livecode > wrote: > > Okay I created a simple stack with one sub stack. In the card script of stack > 1 I put the

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
What is worse, after THIS script runs: on openStack put the defaultStack && the short name of the topStack & cr into msg go stack "untitled 2" put the defaultStack && the short name of the topStack & cr after msg go the owner of me set the defaultStack to the owner of me put the

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
Okay I created a simple stack with one sub stack. In the card script of stack 1 I put the handler: on openStack put the defaultStack & cr into msg open stack "untitled 2" put the defaultStack & cr after msg open me put the defaultStack & cr after msg end openStack I get: stack

Sound and the Xcode simulator

2020-04-18 Thread Graham Samuel via use-livecode
This is a simple one. I have a sound (and audioclip) that plays in the IDE (it’s a WAV), but when I try it in the iPhone simulator it doesn’t play. The simulated phone is not silent and has a decent amount of sound volume. I have tried both ‘System’ and ‘Internal Speakers’ as outputs from the

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread J. Landman Gay via use-livecode
What do you get if you use "go" instead of "open"? On 4/18/20 3:48 PM, Bob Sneidar via use-livecode wrote: Okay I created a simple stack with one sub stack. In the card script of stack 1 I put the handler: on openStack put the defaultStack & cr into msg open stack "untitled 2" put

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread Bob Sneidar via use-livecode
Go and Open are synonyms. Bob S > On Apr 18, 2020, at 2:19 PM, Bob Sneidar wrote: > > same thing > > Bob S > > >> On Apr 18, 2020, at 2:18 PM, J. Landman Gay via use-livecode >> wrote: >> >> What do you get if you use "go" instead of "open"?

Re: Sound and the Xcode simulator

2020-04-18 Thread Mark Talluto via use-livecode
On Apr 18, 2020, at 2:17 PM, Graham Samuel via use-livecode wrote: > > This is a simple one. > > I have a sound (and audioclip) that plays in the IDE (it’s a WAV), but when I > try it in the iPhone simulator it doesn’t play. The simulated phone is not > silent and has a decent amount of

Re: Simple 3D animation question

2020-04-18 Thread Mark Wieder via use-livecode
On 4/18/20 1:56 PM, ha...@exformedia.se wrote: When teaching my students about hybrid apps I usually do a session called "Vad är klockan vart då?" (What is the time where?) Where we have a globe in a browser widget, that you can spin and tap. When you tap a location we have a clock-widget set

Re: DataGrid table DeleteIndex

2020-04-18 Thread Bob Sneidar via use-livecode
I ran into the same problem when I started working with multiple indexes. Bob S > On Apr 18, 2020, at 5:58 PM, Neville Smythe via use-livecode > wrote: > > BobS wrote > >> Did you try the plural form of deleteIndex(es)? > > Well you see I read the documentation. Which says

Re: Long Standing Issue with the defaultStack

2020-04-18 Thread J. Landman Gay via use-livecode
The stack style is important, its mode influences which stack is toplevel and default. A palette shouldn't be the default stack unless you focus on it, for instance. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On April 18, 2020

Re: DataGrid table DeleteIndex

2020-04-18 Thread Neville Smythe via use-livecode
BobS wrote > Did you try the plural form of deleteIndex(es)? Well you see I read the documentation. Which says “DeleteIndexes” is a synonym of “DeleteIndex”. So I didn’t try it (didn’t try “DeleteIndices” either). Thanks Bob, that does work! So the documentation is wrong. There is no separate

Re: Sound and the Xcode simulator

2020-04-18 Thread J. Landman Gay via use-livecode
Are you using a scripted player? -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On April 18, 2020 4:19:52 PM Graham Samuel via use-livecode wrote: This is a simple one. I have a sound (and audioclip) that plays in the IDE (it’s a