LC8 release structure

2017-11-28 Thread Alejandro Tejada via use-livecode
Does exists some way to install only the files changed between each version and keep all common files available for each LC version in use? In this way, instead of using 1 Gb for each new Livecode version installed, we could keep a folder with common files and each new LiveCode version would

Re: LC8 release structure

2017-11-28 Thread Monte Goulding via use-livecode
> On 29 Nov 2017, at 1:06 pm, Mark Wieder via use-livecode > wrote: > > Well, yes, I got that from the release notes. > > But I see that one of my bug reports (#9505) is now resolved as being fixed > in LC8.2-dp2. So is it that the 8.2 development channel is

Re: LC8 release structure

2017-11-28 Thread Mark Wieder via use-livecode
On 11/28/2017 04:32 PM, Monte Goulding via use-livecode wrote: The 8.2 release cycle is mainly for IDE features like autocomplete that could potentially be disruptive and need a bit of iteration. Well, yes, I got that from the release notes. But I see that one of my bug reports (#9505) is

Re: LC8 release structure

2017-11-28 Thread Monte Goulding via use-livecode
, but I'm puzzled by the two-pronged approach to LC8. Is > there any reason I should even bother with 8.1.8 now that 8.2 is in the > works? 8.1.8-rc2 is a month newer than 8.2.0-dp2. In that case, is there any > reason to bother with 8.2.0 given that there's a month's worth of bugfixes

LC8 release structure

2017-11-28 Thread Mark Wieder via use-livecode
, but I'm puzzled by the two-pronged approach to LC8. Is there any reason I should even bother with 8.1.8 now that 8.2 is in the works? 8.1.8-rc2 is a month newer than 8.2.0-dp2. In that case, is there any reason to bother with 8.2.0 given that there's a month's worth of bugfixes and improvements

Re: Rich Text Editor features within a LC8/LC9 app?

2017-10-28 Thread Matthias Rebbe via use-livecode
ri, Oct 27, 2017 at 5:19 AM, Matthias Rebbe via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Hi, >> >> i am looking for a way to allow the user to format text or parts of text >> in a Field (Font, Textsize, Color, Alignment and so on). >&g

Re: Rich Text Editor features within a LC8/LC9 app?

2017-10-27 Thread Roger Eller via use-livecode
Fri, Oct 27, 2017 at 5:19 AM, Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > i am looking for a way to allow the user to format text or parts of text > in a Field (Font, Textsize, Color, Alignment and so on). > I know there is FieldTrip from Curr

Rich Text Editor features within a LC8/LC9 app?

2017-10-27 Thread Matthias Rebbe via use-livecode
Hi, i am looking for a way to allow the user to format text or parts of text in a Field (Font, Textsize, Color, Alignment and so on). I know there is FieldTrip from Curry and i´ve used it very often in the past, but Fieldtrip is not working correctly in LC8 and LC9. Does anyone have created

LC8/9 Point tool selected - objects are selectable and show the edit frame but no right click menu

2017-10-23 Thread Matthias Rebbe via use-livecode
Hi from time to time i am experiencing on Mac OS X that although the LC ide is in edit mode and although the selected objects show the “selected” frame, the right click menu does not show up and the mouse pointer still looks like as the ide is in Browse mode. I then have to delete the

Native Scrollers not working correctly in LC8 - Bug 17779

2016-09-15 Thread hlowe
to figure out why my scrollers were no longer working as expected. Henry -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Native-Scrollers-not-working-correctly-in-LC8-Bug-17779-tp4708480.html Sent from the Revolution - User mailing list a

Callbacks in Windows in LC8

2016-09-12 Thread Peter Bogdanoff
sand there is something wrong and it then causes a crash. Otherwise… having callbacks working in native Windows is a huge deal for my multimedia application, Music In the Air, and I’m very grateful to Panos and the LC team for getting it working in LC8! I’m planning to move the app in the future

Re: Performance issues LC8 versus earlier versions.

2016-08-25 Thread Monte Goulding
> On 25 Aug 2016, at 5:49 PM, Alex Tweedly wrote: > > That is wonderful - thanks Monte. > btw - I opened a bug report to keep track of it, and so you'd have somewhere > to hang the change on to - 18254 FYI I have also added the length check to non-binary strings to speed up

Re: Performance issues LC8 versus earlier versions.

2016-08-25 Thread Alex Tweedly
On 25/08/2016 04:23, Monte Goulding wrote: Hi Alex To avoid breaking the behavior of octal to decimal number comparison if they both happen to be in a binary string at the time of comparison I didn’t think it was a good plan to leave that binary comparison check above the number check…

Re: Performance issues LC8 versus earlier versions.

2016-08-24 Thread Monte Goulding
> On 24 Aug 2016, at 9:50 AM, Monte Goulding wrote: > > >> On 24 Aug 2016, at 9:06 AM, Monte Goulding > > wrote: >> >> After reviewing the code path I see that there is an attempt made to parse >> the binary value into a

Re: Performance issues LC8 versus earlier versions.

2016-08-23 Thread Monte Goulding
> On 24 Aug 2016, at 9:06 AM, Monte Goulding wrote: > > After reviewing the code path I see that there is an attempt made to parse > the binary value into a number to try and compare numerically before doing > the binary comparison. It may be we can change the order here

Re: Performance issues LC8 versus earlier versions.

2016-08-23 Thread Monte Goulding
> On 24 Aug 2016, at 8:23 AM, Alex Tweedly wrote: > > On 22/08/2016 15:47, Richard Gaskin wrote: >> Alex Tweedly wrote: >> >> > Would caseSensitive make it faster ? >> >> In theory yes, since it avoids having to run the internal equivalent of >> toLower on each thing being

Re: Performance issues LC8 versus earlier versions.

2016-08-23 Thread Alex Tweedly
but my desire to use the latest of LC8 rather than an obsolete version is probably strong enough to override that, and I'll just be more patient - even though patient is not my natural state :-) ___ use-livecode mailing list use-livecode@lists.runr

Re: Performance issues LC8 versus earlier versions.

2016-08-22 Thread Alex Tweedly
On 22/08/2016 22:40, Ali Lloyd wrote: Is the speed difference still there without the `add 1 to temp` line? Yes. btw - 7.0.5 gives identical timings to 8.1 (probably what you'd expect, but thought I'd throw it in as useful info). -- Alex. ___

Re: Performance issues LC8 versus earlier versions.

2016-08-22 Thread Ali Lloyd
> I would not have thought that caseSensitive should matter, since these > are bytes not characters - or is that being naive of me ? This is correct. > Would caseSensitive make it faster ? No, provided the internal representation remains binary, which will be true provided you are using

Re: Performance issues LC8 versus earlier versions.

2016-08-22 Thread Richard Gaskin
Alex Tweedly wrote: > Would caseSensitive make it faster ? In theory yes, since it avoids having to run the internal equivalent of toLower on each thing being compared. However in some recent experiments involving pattern matching on text I was unable to measure a difference. That

Re: Performance issues LC8 versus earlier versions.

2016-08-22 Thread Alex Tweedly
Hi Monte, here's the script - the actual file could be any 20Mb or so jpg. on mouseUp put URL ("binfile:/Users/alextweedly/Dropbox (Personal)/Pictures/2016/101_0818/IMGP0021.JPG") into tData1 put URL ("binfile:/Users/alextweedly/Dropbox (Personal)/Pictures/2016/101_0818/IMGP0021.JPG")

Re: Performance issues LC8 versus earlier versions.

2016-08-21 Thread Monte Goulding
Hi Alex It is always good to have them in the bug db so when know what people are running into. I know there was a big push during the LC 8 DP phase to try and get performance closer to LC 6. Actually after looking into this I wouldn't mind seeing your benchmark script as I can’t really see

Performance issues LC8 versus earlier versions.

2016-08-21 Thread Alex Tweedly
I just discovered that part of my simple benchmark code I was doing for my photo apps was incorrect. I was being caught out (I think) by the implementation of 'copy-on-write' in LC8. My simple benchmark did (in essence) put URL("binfile:/path/to/verylargefile.jpg") into tData1

[ANN] DatePicker for LiveCode LC8 update

2016-07-22 Thread FlexibleLearning.com
DatePicker for LiveCode A free update has been released that is LC8 compatible. You can download Build 33 from... www.FlexibleLearning.com/datepicker and see the What's New page here... www.flexiblelearning.com/datepicker/versioning/whatsnew.htm Note that DatePicker is not compatible

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-25 Thread Alan
before and after interacting with the drop down > dialogue that seems to confuse the IDE slightly (LC 8.0.1Mac OS X 10.11.5): > > on mouseDoubleUp > beep > end mouseDoubleUp > > note that bvg docu (1 or 2) does not work with the lc8 dictionary anyway, so > running i

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-25 Thread Richard Gaskin
Alan wrote: > Seems to be a problem with BVG Docu. Perhaps someone else can confirm? > > Unfortunately it doesn't complete initialisation on my system and I > also can't use it's prefs so perhaps that contributes to the issue...? In all fairness, Björnke replied off-list noting that BVG Docu

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-25 Thread Alan
com> <use-livecode-requ...@lists.runrev.com> wrote: > Date: Fri, 24 Jun 2016 06:38:33 -0700 > From: Richard Gaskin <ambassa...@fourthworld.com> > To: use-livecode@lists.runrev.com > Subject: Re: Right-Clicks and Double-Clicks don't work in LC8 > Message-ID: <576d37d

[ANN] FieldFormatter for LC8

2016-06-24 Thread FlexibleLearning.com
A free update for the IDE extension "FieldFormatter" has been released. The update includes a fix to accommodate a bug in the LC8 IDE so choosing the Browse tool updates the palette as expected. Click the orange header icon in your FieldFormatter palette to check for updates. Fu

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-24 Thread Richard Gaskin
Alan wrote: > I have the same problem with LC8 so thanks for letting us know. If I > work out which plugin I'll file a bug report. If you find an issue with a third-party plugin please report it to the author. If it's one of mine I may never see it if it's in someone else's bug DB, a

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-24 Thread Alan
I have the same problem with LC8 so thanks for letting us know. If I work out which plugin I'll file a bug report. cheers Alan On 24 Jun 2016, at 7:30 pm, <use-livecode-requ...@lists.runrev.com> <use-livecode-requ...@lists.runrev.com> wrote: > Date: Thu, 23 Jun 2016 12:46:

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-23 Thread Mark Waddingham
On 2016-06-23 18:46, mac...@earthlink.net wrote: Although I’m not sure,of the exact culprit, I solved the issue by removing all plug-ins. I’ll have to find some time one day to go through them all to determine the offender, but in the meantime I can actually use LC8 now! Happy Days :) Ah! Glad

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-23 Thread MacBox
Although I’m not sure,of the exact culprit, I solved the issue by removing all plug-ins. I’ll have to find some time one day to go through them all to determine the offender, but in the meantime I can actually use LC8 now! Happy Days :) > On Jun 23, 2016, at 12:01, mac...@earthlink.net wr

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-23 Thread MacBox
, etc. Additionally holding option-command and double-clicking does not open the script editor All these do work in older versions, and in LC8 under another user account, so it must be something in my account that’s causing the issue. On Jun 23, 2016, at 11:31, mac...@earthlink.net wrote

Re: Right-Clicks and Double-Clicks don't work in LC8

2016-06-23 Thread Mark Waddingham
On 2016-06-23 17:31, mac...@earthlink.net wrote: Double-clicking on a control, and Right-Clicking a control do nothing in LiveCode 8 in my user account (this has been true since the first DP release). Testing on another account does work, so I tried quitting, deleting the Livecode7.rev

Right-Clicks and Double-Clicks don't work in LC8

2016-06-23 Thread MacBox
Double-clicking on a control, and Right-Clicking a control do nothing in LiveCode 8 in my user account (this has been true since the first DP release). Testing on another account does work, so I tried quitting, deleting the Livecode7.rev preference file in my account, and relaunching, but that

Re: SelectedObjectChanged in LC8... Bug?

2016-06-18 Thread FlexibleLearning.com
Now submitted as Bug #17876 Hugh Senior FLCo > Hi Hugh, > > > FlexibleLearning.com wrote > > When the "Browse" tool is selected in the UI, any selected objects are > > deselected and a SelectedObjectChanged message used to be sent. This is > no > >

Re: SelectedObjectChanged in LC8... Bug?

2016-06-16 Thread BNig
Hi Hugh, FlexibleLearning.com wrote > When the "Browse" tool is selected in the UI, any selected objects are > deselected and a SelectedObjectChanged message used to be sent. This is no > longer the case in LC8. > > I have also tried trapping for a NewTool messa

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Graham Samuel
More thanks is due, to Devin and to Richard. Some of the fog of my ignorance is dispersing, I hope and believe. Graham > On 14 Jun 2016, at 21:09, Devin Asay wrote: > > >> On Jun 14, 2016, at 9:52 AM, Richard Gaskin >> wrote: > >>> As you’ll

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Devin Asay
> On Jun 14, 2016, at 9:52 AM, Richard Gaskin > wrote: > > As you’ll see it’s a whole new world of functionality, and so simple > > to access through LiveCode, using GET and POST requests. > > ...and with LC Server also easy to provide. That’s the rest of the

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Devin Asay
> On Jun 14, 2016, at 9:52 AM, Richard Gaskin > wrote: > > > As you’ll see it’s a whole new world of functionality, and so simple > > to access through LiveCode, using GET and PUT requests. That should be GET and POST, of course. Devin Asay Office of Digital

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Richard Gaskin
Graham Samuel wrote: > My query about ‘result’ and ‘value’ wasn’t about arrays as such, > it was about the use of those particular labels in that context > - the answer is (I suppose) that one has to know the spec of the > JSON that is being used in order to know what the JSON output > looks

SelectedObjectChanged in LC8... Bug?

2016-06-14 Thread FlexibleLearning.com
When the "Browse" tool is selected in the UI, any selected objects are deselected and a SelectedObjectChanged message used to be sent. This is no longer the case in LC8. I have also tried trapping for a NewTool message, but this is similarly ignored. Any insights, or is this a bug? H

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Devin Asay
> On Jun 14, 2016, at 7:38 AM, Graham Samuel wrote: > > Thanks Mike, and thanks to everyone else who explained. My query about > ‘result’ and ‘value’ wasn’t about arrays as such, it was about the use of > those particular labels in that context - the answer is (I suppose)

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Graham Samuel
Thanks Mike, and thanks to everyone else who explained. My query about ‘result’ and ‘value’ wasn’t about arrays as such, it was about the use of those particular labels in that context - the answer is (I suppose) that one has to know the spec of the JSON that is being used in order to know

Re: LC8 - Stumbling into JSON

2016-06-14 Thread Mike Kerner
Graham, The syntax you are asking about is array syntax. There are two axes in this particular array. They are called "result" and "value". The "round" is rounding the value to clean up the decimals. JSON is a web data standard. On Mon, Jun 13, 2016 at 7:46 PM, Mark Wieder

Re: LC8 - Stumbling into JSON

2016-06-13 Thread Mark Wieder
Peter W A Wood writes: > Wouldn’t an XML purist come up with the following, making it much more time consuming to process? Yes, I was by no means suggesting doing this in xml. Just a hint as to meaning in case the json format was inscrutable. I think xml is only slightly more

Re: LC8 - Stumbling into JSON

2016-06-13 Thread Peter W A Wood
Mark > On 14 Jun 2016, at 07:19, Mark Wieder wrote: > > And just FYI, for comparison the xml translation of that would be > > > >18.75 >kg/m@2 > > >2 >75 > > > Wouldn’t an XML purist come up with the following, making it much more time

Re: LC8 - Stumbling into JSON

2016-06-13 Thread Mark Wieder
Sannyasin Brahmanathaswami writes: > http://api.clinicalcalculator.org/bmi?height_in_m=1.778_in_kg=68 > > returns a 2 dimensional array, 2 elements, each of which contains 2 elements > > {"result": > {"value":18.75, > "units":"kg/m^2" > }, > "request_fields": >

Re: LC8 - Stumbling into JSON

2016-06-13 Thread Sannyasin Brahmanathaswami
v.com> on behalf of Graham Samuel <livf...@mac.com> Reply-To: How LiveCode <use-livecode@lists.runrev.com> Date: Monday, June 13, 2016 at 12:08 PM To: How LiveCode <use-livecode@lists.runrev.com> Subject: LC8 - Stumbling into JSON Sorry to be a pain, but again in the BMI exa

LC8 - Stumbling into JSON

2016-06-13 Thread Graham Samuel
Sorry to be a pain, but again in the BMI example for LC 8 there is this function: function getBMI pHeight, pWeight put "http://api.clinicalcalculator.org/bmi?; & "height_in_m=" & pHeight & "_in_kg=" & pWeight into tURL put url tURL into tJSON put JsonImport(tJSON) into tArray

Re: Another way of approaching LC8

2016-06-10 Thread Graham Samuel
6. > Hey, I'm retired and this is something I do to amuse myself. > Anyway, I have continued developing this app, adding bits and pieces to it > through all of lc6 and lc7. I would occasionally open it in one of the > lc8dp's to see how things were going but never really moved over to lc8 until > d

Re: Another way of approaching LC8

2016-06-09 Thread James Hale
open it in one of the lc8dp's to see how things were going but never really moved over to lc8 until dp16. This is not because of issues with the engine, more bugs in the IDE that got in my way. Indeed, it took about a dozen DP releases before I could get past the first screen of my app. Anyway, each

Re: Another way of approaching LC8?

2016-06-09 Thread Jim sims
Samuel <livf...@mac.com> wrote: > Having been burnt by the BMI Calculator example, what would listers > suggest as the shortest way to get familiar with LC8 without reading an > enormous amount of text? I would count myself as a pretty experienced > LiveCode programmer, so that’s

Re: Another way of approaching LC8?

2016-06-09 Thread RM
On 9.06.2016 17:33, Richard Gaskin wrote: Graham Samuel wrote: > Having been burnt by the BMI Calculator example, what would listers > suggest as the shortest way to get familiar with LC8 without reading > an enormous amount of text? I would count myself as a pretty > experien

Re: Another way of approaching LC8?

2016-06-09 Thread RM
Graham Samuel wrote: Having been burnt by the BMI Calculator example, what would listers suggest as the shortest way to get familiar with LC8 without reading an enormous amount of text? I would count myself as a pretty experienced LiveCode programmer, so that’s where I’m starting from. Mayb

Re: Another way of approaching LC8?

2016-06-09 Thread Richard Gaskin
Graham Samuel wrote: > Having been burnt by the BMI Calculator example, what would listers > suggest as the shortest way to get familiar with LC8 without reading > an enormous amount of text? I would count myself as a pretty > experienced LiveCode programmer, so that’s where I’m s

Another way of approaching LC8?

2016-06-09 Thread Graham Samuel
Having been burnt by the BMI Calculator example, what would listers suggest as the shortest way to get familiar with LC8 without reading an enormous amount of text? I would count myself as a pretty experienced LiveCode programmer, so that’s where I’m starting from. Maybe I should just take

Re: How to select behavior on another card in LC8

2016-05-26 Thread Richard Gaskin
Sannyasin Brahmanathaswami wrote: > Ali, here's a proposal for one possible UX scenario for setting > behaviors in a "WSIWIG" way... Seems simpler to just have an object picker dialog, ideally with Miller columns for simple navigation. Ali, I have one I wrote for behavior selection a while

Re: How to select behavior on another card in LC8

2016-05-25 Thread Sannyasin Brahmanathaswami
Ali, here's a proposal for one possible UX scenario for setting behaviors in a "WSIWIG" way Adobe solved this already in a similar use case for setting book marks in Acrobat. create book mark (button or control on card 1 in our LC way…) If action is to go to another page, then a "hanging"

Re: How to select behavior on another card in LC8

2016-05-25 Thread Sannyasin Brahmanathaswami
Paul… great! that works. tks is that documented somewhere? Semi-unintuitive.. but I guess is also makes sense… UX decision… build some horrible long cascading menu with all buttons on all cards (as behavior options) or … leave the inspector of open and *then* navigate to your behaviors

Re: How to select behavior on another card in LC8

2016-05-25 Thread Paul Hibbert
Try this: Go to card 2 Open the Project Browser and expand the view for card 1 Right click on the target button of card 1 in the PB and choose ‘Property Inspector’ The PI for the button on card 1 will now allow you to link the behaviour to the button on cards 2 HTH Paul > On May 25, 2016, at

How to select behavior on another card in LC8

2016-05-25 Thread Sannyasin Brahmanathaswami
LC 8 GM scenario: create card "Selections" --> card 1 create card "behaviors" --> card 2 on card 1 create several buttons on card 2 create one button which will server as the behavior for the buttons on card one go to card 1 select a button, click on the behaviors icon in its property

RE: Bad Crash on Windows using LC8

2016-05-23 Thread Ralph DiMola
e a bug report for this. 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 Sannyasin Brahmanathaswami Sent: Monday, May 23, 2016 11:09 AM To: How LiveCode Subjec

Bad Crash on Windows using LC8

2016-05-23 Thread Sannyasin Brahmanathaswami
yesterday I was mentoring a newbie with LC 8 stable on Windows. Via Skype, he shared his screen. and we went throught the process of building a stack, making groups setting them as background, putting scripts into the stack scripts and calling from button etc. He uses MSWord and PowerPoint

Re: Inspector LC8 needs work...

2016-05-12 Thread Sannyasin Brahmanathaswami
shingtools4u.com> wrote: >Hi, > >Am I the only one, or does the new inspector in LC8 needs some optimizing and >bug fixing? >- Select multiple controls to change something for all of them: after a few >controls things are getting ssslllo >- Select left-a

Inspector LC8 needs work...

2016-05-12 Thread tkuypers
Hi, Am I the only one, or does the new inspector in LC8 needs some optimizing and bug fixing? - Select multiple controls to change something for all of them: after a few controls things are getting ssslllo - Select left-aligned fields and center-aligned buttons, while the text-tab

Inspector LC8 needs work...

2016-05-12 Thread tkuyp...@publishingtools4u.com
Hi, Am I the only one, or does the new inspector in LC8 needs some optimizing and bug fixing? - Select multiple controls to change something for all of them: after a few controls things are getting ssslllo - Select left-aligned fields and center-aligned buttons, while the text-tab

Re: LC8 RevErrorDisplay Opens but no script info

2016-05-11 Thread Sannyasin Brahmanathaswami
@ Dr. Hawkins Interesting… I just discovered that what is causing the error is that I have copied some scripts to the stack script that expect to find a property set in each card… but this is a new module and I don’t have the property set.. So if the uOrientation of this card is “Landscape

LC8 RevErrorDisplay Opens but no script info

2016-05-11 Thread Sannyasin Brahmanathaswami
LC 8 seems to still have numerous issues. I had two hard crashes today… didn’t even have that with the last DP. Here is the latest: I just opened a stack that fires the revErrorDisplay window, but it is completely blank. ?? BR ___ use-livecode

Re: LC8 App Interactive Lesson - issues

2016-05-06 Thread Sri
in context: http://runtime-revolution.278305.n4.nabble.com/LC8-App-Interactive-Lesson-issues-tp4704312p4704388.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: LC8 Geometry Manager with DataGrid

2016-05-06 Thread Terence Heaford
Bug 17576 This sort of thing and my previous post about the NavBar are in my opinion getting beyond Bugs. All the best Terry > On 5 May 2016, at 20:36, Kevin Miller wrote: > > Deprecated? Did I miss the memo? > > I

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Mike Kerner
I'm still sooo confused. GM doesn't work in mobile, right? Am I misremembering something? On Thu, May 5, 2016 at 5:35 PM, Bob Sneidar wrote: > I love that word, "deprecated". > > By the way, I'd love to help with the open source project, only I know > nothing

Re: LC8 - is it correct that only one app is created when 32 and 64 bit Mac OS X was selected in the standalone builder?

2016-05-05 Thread Monte Goulding
> On 6 May 2016, at 7:07 AM, Matthias Rebbe > wrote: > > Shouldn´t be 2 versions created? If one file is correct, then why is there a > misleading folder name? It’s a universal build with slices for both architectures. The folder name just hasn’t been

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Bob Sneidar
I love that word, "deprecated". By the way, I'd love to help with the open source project, only I know nothing about coding in C++ or Objective C or Java for that matter. And I may be one that has not been shouting, "Open Source!" I was happy with the old licensing scheme where I paid a yearly

LC8 - is it correct that only one app is created when 32 and 64 bit Mac OS X was selected in the standalone builder?

2016-05-05 Thread Matthias Rebbe
Hi, maybe i am missing something, but i think the following behaviour is not correct. If i select in the standalone settings to build for 32 and 64 bit Mac osX, then only one Mac OSX app is created. Btw, with also Windows selected that Mac OSX app placed into the folder MacOSX X86-32. The

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Mike Kerner
Well, my bad, Kevin, I thought you folks were not going to support it in 8. Maybe that had to do with an issue on mobile. On Thu, May 5, 2016 at 3:47 PM, Roger Eller wrote: > It has always worked fine for me on simple layouts (Desktop only). > However, for mobile

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Roger Eller
It has always worked fine for me on simple layouts (Desktop only). However, for mobile it doesn't really make sense. On Thu, May 5, 2016 at 3:36 PM, Kevin Miller wrote: > Deprecated? Did I miss the memo? > > I does not appear to be working with data grids for me either

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Kevin Miller
Deprecated? Did I miss the memo? I does not appear to be working with data grids for me either though. I would file a bug report. Kind regards, Kevin Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/ LiveCode: Everyone can create apps On 05/05/2016, 19:27, "use-livecode on

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Terence Heaford
I have previously created my own updateGeometry handler but as I had not used LC8 seriously before I thought this would be a good time to start. So far, disappointed. Replaced my own button bar with a NavBar and found it did not work as expected. Thought I would try the Geometry Manager again

Re: LC8 Geometry Manager with DataGrid

2016-05-05 Thread Mike Kerner
I believe the GM has been deprecated, unfortunately. You have to do it manually, or set up substacks with different layouts. If you use tmc, the job is a bit easier. What are you working on, T? On Thu, May 5, 2016 at 2:08 PM, Terence Heaford wrote: > > The Geometry

LC8 Geometry Manager with DataGrid

2016-05-05 Thread Terence Heaford
The Geometry Manager does not work with a DataGrid? Not for me? All the best Terry Heaford ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

LC8 App Interactive Lesson - issues

2016-05-05 Thread Graham Samuel
I’ve kept away from LC8 up to now, fearing stability problems. Now it’s on the world stage, so to speak, I’m making the effort - on a Mac running Yosemite 10.10.5. I started by downloading 8.0.0 and running the interactive tutorial that creates the BMI app. Quite soon however I found that I

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Ralf Bitter
Sorry for coming late. The superfluous "then" keyword in system/libraries/Input.lc -> _rigValid_ipv4() was overlooked because server engine versions prior to 8 were forgiving and didn't complain. The bug is fixed since version 1.7.2. So, all of you who use older versions need to fix this in case

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Dave Kilroy
Yep that’s right, the .htaccess file can go anywhere in the file system so with multiple copies you can have some domains running really old versions of LC Server, others just moderately old and yet others surfing the latest version > Thanks Dave - good suggestion for the htaccess file, this

Re: revIgniter and LC8

2016-05-05 Thread Alex Tweedly
parser in LC8 complained (quite rightly :-) even though earlier version were happy. Many thanks Alex. On 05/05/2016 01:15, Monte Goulding wrote: These errors can be hard to read. You want: row 1114, col 35: script: parsing error (13) file "/home/ua886128/public_html/christineirvine.

Re: [revIgniter] revIgniter and LC8

2016-05-05 Thread Alex Tweedly
on HostM and not seeing the same thing… BTW, on the advice of a HostM technician a while ago I use the following in a .htaccess file in a domain folder to select which version of LC Server is used (I’ve not tried setting it to “lc8” but should think that would work too) - anyway, using

Re: revIgniter and LC8

2016-05-04 Thread Monte Goulding
These errors can be hard to read. You want: > row 1114, col 35: script: parsing error (13) > file > "/home/ua886128/public_html/christineirvine.co.uk/system/libraries/Input.lc” ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: [revIgniter] revIgniter and LC8

2016-05-04 Thread Dave Kilroy
Hi @Alex, I’m also using revIgniter on HostM and not seeing the same thing… BTW, on the advice of a HostM technician a while ago I use the following in a .htaccess file in a domain folder to select which version of LC Server is used (I’ve not tried setting it to “lc8” but should think

revIgniter and LC8

2016-05-04 Thread Alex Tweedly
) the latest released version (i.e. 7.1.4 I think). Today, LC8..0 was released, so hostM have changed their default version to that - and all my revIgniter sites now fail - see traceback info below. hostm do provide a way to choose the version to be used, by using a different extension (i.e

Re: Database errors starting LC8 on Windows [was: Release 8.0.0]

2016-05-04 Thread Roger Eller
No. That would be against our company's security policies. However, I can allow you to have a remote look around via WebEx or TeamViewer. Please reply off-list if you would find this option helpful. ~Roger On Wed, May 4, 2016 at 10:59 AM, Peter TB Brett wrote: > >

Database errors starting LC8 on Windows [was: Release 8.0.0]

2016-05-04 Thread Peter TB Brett
On 04/05/2016 15:53, Roger Eller wrote: Sorry, but I still can not use this for production work. This bug is STILL preventing use in my work environment. [Bug 17374] Database errors appear each time LC 8.0.0 is opened in Win7-x64 in Fusion

Re: LC8 RC1 Dictionary has issues

2016-04-22 Thread J. Landman Gay
On April 22, 2016 11:33:47 AM Devin Asay wrote: I just had a look at the dictionary entry for mobileControlGet on github. It looks like the formatting was munged when the docs were converted from the old xml format to the new markdown format. I’ll try to make some time

Re: LC8 RC1 Dictionary has issues

2016-04-22 Thread Devin Asay
> On Apr 21, 2016, at 11:04 PM, J. Landman Gay wrote: > > On 4/21/2016 9:34 PM, Sannyasin Brahmanathaswami wrote: >> Is there a way to get the old dictionary back? >> >> BG? Is your plug in working under 8? >> >> Current if you search for a term, the page gets stuck

Re: LC8 RC1 Dictionary has issues

2016-04-22 Thread Kay C Lan
the LC6 and LC7 Dictionary. [Oops,I just realised, there is a Preference in pre-LC8; Documentation which gives you the option to choose 'Single Column' or 'Multi-Column'. I've always had mine 'Multi-Column' which appears very similar to the way the LC8 Dictionary is displayed so if you used Single

Re: LC8 RC1 Dictionary has issues

2016-04-21 Thread Monte Goulding
> On 22 Apr 2016, at 3:04 PM, J. Landman Gay wrote: > > On 4/21/2016 9:34 PM, Sannyasin Brahmanathaswami wrote: >> Is there a way to get the old dictionary back? >> >> BG? Is your plug in working under 8? >> >> Current if you search for a term, the page gets stuck

Re: LC8 RC1 Dictionary has issues

2016-04-21 Thread J. Landman Gay
On 4/21/2016 9:34 PM, Sannyasin Brahmanathaswami wrote: Is there a way to get the old dictionary back? BG? Is your plug in working under 8? Current if you search for a term, the page gets stuck on that term.. If you enter a different search term… nothing happens.. You have exit the dictionary

LC8 RC1 Dictionary has issues

2016-04-21 Thread Sannyasin Brahmanathaswami
Is there a way to get the old dictionary back? BG? Is your plug in working under 8? Current if you search for a term, the page gets stuck on that term.. If you enter a different search term… nothing happens.. You have exit the dictionary and come back to search, Am I doing something wrong?

LC8 odd window behavior in IDE on windows

2016-04-06 Thread Tiemo Hollmann TB
Hello, developing on Windows 7 First time I am testing LC 8 a little more as the basics, I am struggling with the behavior of the IDE windows. The code editor window often minimizes to the task bar, especially when debugging. When clicking on the task bar icon it doesn't open again. You

AW: LC8 - Any new restrictions for windows icon?

2016-04-05 Thread Tiemo Hollmann TB
Gesendet: Dienstag, 5. April 2016 12:04 An: How to use LiveCode <use-livecode@lists.runrev.com> Betreff: Re: LC8 - Any new restrictions for windows icon? Hi Tiemo, This is reported under http://quality.livecode.com/show_bug.cgi?id=16689, and it will be fixed in the next LiveCode 8 release. Best r

Re: LC8 - Any new restrictions for windows icon?

2016-04-05 Thread panagiotis merakos
Hi Tiemo, This is reported under http://quality.livecode.com/show_bug.cgi?id=16689, and it will be fixed in the next LiveCode 8 release. Best regards, Panos -- On Tue, Apr 5, 2016 at 8:59 AM, Tiemo Hollmann TB wrote: > Hello, > > I can't assign any custom icon to my

  1   2   3   >