Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 1:32 PM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > The startup log is stored in /Users/your_user_name/ > Library/Logs/RunRev/LiveCodeToolsLog.txt > > This file should be quite large, so scroll down to see the most recent > startup log. >

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
What jacque was referring to is a different animal. An executable set up as a cgi, that (if I recall correctly has a startup script and that after script completion, exits) The lc server itself runs in cgi mode (as apposed to as a module I believe) and unless you're using the earliest version

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread panagiotis merakos via use-livecode
The startup log is stored in /Users/your_user_name/ Library/Logs/RunRev/LiveCodeToolsLog.txt This file should be quite large, so scroll down to see the most recent startup log. Since a couple of you guys are seeing your user Plugins not showing, I would suggest you file a bug report so as we

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 1:32 PM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > The startup log is stored in /Users/your_user_name/ > Library/Logs/RunRev/LiveCodeToolsLog.txt > Here is the error. I’ll submit a bug report, although I can’t reproduce it now that I

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread hlowe via use-livecode
I followed the advice about emptying the Plugins folder then adding back my user plugins. Everything works as expected until I add back the DataGrid Helper plugin 'ASG_DataGrid_Helper 2.1.rev'. If that file is in my Plugins folder the other user plugins will not load. DataGrid Helper was working

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Paul Hibbert via use-livecode
Everything is working correctly for me with LC8.1.3 (rc-1) build 14015 on OSX Sierra 10.12.2. I don’t have too many plugins installed, but all the standard ones, my own and lcStackBrowser are all available and working as expected. Paul > On 20 Jan 2017, at 11:22, Trevor DeVore via use-livecode

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread panagiotis merakos via use-livecode
My previous message requires approval because I attached an image. So I paste it here and put the image in a dropbox link: = Hmm, that's strange. Could it be the case that the path to MyLiveCode/Plugins is somehow reset in the Prefs? I have just added Richard Gaskin's plugin in

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 1:42 PM, Trevor DeVore wrote: > On Fri, Jan 20, 2017 at 1:32 PM, panagiotis merakos via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> The startup log is stored in /Users/your_user_name/ >> Library/Logs/RunRev/LiveCodeToolsLog.txt >

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 12:34 PM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > @Trevor It works as expected for me, just tried Business and Indy in my > home laptop. What you describe sounds as a result of corrupted Prefs. Have > you tried trashing your existing

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
I noticed something in the code you posted before. Messed up quotes in the stack script code. I fixed those at the same time but had assumed they were just a typo. Maybe not? On Fri, Jan 20, 2017 at 4:05 PM, Rick Harrison via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Mike, > >

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
The quotes were funky in this like..answer "This is the script in the teststack" (I think thats where I fixed it) On Fri, Jan 20, 2017 at 4:07 PM, Mike Bonner wrote: > I noticed something in the code you posted before. Messed up quotes in > the stack script code. I

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Mike, Ok, the put message in the stack showed up in my browser so that worked fine. My next line of code I tried was: put "I hope this worked!" into field "TestFirstNameField1" of card 1 of this stack It didn’t put anything into that field. I also put the same code into a button on the

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
How do you know it didn't work? Well ok.. first.. On the server you have to make sure that the stack you are on is the one you think you're on. If you put the name of "this stack" you can see where you are when it happens. Second, the server first loads the stack. Then if you "put" something into

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Mike, Sorry I was out for dinner.. > How do you know it didn't work? I know it didn’t work because I looked at the stack and no changes had occurred in the stack. (As in nothing new was put into the field.) I’m not looking for the change to occur in the browser, that’s not where I’m

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
You can modify a stack using lc server, and save it, but that won't update an already open stack in memory. And if you don't add code to save the stack from lc server, even if you do reload the stack, the change won't be there. One way to update a field in an open stack would be to have the

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
The biggest problem I see is that you can't use "answer." Answer is a gui dialog box that requires action (click ok.) If you want the text to show up, use put. (a put with no target container goes to stdout IE to the web page) On Fri, Jan 20, 2017 at 3:35 PM, Rick Harrison via use-livecode <

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
I changed the script of the stack to match, but changed answer to put. The script of the lc server page is now this: go stack "teststack.livecode" -- just to show that go works too put "" & the script of stack "teststack" & "" send "executeThis" to stack "teststack" As before, it will

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
http://guidezone.info/stackuse.lc -- same link to see the updated example. On Fri, Jan 20, 2017 at 3:57 PM, Mike Bonner wrote: > I changed the script of the stack to match, but changed answer to put. > The script of the lc server page is now this: >go stack

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Mike, I had tried “put” before I tried “answer” and it hadn’t worked which was why I tried “answer”. Did you test your new code before posting this to me? Thanks, Rick > On Jan 20, 2017, at 5:57 PM, Mike Bonner via use-livecode > wrote: > > go stack

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Mike, Sorry, I didn’t see this until I had already sent my last message. LOL Yes, I see that things work on your end. I’ll try it again. Thanks, Rick > On Jan 20, 2017, at 5:58 PM, Mike Bonner via use-livecode > wrote: > >

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Mike, I was able to get your example to work fine, so it proves that I’m touching the stack Ok, but when I try to send a message to a handler script in the stack it doesn’t execute the handler. Example: send “executeThis” to stack “teststack” In the stack script of “teststack” the contents

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
just checked, "this stack" should work fine (unless you do something that changes the context) On Fri, Jan 20, 2017 at 5:27 PM, Mike Bonner wrote: > How do you know it didn't work? > Well ok.. first.. On the server you have to make sure that the stack you > are on is the one

Re: LC Server & Server Based Stack?

2017-01-20 Thread Mike Bonner via use-livecode
think I may have figured out what you're wanting to do.. Correct me if I'm wrong. YOu want to have an active process with an open stack that is running, either in the ide or as a standalone. And to then be able to hit a web page that then updates the currently open stack. If thats the case, its

Re: LC Server & Server Based Stack?

2017-01-20 Thread J. Landman Gay via use-livecode
On 1/20/17 6:00 PM, Rick Harrison via use-livecode wrote: My next line of code I tried was: put "I hope this worked!" into field "TestFirstNameField1" of card 1 of this stack It didn’t put anything into that field. When you are working on a server, you can only see what gets put into the

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread jameshale via use-livecode
I can confirm the interaction with the Data Grid Helper plugin. When I removed my copy everything appeared as expected. If I left it in I got nothing under the plugins menu. Added some log excerpts to bugzilla report http://quality.livecode.com/show_bug.cgi?id=19120 -- View this message in

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 11:26 AM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > > LiveCode 8.1.3 RC 1 contains 83 bug fixes and stability improvements: > > - Several crashes have been fixed. > … - Several clipboard-related bugs have been fixed. > After getting

AW: What has changed in MacOS 10.12 in handling code pages?

2017-01-20 Thread Tiemo Hollmann TB via use-livecode
Sure, for me it is natural and I do those checks myself. But not for most of my customers, who partially just know, where to turn on/off their computer. Even in the system requirements I never write (as most do) MIN OS X 10.x, but OS X 10.x to 10.y. But at last nobody ever reads that or cares

Re: What has changed in MacOS 10.12 in handling code pages?

2017-01-20 Thread Kay C Lan via use-livecode
On Wed, Jan 18, 2017 at 3:58 PM, Tiemo Hollmann TB via use-livecode wrote: >So the issue is solved for my current > development, but is a great annoyance for all my customers out there with > old versions, because this bug makes my program unusable for all of them.

Re: What has changed in MacOS 10.12 in handling code pages?

2017-01-20 Thread Kay C Lan via use-livecode
On Fri, Jan 20, 2017 at 2:52 AM, J. Landman Gay via use-livecode wrote: > > These are special font names introduced recently, explained in the > dictionary under "fontnames". Ah, I see, in the Dictionary entry for textFont I should have followed the link to

[ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 8.1.3 RC 1. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 8.1.3 RC 1 contains 83 bug

Interesting Gotcha with Datagrids

2017-01-20 Thread Bob Sneidar via use-livecode
Hi all. I just tracked down a nasty gotcha (notice I didn't say 'bug') that can cause a crash to desktop when working with data grids. I have (for lack of a better term) a "searchbar" object with all the controls and scripts necessary for filtering a data grid. If you type text into the

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Klaus major-k via use-livecode
Hi Panos, > Am 20.01.2017 um 18:26 schrieb panagiotis merakos via use-livecode > : > > Dear list members, > > We are pleased to announce the release of LiveCode 8.1.3 RC 1. > > Getting the Release > === > You can get the release at

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Richmond Mathewson via use-livecode
Marvellous . . . now, let's see . . . Love, Richmond. On 1/20/17 7:26 pm, panagiotis merakos via use-livecode wrote: Dear list members, We are pleased to announce the release of LiveCode 8.1.3 RC 1. Getting the Release === You can get the release at

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread panagiotis merakos via use-livecode
Sorry guys, my bad. Try now :) Best, Panos -- On Fri, Jan 20, 2017 at 5:51 PM, Richmond Mathewson via use-livecode < use-livecode@lists.runrev.com> wrote: > > > On 1/20/17 7:26 pm, panagiotis merakos via use-livecode wrote: > >> Dear list members, >> >> We are pleased to announce the release of

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Richmond Mathewson via use-livecode
On 1/20/17 7:26 pm, panagiotis merakos via use-livecode wrote: Dear list members, We are pleased to announce the release of LiveCode 8.1.3 RC 1. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Not yet,

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Bob Sneidar via use-livecode
Add builtin implementation of field 'Select All' (8.1.3-rc-1) The field control will now understand Cmd/Ctrl+A as the 'Select All' action - causing the whole text of the field to be selected. Nice. I had to workaround this. Bob S ___ use-livecode

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Klaus major-k via use-livecode
Hi all, > Am 20.01.2017 um 18:47 schrieb Klaus major-k via use-livecode > : > > Hi Panos, > >> Am 20.01.2017 um 18:26 schrieb panagiotis merakos via use-livecode >> : >> >> Dear list members, >> >> We are pleased to announce the

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Trevor DeVore via use-livecode
On Fri, Jan 20, 2017 at 11:26 AM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > Dear list members, > > We are pleased to announce the release of LiveCode 8.1.3 RC 1. > I just downloaded 8.1.3 rc-1 Business and the IDE is acting up. None of my plugins load, can’t

Re: LC Server & Server Based Stack?

2017-01-20 Thread Rick Harrison via use-livecode
Hi Jacque & Stephen, Right now I’m running LC Server version 8.1.2 as it is supposed to be set up from the mothership’s perspective. I’ve been looking at Jacque’s site. The information there seems a little old and dated. Is the information there still current enough to work? It also looks

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread panagiotis merakos via use-livecode
@Trevor It works as expected for me, just tried Business and Indy in my home laptop. What you describe sounds as a result of corrupted Prefs. Have you tried trashing your existing Prefs? (/Users/your_user_name/Library/Preferences/RunRev/livecode.rev and

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread hlowe via use-livecode
Trevor, Using 8.1.3 (RC 1) under Mac OS 10.12.2, all of my plug-ins are missing. Temporarily deleting preference file(s) did not help. All was well with 8.1.2. Henry -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-Release-8-1-3-RC-1-tp4711784p4711795.html

Re: [ ANN ] Release 8.1.3 RC-1

2017-01-20 Thread Klaus major-k via use-livecode
Hi Panos, > Am 20.01.2017 um 18:26 schrieb panagiotis merakos via use-livecode > : > > Dear list members, > > We are pleased to announce the release of LiveCode 8.1.3 RC 1. > ... > Have fun! > The LiveCode Team LC 8.1.3 RC1 does NOT show the user plugins, only