Re: Mac App Store step by step instructions just updated.

2019-02-20 Thread Matthias Rebbe via use-livecode
Kee, thanks for this great step by step doc. But i am wondering how you´ve solved the copy protection? I mean, how will you take care that the app is not shared and used by an other user with an other Apple ID? Do you use any 3rd party tools for it in your app? Matthias Matthias Rebbe

Mac App Store step by step instructions just updated.

2019-02-20 Thread kee nethery via use-livecode
Signing and Uploading apps to the Mac App Store http://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store Have gone through the app revision process and my app was reviewed and published so as of yesterday, the step by step instructions are correct. Kee

RE: LC902 and LC901 message box error was LC902 and LC901 Hang with Answer (was Crash

2019-02-20 Thread Ralph DiMola via use-livecode
I have not. It's a big stack with billions(well a 100 anyway) of support files. I will open a report as soon as I can package it up. A new twist. A ctrl S will work normally until I open the message box. The inspector will also open OK. Open up the message box and close it. Now a ctrl S will

Re: LC902 and LC901 message box error was LC902 and LC901 Hang with Answer (was Crash

2019-02-20 Thread Richard Gaskin via use-livecode
Excellent sleuthing, Ralph. Has this valuable info made its way into a bug report? -- Richard Gaskin Fourth World Systems Ralph DiMola wrote: Maybe this will help with some of the v9 problems. This is happening on my Win 10 VM. I have a stack that makes the IDE go crazy if you open up the

LC902 and LC901 message box error was LC902 and LC901 Hang with Answer (was Crash

2019-02-20 Thread Ralph DiMola via use-livecode
Maybe this will help with some of the v9 problems. This is happening on my Win 10 VM. I have a stack that makes the IDE go crazy if you open up the message box. A slew of "can't find object" errors from a try/catch in my stack. Yesterday it was OK the day before yesterday IDE went crazy. No

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread J. Landman Gay via use-livecode
On 2/20/19 3:13 PM, JJS via use-livecode wrote: Is someone of the dev team looking in to these random strange behaviours, which in some cases do not have fixed recipe? I don't know how they could without a recipe. Where would they look first? -- Jacqueline Landman Gay |

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread Brian Milby via use-livecode
That only covers perpetual licenses.  The current license model is different, but now we also have the community version option. Thanks, Brian On Feb 20, 2019, 3:31 PM -0500, Glen Bojsza via use-livecode , wrote: > Your license is good up to the last stable version that was released prior > to

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread JJS via use-livecode
Is someone of the dev team looking in to these random strange behaviours, which in some cases do not have fixed recipe? Op 20-2-2019 om 18:50 schreef hh via use-livecode: Each and every MacOS 10.x.0 and 10.x.1. Even Windows 10 is closer to "stable" than these "first" versions. Bob S. wrote:

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread Glen Bojsza via use-livecode
Your license is good up to the last stable version that was released prior to expiration. On Wed, Feb 20, 2019 at 2:35 PM Richmond via use-livecode < use-livecode@lists.runrev.com> wrote: > On Macintosh it is there: 7.1.4, 8.1.14, 9.0.2. > > Why are you mucking around with Indy Version 8.0.0

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread Richmond via use-livecode
On Macintosh it is there: 7.1.4, 8.1.14, 9.0.2. Why are you mucking around with Indy Version 8.0.0 DP4? If your licence is still valid you can upgrade to the "latest and greatest." If your licence has expired then your 8.0.0 DP4 should not be working, at which point you can either download a

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread J. Landman Gay via use-livecode
I see it in both 8.1.10 and 9.0.2, second item from the top. On 2/20/19 9:54 AM, Glen Bojsza via use-livecode wrote: I found the problem...in my Indy Version 8.0.0 DP4 there is no image library under the development menu?? In LC 6.7.6 there is. So why isn't there one in LC 8.0.0? --

Re: Livecode with Window 7

2019-02-20 Thread Richard Gaskin via use-livecode
Sannyasin Brahmanathaswami wrote: > One of our volunteers uses Window 7, (2009 his last update). Best to proceed as though the machine is compromised. It may not be, but eight years without updates is dangerously long so better to err on the side of prudence: Deliver no software that provides

Re: Data grid : show an button in a column only if there is an email in other column

2019-02-20 Thread Ludovic via use-livecode
I was not far away ! Thank you. > Le 20 févr. 2019 à 17:58, zryip theSlug via use-livecode > a écrit : > > Ludovic, > > Try: > > on FillInData pData > >if pData["email"] <> "" then show btn "sendmail" of me > >else hide btn "sendmail" of me > > end FillInData > > On

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread hh via use-livecode
Each and every MacOS 10.x.0 and 10.x.1. Even Windows 10 is closer to "stable" than these "first" versions. > Bob S. wrote: > Really? Which ones? > > hh wrote: > > * People are updating their OS without denoting it (for example > > some MacOS versions are highly unstable). This affects especially

Re: Livecode with Window 7

2019-02-20 Thread Richmond via use-livecode
I keep a machine around with Windows 7 on it (disconnected from monitor, keyboard, mouse and internet); and drag it out about once a month to test Windows standalone builds. It was worth the price of a Windows OEM licence just for that as it has caught me once or twice in quite surprising ways.

Re: Livecode with Window 7

2019-02-20 Thread J. Landman Gay via use-livecode
I don't have an answer for the general problem, but the "as sheet" option is OSX only. Windows doesn't support that. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On February 19, 2019 9:05:40 PM Sannyasin Brahmanathaswami via

Re: Data grid : show an button in a column only if there is an email in other column

2019-02-20 Thread zryip theSlug via use-livecode
Ludovic, Try: on FillInData pData if pData["email"] <> "" then show btn "sendmail" of me else hide btn "sendmail" of me end FillInData On Wed, Feb 20, 2019 at 5:54 PM Ludovic THEBAULT via use-livecode < use-livecode@lists.runrev.com> wrote: > Hello, > > I have an address

Data grid : show an button in a column only if there is an email in other column

2019-02-20 Thread Ludovic THEBAULT via use-livecode
Hello, I have an address table (data grid) including an "email" column. An other column contains a button to send an email. I want to hide this button if the line does not contain an email. I put this script in the behavior of the button column : on FillInData pData if pData["email"]

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread Bob Sneidar via use-livecode
Really? Which ones? Bob S > On Feb 20, 2019, at 08:23 , hh via use-livecode > wrote: > > * People are updating their OS without denoting it (for example > some MacOS versions are highly unstable). This affects especially > cross platform apps as LiveCode.

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread hh via use-livecode
All LC 9 versions have some serious problems, especially memory problems with widgets. But we should have also the following possible reasons for "malfunctions" of LiveCode in mind. * People are updating their OS without denoting it (for example some MacOS versions are highly unstable). This

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread hh via use-livecode
> GlenB. wrote: > I found the problem...in my Indy Version 8.0.0 DP4 there is > no image library under the development menu?? In LC 6.7.6 > there is. So why isn't there one in LC 8.0.0? Lost in space? Only the sky is the limit for LiveCode ... ___

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread Glen Bojsza via use-livecode
I found the problem...in my Indy Version 8.0.0 DP4 there is no image library under the development menu?? In LC 6.7.6 there is. So why isn't there one in LC 8.0.0? On Wed, Feb 20, 2019 at 10:35 AM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > What you see when

Re: scrCopy BlendMode

2019-02-20 Thread hh via use-livecode
1. If you quote the modes then it works. set the ink of img "DSC03103.jpeg" to "srcCopy" 2. The bitmap modes are no longer supported in LC 9. This is reported in several of the release notes. Probably they are still listed to allow legacy stacks (LC 6/7/8/9). 3. For example:

scrCopy BlendMode

2019-02-20 Thread Beat Cornaz via use-livecode
A couple of questions about BlendModes in LC. 1. The 'normal' blendMode is scrCopy (the mode all objects get when they are created). I can change that blendmode and later put it back to scrCopy in the Inspector. But setting the ink to scrCopy by script does not work. I type in the messagebox :

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread J. Landman Gay via use-livecode
What you see when choosing an icon is the Image Library, which is also in the Development menu. It doesn't show all controls, only images, but it does have an option to show all the images in the current stack. You can't use the Image Library to delete an image from the stack though. For that

Re: LC902 and LC901 Hang with Answer (was Crash)

2019-02-20 Thread Sphere via use-livecode
And i double check if i did not turn off messages, sometimes i need to double click it to get a good reaction. But that's separate from these issues. J. Landman Gay via use-livecode schreef op 2019-02-19 22:30: On 2/19/19 3:00 PM, JJS via use-livecode wrote: But just yet i also had a weird

Re: Old Rev stack feature / view ...where is it in LC 8

2019-02-20 Thread Glen Bojsza via use-livecode
No, it would show all the controls a stack has which includes the imported ones. When you scrolled through the images it contained the really old Metacard images. You can see this when you want to add an image to a button but that is when you are in the button’s property manager selecting an