Re: Find WHAAAAAY faster!

2017-11-30 Thread Monte Goulding via use-livecode
> On 1 Dec 2017, at 10:42 am, Bob Sneidar via use-livecode > wrote: > > You must have back ported it because it's in 8.1.8 rc2 Hmm… nope… definitely 8.2 https://github.com/livecode/livecode-ide/pull/1706

Re: Find WHAAAAAY faster!

2017-11-30 Thread Monte Goulding via use-livecode
s in memory regularly. FWIW there was no real magic to the speed up just more efficient object iteration and using an array of objects rather than a big list. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: LC8 release structure

2017-11-28 Thread Monte Goulding via use-livecode
bug fixes > a month ahead of (and instead of) the 8.1.8 channel? Would the 8.2 bugfixes > get backported to 8.1.8? That seems weird. Ah well from the looks of that particular report it was just Panos testing the bug again to see if it was still an issue. Th

Re: IDE breaks down over time

2017-11-28 Thread Monte Goulding via use-livecode
library in LCB. We haven’t had a chance to update the PB to use it yet though. Cheers Monte > On 29 Nov 2017, at 7:19 am, Sannyasin Brahmanathaswami via use-livecode > wrote: > > I am building new UI… not a drop of code.. it's all about drawing controls, > grouping, setting

Re: LC8 release structure

2017-11-28 Thread Monte Goulding via use-livecode
The 8.2 release cycle is mainly for IDE features like autocomplete that could potentially be disruptive and need a bit of iteration. > On 29 Nov 2017, at 10:15 am, Mark Wieder via use-livecode > wrote: > > I'm confused now by the number of unstable releases in flight. > > I'm seeing > LC8.2.0

Re: Creating LC IDE plugin - is it possible to check if plugin was started automatically or from menu?

2017-11-20 Thread Monte Goulding via use-livecode
> On 20 Nov 2017, at 7:21 pm, Matthias Rebbe via use-livecode > wrote: > > So is there a way to check if a plugin was run at startup or if it was > started from the menu? Yes, check if revMenubar is in the executionContexts Cheers Monte

Re: When do you need tsNet-x86_64 ?

2017-11-16 Thread Monte Goulding via use-livecode
distributed with anything other than LiveCode for FM windows 64 bit at the moment. https://github.com/livecode/livecode/pull/6138 <https://github.com/livecode/livecode/pull/6138> Cheers Monte > On 16 Nov 2017, at 9:58 pm, Tiemo Hollmann TB via use-livecode > wrote: > > Hi Cha

Re: Example Stack for MergAV (QR codes)?

2017-11-09 Thread Monte Goulding via use-livecode
> On 10 Nov 2017, at 1:50 pm, Mike Kerner via use-livecode > wrote: > > Monte, > Is that the original mergAV test stack? If not, I still have it. yes Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: Example Stack for MergAV (QR codes)?

2017-11-09 Thread Monte Goulding via use-livecode
pBarcode, pType answer "Barcode found"&cr&pBarcode & cr & "of type " & pType end mergAVCamBarcodeFound on closeCard mergAVCamDelete end closeCard Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: incrementing a decimal...

2017-11-07 Thread Monte Goulding via use-livecode
> On 8 Nov 2017, at 11:45 am, Monte Goulding via use-livecode > wrote: > > Something like: > > put “3.33.007" into tValue > set the itemDelimiter to "." > put format("%s.%03d", item 1 to 2 of tValue, item 3 of tValue + 1) into > tNex

Re: incrementing a decimal...

2017-11-07 Thread Monte Goulding via use-livecode
Something like: put “3.33.007" into tValue set the itemDelimiter to "." put format("%s.%03d", item 1 to 2 of tValue, item 3 of tValue + 1) into tNextValue > On 8 Nov 2017, at 11:22 am, Nicolas Cueto via use-livecode > wrote: > > I'm after an easy way to convert span 3.33.007-3.33.012 into thi

Re: Control properties not included in the Property Inspector

2017-11-06 Thread Monte Goulding via use-livecode
quired etc https://github.com/livecode/livecode-ide/blob/develop/Toolset/resources/supporting_files/property_definitions/propertyInfo.txt <https://github.com/livecode/livecode-ide/blob/develop/Toolset/resources/supporting_files/property_definitions/propertyInfo

Re: Control properties not included in the Property Inspector

2017-11-06 Thread Monte Goulding via use-livecode
value props that aren't needed for automating > property assignment. Hmm.. I must have got lost along the way here. I thought we were discussing properties missing from the PI rather than from the properties property. Cheers Monte ___ use-liv

Re: Control properties not included in the Property Inspector

2017-11-06 Thread Monte Goulding via use-livecode
> On 7 Nov 2017, at 10:27 am, Mark Wieder via use-livecode > wrote: > > Wow. That's unreadable. Yes… it turns out that GitHub will prettify it for us if we change the extension to .tsv and fiddle with the files a bit. https://help.github.com/articles/rendering-csv-and-tsv-data/

Re: Control properties not included in the Property Inspector

2017-11-06 Thread Monte Goulding via use-livecode
roperty_definitions/propertyInfo.txt <https://github.com/livecode/livecode-ide/blob/develop/Toolset/resources/supporting_files/property_definitions/propertyInfo.txt> Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please vi

Re: The coming of SVG

2017-11-05 Thread Monte Goulding via use-livecode
reer will be cut short. I have to think about that. Hmm… I’m not sure if Mark will change his mind on synonyms even given death threats ;-) I like canvas too though. One nice thing is I feel it gives more scope for interactive elements than picture does. Cheers Monte ___

Re: results of SPLIT when keys not unique

2017-11-02 Thread Monte Goulding via use-livecode
> On 3 Nov 2017, at 9:39 am, Monte Goulding wrote: > > It would probably be nice to have some explicit syntax to govern this > behavior so that you could explicitly declare you want clobbering behavior or > first come best dressed. Oh… one might also feasibly want output li

Re: results of SPLIT when keys not unique

2017-11-02 Thread Monte Goulding via use-livecode
A quick test and it looks like split will clobber any new elements with the same key as those previously parsed. The docs state that only one element will be created but are unclear about which element value will be retained. It would probably be nice to have some explicit syntax to govern this

Re: Link to iOS device settings

2017-11-02 Thread Monte Goulding via use-livecode
Based on that SO discussion you should be able to use launch url. It looks like the url scheme changed from `prefs:` to `App-Prefs:` in iOS 10. So you might want to try one then the other. So: launch url “App-Prefs:root=NOTIFICATIONS_ID&path=” if the result is “no association" then launch u

Re: JSON import error

2017-11-02 Thread Monte Goulding via use-livecode
file: will recognise the BOM and decode the text correctly. > On 2 Nov 2017, at 5:36 pm, J. Landman Gay via use-livecode > wrote: > > I sent my message too soon. If I import as "file:" instead of "binfile:" it > mostly works. > > You always figure it out as soon as you post. It's a rule. _

Re: Remote Debugger Frustrations

2017-10-31 Thread Monte Goulding via use-livecode
and therefore any changes to breakpoints won’t go over the wire. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Strange permissions issues calling 'shell' in Windows

2017-10-31 Thread Monte Goulding via use-livecode
be in the scheduled task environment there is something missing that cmd.exe needs. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http:/

Re: Remote Debugger Frustrations

2017-10-31 Thread Monte Goulding via use-livecode
however, the above doesn't always recognise script changes. I think the above is related to #3. Perhaps a misunderstanding about what happens once you edit the local stack scripts during a remote debugger session? Cheers Monte ___ use-livecode

Re: I Hate Full Screen!

2017-10-30 Thread Monte Goulding via use-livecode
nd 8 (at least the engine > code that sets up the window). Yes Apple in their infinite wisdom decided to make the fullscreen widget the default for all windows. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: Socket help needed for API

2017-10-29 Thread Monte Goulding via use-livecode
socket support in LiveCode script. Possibly as part of libURL or a separate library. Cheers Monte > On 29 Oct 2017, at 10:49 pm, Richard Miller via use-livecode > wrote: > > I have been using LC to access an API through conventional means, but that > site has now changed to a so

Re: Call for Speakers 2018

2017-10-26 Thread Monte Goulding via use-livecode
brary uses a store of direct object references in LCB and an integer reference to them so that if the name changes you can keep track of it. https://github.com/livecode/livecode/pull/6050 <https://github.com/livecode/livecode/pull/6050> Cheers Monte

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread Monte Goulding via use-livecode
ol what representations are placed on the clipboard by setting the appropriate array keys or tell users to use the Edit > Paste special > Paste values only menu. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: OAuth2 (LC 9) on mobile?

2017-10-16 Thread Monte Goulding via use-livecode
me stuff for mobile but I actually can’t recall testing said stuff so it’s definitely feasible you are breaking new ground here. It sounds like the browser isn’t redirecting but it needs investigation. Could you open a report with your findings and we will look into it. Cheers Monte ___

Re: Autocompletion of quotes on LC 8.2,0 DP-1

2017-10-11 Thread Monte Goulding via use-livecode
ld be the menubar height is somehow not being taken into account. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: OAuth2 Status?

2017-10-11 Thread Monte Goulding via use-livecode
lt` should have some details of the issue. If you are sure both are empty can you open a report. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pr

Re: Trying to use OAuth2 for Dropbox in 9 DP 9

2017-10-10 Thread Monte Goulding via use-livecode
> On 10 Oct 2017, at 9:53 pm, Ben Rubinstein via use-livecode > wrote: > > The redirect URI I have registered for my app is > http://127.0.0.1:51051 <http://127.0.0.1:51051/> Add a trailing slash http://127.0.0.1:51051/ <http://127.0.0.

Re: OAuth2 Status?

2017-10-09 Thread Monte Goulding via use-livecode
iterally copied the example from the dictionary and > substituted my app’s values. > > Has anyone been able to use it yet? What is the value of `the result` after it fails? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.co

Re: Scrollbar control and auto complete confusion

2017-10-03 Thread Monte Goulding via use-livecode
It is adjusted for the control type (at least the messages are). They are filtered using the associations element in the dictionary. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Character sets in Android, iOS, OS/X, Windows

2017-10-01 Thread Monte Goulding via use-livecode
ing the text during the transfer from one deice to the other? At any point when you write/read the text to/from a file, socket or database you will need to encode/decode it. / should be the same everywhere regardless of encoding so that’s a little odd if you are having issues with that!

Re: Remote debugging - expected behavior

2017-09-28 Thread Monte Goulding via use-livecode
sue here is script only stacks will not retain breakpoints as they are stored in custom properties. I guess this is something that needs some thought in general as the breakpoints should be retained between sessions in the IDE too. Cheers Monte ___ us

Re: Autocomplete toggle?

2017-09-27 Thread Monte Goulding via use-livecode
> On 28 Sep 2017, at 3:32 am, J. Landman Gay via use-livecode > wrote: > > Thanks. I wish it recorded sound, it would be helpful to say "now I'm typing a > D, look 3 words back for the insertion" but that's what I'll probably use. > > @Monte, I w

Re: Autocomplete toggle?

2017-09-26 Thread Monte Goulding via use-livecode
> On 27 Sep 2017, at 3:45 pm, Monte Goulding via use-livecode > wrote: > >> Here's the whole line. I first added the two hyphens at the front, then >> tried to add the trailing hyphenated comment at the end which is where it >> went off the rails: >&g

Re: Autocomplete toggle?

2017-09-26 Thread Monte Goulding via use-livecode
> On 27 Sep 2017, at 3:16 pm, J. Landman Gay via use-livecode > wrote: > > On 9/26/17 8:45 PM, Monte Goulding via use-livecode wrote: >>> On 27 Sep 2017, at 9:12 am, J. Landman Gay via use-livecode >>> wrote: >>> >>> Apologies Monte, I'm

Re: Arrow keys in SE

2017-09-26 Thread Monte Goulding via use-livecode
in the new SE that no longer works. > Anyone else observing that? Ys it has been reported and fixed. The next version will make the autocomplete shortcut cmd+option+right. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Ple

Re: Autocomplete toggle?

2017-09-26 Thread Monte Goulding via use-livecode
> On 27 Sep 2017, at 9:12 am, J. Landman Gay via use-livecode > wrote: > > Apologies Monte, I'm sure autocomplete will be handy at some point, but is > there a command I can issue in the message box to turn it off for a while? We have added a menu Edit > Options >

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-20 Thread Monte Goulding via use-livecode
said was to work on real projects doing real work. ^ is not that. When I’m checking on performance of the SE I use the ide library which is over 12000 lines. I did do the equivalent of what you describe above with that script multiple times on all three desktop platf

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-19 Thread Monte Goulding via use-livecode
and present a warning if someone chooses a font that isn’t monospace as monospace fonts make a big difference. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subs

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-19 Thread Monte Goulding via use-livecode
them then wait for at least RC 1 before downloading and hope that someone else has discovered what you might have discovered. Panos is very good at pre-release testing and does so on all platforms but we do not expect he has full coverage of every scenario. That’s why we have these re

Re:

2017-09-19 Thread Monte Goulding via use-livecode
> On 20 Sep 2017, at 1:24 am, James At The Hale via use-livecode > wrote: > > Will try. > Tomorrow I need to dig up a leaky water pipe so it may not happen 'til > Thursday. Fair enough.. leaky water pipes are definitely top prio

Re: Jumping out of breakpoints and their propensity to multiply LC8.20dp1

2017-09-18 Thread Monte Goulding via use-livecode
I’ll see if I can work out what’s up. If you have a recipe can you post to this bug report: http://quality.livecode.com/show_bug.cgi?id=20421 > On 19 Sep 2017, at 11:14 am, James At The Hale via use-livecode > wrote: > > Just noting the rec

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-18 Thread Monte Goulding via use-livecode
of the selection though and this takes a surprisingly long time for fields with a lot of content. I’ve tweaked things so it does’t need to do that. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-17 Thread Monte Goulding via use-livecode
> On 18 Sep 2017, at 2:20 pm, RunRevPlanet via use-livecode > wrote: > > Monte, > >> Ok, great, I’m definitely reproducing it here > > Nice to know, I will leave it with you. Don’t run off just yet. Can you give me some info on your SE font? Is it monospaced? I

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-17 Thread Monte Goulding via use-livecode
> On 18 Sep 2017, at 1:18 pm, RunRevPlanet via use-livecode > wrote: > > So the problem appears independent of where in the file I am working. Ok, great, I’m definitely reproducing it here Thanks Monte ___ use-livecode mailing list

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-17 Thread Monte Goulding via use-livecode
> On 18 Sep 2017, at 12:14 pm, LiveCode Feeds via use-livecode > wrote: > > move to about line 5000 Is ^ a critical part of the recipe? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-17 Thread Monte Goulding via use-livecode
I have opened this report for you: http://quality.livecode.com/show_bug.cgi?id=20410 <http://quality.livecode.com/show_bug.cgi?id=20410> Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to sub

Re: LiveCode 8.2.0 DP-1 Dropping Keystrokes in IDE

2017-09-17 Thread Monte Goulding via use-livecode
and it’s just worse or is this something completely new for you? - do you feel like it got gradually worse over the 10 minutes to the point of being unusable or do you think it was consistently bad all the way through Cheers Monte > On 18 Sep 2017, at 9:58 am, RunRevPlanet via use-livec

Re: read from file until a line begins with a certain word

2017-09-17 Thread Monte Goulding via use-livecode
esult repeat until tResult is eof read from file tFile until tDelim put the result into tResult -- process the text here end repeat Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsu

Re: Script Editor Autocomplete Optional?

2017-09-14 Thread Monte Goulding via use-livecode
anager, you only define the name:type pair once, the first > time that it is used, in the examples. Other places in the script, you > only list the name. Does the name:type line have to appear first? Can it > appear last? It only looks at the first one Cheers Monte

Re: [ANN] Release 8.2.0 DP-1

2017-09-14 Thread Monte Goulding via use-livecode
> On 15 Sep 2017, at 1:31 am, Mike Kerner via use-livecode > wrote: > > wow. there are lots of autocomplete suggestions on bugzilla, already. Yep I’m going to be a busy boy ;-) Cheers Monte ___ use-livecode mailing list

Re: Script Editor Autocomplete Optional?

2017-09-14 Thread Monte Goulding via use-livecode
st thing on the list is what you want as you can then tab through the placeholders etc. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pr

Re: Script Editor Autocomplete Optional?

2017-09-13 Thread Monte Goulding via use-livecode
While it’s all a little disheartening that some people’s first response to your work is please turn it off I have a PR that lets you do that here: https://github.com/livecode/livecode-ide/pull/1739 > On 14 Sep 2017, at 4:10 pm, Richmond Mathe

Re: [ANN] Release 8.2.0 DP-1

2017-09-13 Thread Monte Goulding via use-livecode
> On 14 Sep 2017, at 2:47 pm, Monte Goulding via use-livecode > wrote: > > For your idea it may be quite simple to add collect all the variants of a > command and give them a priority weighting based on their length (shorter = > higher priority) Actually it was even easi

Re: [ANN] Release 8.2.0 DP-1

2017-09-13 Thread Monte Goulding via use-livecode
d word instead of with the > insertion point inside a nested quote. ["test"| vice "test"|"" where | is > the insertion point]. Similar situation for []. Often it would be easier > to just type the closing character than to reach for the mouse or us

Re: [ANN] Release 8.2.0 DP-1

2017-09-13 Thread Monte Goulding via use-livecode
> On 14 Sep 2017, at 9:31 am, Bob Sneidar via use-livecode > wrote: > > Not to all the devs who worked on it. :-) Hehe… or the people that needed the bug fixes in it ;-) PS it’s highly likely there will also be a 8.1.8 to deal with iOS 11 and Xcode 9. C

Re: new license type

2017-09-13 Thread Monte Goulding via use-livecode
/community-plus-edition/> Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Script Editor Autocomplete Optional?

2017-09-13 Thread Monte Goulding via use-livecode
two slightly different things there. Bracket completion and autocomplete. It sounds like you should report the issues you are having also Richard. Hopefully we can make things a little smarter in the cases that are frustrating you. Cheers Monte ___ us

Re: put after

2017-09-11 Thread Monte Goulding via use-livecode
fail with an execution error I suspect as it’s impossible to do. Can you please report it. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences

Re: Getting saucy

2017-09-10 Thread Monte Goulding via use-livecode
to get the source. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: private command gotcha

2017-09-09 Thread Monte Goulding via use-livecode
essages. Socket callbacks are basically send in 0 when from when the callback needs to be sent. As in they go via pending messages the same as send. So if it’s supported for send then it should work for sockets. Cheers Monte ___ use-livecode mailing list

Re: private command gotcha

2017-09-07 Thread Monte Goulding via use-livecode
in behaviors then we would need something interesting… perhaps we could deal with it by allowing dispatch to me from a behavior to flag that it was sent from a particular behavior use so that’s the script that would allow private handlers… anyway… Mark would kno

Re: private command gotcha

2017-09-07 Thread Monte Goulding via use-livecode
I’m not really sure what happens if you send to `this me`… you probably don’t get the script locals related to `me`… would need some testing I guess. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscri

Re: private command gotcha

2017-09-07 Thread Monte Goulding via use-livecode
dispatch to the same script? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: remote debugging just stopped being available.

2017-09-06 Thread Monte Goulding via use-livecode
o you need to add it manually in the Inclusions pane if you want it there. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://list

Re: remote debugging just stopped being available.

2017-09-06 Thread Monte Goulding via use-livecode
gging session. Apparently it doesn't know the app > didn't include the extension? > > At least it's asking me again. The Test button automatically adds the remote debugger. Cheers Monte ___ use-livecode mailing list use-livecode

Re: windows standalone seems double the file size in every version past 8.14

2017-09-06 Thread Monte Goulding via use-livecode
> On 7 Sep 2017, at 11:54 am, Monte Goulding via use-livecode > wrote: > > What platform? On mac if you build a universal app you will have standalones > twice the size of a single architecture app. Sorry Tom I guess I didn’t read the subject line very well :-(

Re: windows standalone seems double the file size in every version past 8.14

2017-09-06 Thread Monte Goulding via use-livecode
> On 7 Sep 2017, at 6:12 am, Tom Glod via use-livecode > wrote: > > everything seems to be running fine.. BUT the standalone is twice the > size. What platform? On mac if you build a universal app you will have standalones twice the size of a single architecture app.

Re: Something is wrong with 8.1.7 RC1

2017-09-05 Thread Monte Goulding via use-livecode
is horribly wrong with this build. Bob what do you mean by `if not in development mode` here? Do you mean in a standalone? Or when you are using the pointer tool? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: Selections in Text Editor Revisited

2017-09-05 Thread Monte Goulding via use-livecode
at least one incarnation of this issue. It will be in 8.2 dp 1. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
sure what it is at this stage, Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
Hmm…. I actually don’t know which date support library you are referring to. > On 5 Sep 2017, at 12:30 pm, Terry Judd via use-livecode > wrote: > > Ah, ok. Looks like it’s the date support library then. Not sure whether I > actually need this – I just ticked it a while back (I’m using the sele

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
Yes exactly like that. So it’s a matter of trying to work out which of the externals you are using isn’t doing what it’s meant to do. Cheers Monte > On 5 Sep 2017, at 12:11 pm, Terry Judd via use-livecode > wrote: > > Hi Monte - something like this? > > Sep 5 12:0

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
Sep 2017, at 11:52 am, Terry Judd via use-livecode > wrote: > > Thanks Monte - that sounds pretty simple :) > > Problem is that my app loads in the simlulator then immediately quits – this > is on LC 9.0.0 (dp 8) - it works fine in 8.1.6 :( > > The first time I try ‘

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
on but that should be resolved in the latest DPs. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: remote debugging just stopped being available.

2017-09-04 Thread Monte Goulding via use-livecode
perienced. Can you try temporarily disabling any firewalls or web shields and testing. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Text (uni)coding issue

2017-08-27 Thread Monte Goulding via use-livecode
ly as you put it in the db? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Bad Crash on Attempt to Group Radio Buttons

2017-08-27 Thread Monte Goulding via use-livecode
ictionary goes perhaps the search term needs to prioritise if found anywhere in the name of an entry? Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subsc

Re: Bad Crash on Attempt to Group Radio Buttons

2017-08-27 Thread Monte Goulding via use-livecode
ntSelect before to stop selection of a background image that has lots of objects on top. It means you can drag select them and won’t accidentally click-drag and move your background. It’s better than lockLocation because of drag-select. Cheers Monte ___

Re: Bad Crash on Attempt to Group Radio Buttons

2017-08-27 Thread Monte Goulding via use-livecode
think that prop is exposed at all in the new Project Browser and Actually it is but the toolTip is wrong! I’m about to submit a patch for that. > > "worse" the PB allowed me to double click on the list and it *did* select the > object that had "cantSelect" = "t

Re: Search Values of Array in "One Go"

2017-08-26 Thread Monte Goulding via use-livecode
nted that it wouldn’t inhibit the `into` clause. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Search Values of Array in "One Go"

2017-08-26 Thread Monte Goulding via use-livecode
ing the original, as in > > filter lines of tList WHERE item 1 of each >= 1 into someVariable > and > filter elements of tArray where "late fee" is in each into newArray We have that already ;-) Cheers Monte ___ use-livecode mailing

Re: Text (uni)coding issue

2017-08-26 Thread Monte Goulding via use-livecode
erPath("home") & "/public_html/server/apps/iot/logs/" & tFileName) - you need to read the file and decode from the encoding you know it is in: put textDecode(url (“binfile:” & ), “UTF-8”) into tResults Disclaimer: this code has just been

Re: Search Values of Array in "One Go"

2017-08-26 Thread Monte Goulding via use-livecode
> On 27 Aug 2017, at 7:40 am, Phil Davis via use-livecode > wrote: > > Another one I would like: > > filter lines of tList WHERE item 1 of each >= 10 Yes I like that too… a tad more than `by`. It seems to read more natu

Re: Search Values of Array in "One Go"

2017-08-26 Thread Monte Goulding via use-livecode
needs to be `each[tPath]` but I like `by`. Infact I couldn’t recall the syntax I liked for this when posting the email yesterday but now I remember it was `by` as it’s the same as sort. A simpler example is: filter lines of tList by item 1 of ea

Re: webP and webM support in LiveCode

2017-08-25 Thread Monte Goulding via use-livecode
> On 26 Aug 2017, at 5:12 am, Alejandro Tejada via use-livecode > wrote: > > Please, before ruling out completely the opportunity > to include a modern compressed image format > like webP, I don’t think anyone is ruling anything o

Re: Search Values of Array in "One Go"

2017-08-25 Thread Monte Goulding via use-livecode
As a slightly related aside in this conversation I’d still one day like to add `each` to filter: — filter array and retain elements where element[“foo”][“bar”] = “baz" put “foo” into tPath[1] put “bar” into tPath[2] filter elements of tArray by evaluating each[tPath] is “baz” Cheers

Re: webP and webM support in LiveCode

2017-08-24 Thread Monte Goulding via use-livecode
contribution to get it done. Then there’s considerations like whether adding the library to the engine is comparable in size to any savings one might make using the format. Not an issue for a browser that displays many websites but for us it would make the project a net loss. Cheers Monte

Re: Site won't load

2017-08-24 Thread Monte Goulding via use-livecode
Try changing to https because... ATS. > On 25 Aug 2017, at 6:39 am, Dan Friedman via use-livecode > wrote: > > I’m perplexed! What could cause a site to not load in a mobile native > browser? (It fails in the browser widget too). If I load “google.com”, it > loads. If I load “livecode.com

Re: is IMAP or POP3 supported with tsNet?

2017-08-23 Thread Monte Goulding via use-livecode
swer yes. Long answer Charles is going to write some docs or a demo to explain how to do it. Not sure on the ETA of that. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and man

Re: notifications system using "the files"? bad idea?

2017-08-23 Thread Monte Goulding via use-livecode
“127.0.0.1” accept connections on port 0 with message “NewConnection” put it into sPort set the defaultNetworkInterface to empty PS ^ Depends on using LC 9 Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Parent of Target

2017-08-23 Thread Monte Goulding via use-livecode
object deletion etc between using the send command and handling it: send “Foo” to me in 0 start using stack “FooBar" Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and ma

Re: Bad Crash on Attempt to Group Radio Buttons

2017-08-22 Thread Monte Goulding via use-livecode
recipe. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Array literals and script only stack initialization (was Re: Developing first on android)

2017-08-21 Thread Monte Goulding via use-livecode
a bit of work but not too bad. When array export is possible then that’s just a matter of swapping out use of the properties property for array export/import. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Pleas

Re: Array literals and script only stack initialization (was Re: Developing first on android)

2017-08-21 Thread Monte Goulding via use-livecode
> On 22 Aug 2017, at 3:17 am, Mark Waddingham via use-livecode > wrote: > > work stopped on it when we reached a dead end with the dVCS 'stack dir' idea > - based on ideas Monte developed in lcVCS. I can’t recall getting an explanation of what the dead end was but

Re: Sending a message to users that floats above everything

2017-08-21 Thread Monte Goulding via use-livecode
ash… anyway, as Mark said it’s probably best done in LCB now. Cheers Monte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Array literals and script only stack initialization (was Re: Developing first on android)

2017-08-21 Thread Monte Goulding via use-livecode
eel bad snipping discussion of the array literals because… AWESOME!!! but I actually only wanted to comment on `createStack` feelign a bit wrong if we also have `newStack` and the `create stack` command would send `newStack` not `createStack`.. or maybe it would send b

<    1   2   3   4   5   6   7   8   9   10   >