Search found 1535 matches

by monte
Fri Mar 04, 2016 12:16 pm
Forum: LiveCode Builder
Topic: my colors
Replies: 4
Views: 4933

Re: my colors

Yay!

Your message contains 4 characters. The minimum number of characters you need to enter is 10.
by monte
Wed Feb 17, 2016 12:02 pm
Forum: MergEXT
Topic: mergExt News
Replies: 3
Views: 6587

mergExt News

Hi LiveCoders and in particular mergExt users! Today I have a rather large announcement to make about mergExt. mergExt Externals are now exclusively licensed to LiveCode Ltd. The intention is for most or all of the externals to be available to LiveCode Indy licensed users. We will aim to have little...
by monte
Wed Feb 17, 2016 2:19 am
Forum: MergEXT
Topic: MergEXT -How to stop scanning using MergBLE
Replies: 6
Views: 8577

Re: MergEXT -How to stop scanning using MergBLE

OK, this is intriguing... I'll look into it
by monte
Mon Feb 15, 2016 2:57 am
Forum: MergEXT
Topic: MergEXT -How to stop scanning using MergBLE
Replies: 6
Views: 8577

Re: MergEXT -How to stop scanning using MergBLE

Hmm... OK... have you checked if it is throwing an error?

Code: Select all

try
  mergBLEStopScanningForPeripherals
catch e
  answer e
end try
by monte
Fri Feb 12, 2016 5:04 am
Forum: MergEXT
Topic: MergEXT -How to stop scanning using MergBLE
Replies: 6
Views: 8577

Re: MergEXT -How to stop scanning using MergBLE

That's a good question... One thing to consider is there are various asynchronous things going on here so the call to stop the scan may happen while there are some mergBLEDidDiscoverPeripheral messages in the pipeline so they may come in after. So one thing to test is if it stops eventually rather t...
by monte
Thu Jan 07, 2016 2:57 am
Forum: LiveCode Builder
Topic: LC8 - Performance difference on Win 7 vs Win 10
Replies: 1
Views: 2955

Re: LC8 - Performance difference on Win 7 vs Win 10

This needs to be posted to the bug database at quality.livecode.com. Posting in the LiveCode Builder forum possibly won't result in the right person seeing it.
by monte
Wed Jan 06, 2016 12:56 am
Forum: LiveCode Builder
Topic: Creating hunspell library?
Replies: 8
Views: 6977

Re: Creating hunspell library?

Ah, yes, sorry, too early in January for me to be thinking straight... By silent in the binding do you mean there's no need to include it in the parameter list because it's all just handled for you? Not sure how common it would be but how would you handle the array size coming from an extra paramete...
by monte
Tue Jan 05, 2016 9:50 pm
Forum: LiveCode Builder
Topic: Creating hunspell library?
Replies: 8
Views: 6977

Re: Creating hunspell library?

Would be neater if we could just add an optional List after the foreign type in the foreign handler declaration and it would automatically pack and unpack for us.

Code: Select all

foreign handler Hunspell_suggest(in pHunspell as Hunhandle, out rSLst as UTF8CString List, in pWord as UTF8CString) returns CInt
by monte
Mon Jan 04, 2016 10:16 pm
Forum: LiveCode Builder
Topic: Creating hunspell library?
Replies: 8
Views: 6977

Re: Creating hunspell library?

I've looked at your struct packing and unpacking in undergrowth and ran away screaming... In the end if we need to do stuff like that it is much simpler just to write an external. Which luckily we already have for hunspell ;-)
by monte
Sun Jan 03, 2016 12:42 am
Forum: LiveCode Builder
Topic: Creating hunspell library?
Replies: 8
Views: 6977

Re: Creating hunspell library?

Hmm... you should be able to wrap the C API in hunspell.h but I'm not sure how we handle char *** for suggestions etc? Perhaps ZStringUTF8Array (List?) would need to be implemented first.
by monte
Wed Dec 09, 2015 4:25 am
Forum: Engine Contributors
Topic: building android
Replies: 10
Views: 14409

Re: building android

@LCFraser thanks for looking in here ;-)

Any ideas on the redefinition of __MCLog?
by monte
Sun Dec 06, 2015 1:33 am
Forum: Using Externals
Topic: New Xcode Externals Templates
Replies: 3
Views: 8413

Re: New Xcode Externals Templates

I've changed the repo name in anticipation of implementing templates for other platforms so the new url is https://github.com/montegoulding/liveco ... -templates
by monte
Sun Dec 06, 2015 12:04 am
Forum: LiveCode Builder
Topic: LCB foreign handlers and iOS threads
Replies: 0
Views: 2657

LCB foreign handlers and iOS threads

The subject says it all.... do we have a plan for calling on a on main v script thread? Maybe add tail to the foreign handler declaration?
by monte
Sun Dec 06, 2015 12:01 am
Forum: Using Externals
Topic: New Xcode Externals Templates
Replies: 3
Views: 8413

Re: New Xcode Externals Templates

I've done some more work on these templates and now have some support for creating Android externals (in C, C++ and Java) and choosing to use either LCIDLC or the old externals.h/c style externals. If anyone is interested to contribute I would like to extend the project to support other platforms. W...
by monte
Tue Dec 01, 2015 11:53 am
Forum: LiveCode Builder
Topic: avoiding releasing foreign types
Replies: 2
Views: 3814

Re: avoiding releasing foreign types

OK, I was thinking it might be possible to add some syntax to the foreign handler definitions to declare ownership or at least whether it should be freed.

Go to advanced search