Search found 988 matches
- Thu Dec 10, 2020 6:07 pm
- Forum: LiveCode Builder
- Topic: Android API in lcb
- Replies: 1
- Views: 379
Re: Android API in lcb
You can find some examples in the LiveCode source: The are some Android libraries here: https://github.com/livecode/livecode/tree/develop/extensions/libraries An Android Utilities module here: https://github.com/livecode/livecode/tree/develop/extensions/modules And widgets for Android here: https://...
- Fri Oct 30, 2020 2:16 am
- Forum: LiveCode Builder
- Topic: [LCB FFI] Why can't I bind to these or make this Aggregate Type?
- Replies: 5
- Views: 1296
Re: [LCB FFI] Why can't I bind to these or make this Aggregate Type?
You’re welcome Paul. I’m glad you got the window code working.
- Thu Oct 29, 2020 4:06 am
- Forum: LiveCode Builder
- Topic: [LCB FFI] Why can't I bind to these or make this Aggregate Type?
- Replies: 5
- Views: 1296
Re: [LCB FFI] Why can't I bind to these or make this Aggregate Type?
Here is what I found in some code from some WebKit example code at https://github.com/trevordevore/lc-macos-toolset/blob/master/WebKit/webkit.lcb : public foreign type NSRect binds to "MCAggregateTypeInfo:qqqq" private foreign handler ObjC_WebViewInitWithFrame (in pWebView as ObjcId, in pRect as NSR...
- Fri Sep 11, 2020 7:07 pm
- Forum: LiveCode Builder
- Topic: Piano Widget Progress, Thanks!
- Replies: 6
- Views: 1199
Re: Piano Widget Progress, Thanks!
That is very cool @PaulDaMacMan. Well done!
- Thu Sep 10, 2020 6:29 pm
- Forum: LiveCode Builder
- Topic: What's the best way to force-trigger OnGeometryChanged() in Widget from LCB?
- Replies: 3
- Views: 723
Re: What's the best way to force-trigger OnGeometryChanged() in Widget from LCB?
You're welcome Paul.
- Thu Sep 10, 2020 6:00 pm
- Forum: LiveCode Builder
- Topic: What's the best way to force-trigger OnGeometryChanged() in Widget from LCB?
- Replies: 3
- Views: 723
Re: What's the best way to force-trigger OnGeometryChanged() in Widget from LCB?
@PaulDaMacmac - Is there a reason that OnGeometryChanged() has to fire? Can't you just perform the scaling internally by calling your own function? It sounds like you just need to have an internal handler which is called in OnGeometryChanged() or your property setter handler. I guess you could just ...
- Sat Jul 25, 2020 6:48 am
- Forum: Community Projects
- Topic: App Updater helper for Levure
- Replies: 37
- Views: 17082
Re: App Updater helper for Levure
I just created a new Levure app and added the app_updater helper to it. I successfully packaged the app using `levurePackageApplication "release"` and then checked that it was properly code signed using this command: spctl --assess --verbose --ignore-cache --type execute -v /path/to/Test\ Signing.ap...
- Fri Jul 24, 2020 4:16 pm
- Forum: Community Projects
- Topic: App Updater helper for Levure
- Replies: 37
- Views: 17082
Re: App Updater helper for Levure
@martyknapp - It sounds like you downloaded the latest from master from the levurehelper-app_updater helper rather than the latest release which was 0.6.6. For some reason I had pushed some updates to master which weren't released yet and should have been on a develop branch. I've pushed a version 0...
- Wed May 13, 2020 11:52 pm
- Forum: LiveCode Builder
- Topic: Script Objects and Calling Back the Stack/Engine
- Replies: 6
- Views: 2420
Re: Script Objects and Calling Back the Stack/Engine
What happens if you capture ‘the caller’ rather than evaluating “this stack”? Do your callbacks work as expected?
- Mon May 04, 2020 6:08 pm
- Forum: Community Projects
- Topic: DataView and DataView Tree Updates
- Replies: 1
- Views: 2760
Re: DataView and DataView Tree Updates
FYI - After some further testing around building standalones for a non-Levure app and using it on mobile, I made some changes to the installation instructions. You will find new instructions on the GitHub pages and new version available for download. DataView Repo: https://github.com/trevordevore/le...
- Sat May 02, 2020 6:40 pm
- Forum: Community Projects
- Topic: DataView and DataView Tree Updates
- Replies: 1
- Views: 2760
DataView and DataView Tree Updates
Hi, I've updated the DataView and DataView Tree code in my GitHub repos with a script that will load all of the necessary files for developers who are not using the Levure framework. You will find updated instructions in the README, a link to the latest release, and a link to a demo project showing ...
- Mon Apr 27, 2020 9:25 pm
- Forum: Community Projects
- Topic: Spell Checker library
- Replies: 0
- Views: 1606
Spell Checker library
Hi all, I've uploaded a Spell Checker library to Github. It works on macOS and Windows*. Features: - Uses system spell checker on macOS (NSSpellChecker). - Uses Hunspell for Windows. - Command for flagging misspelled words in a field which uses the LiveCode `flagged` property. - API for implementing...
- Thu Apr 23, 2020 3:25 pm
- Forum: LiveCode Builder
- Topic: Help testing LCB wrapper around Hunspell
- Replies: 3
- Views: 1365
Re: Help testing LCB wrapper around Hunspell
Thanks for testing @AnydP!
Which version of Windows and LC did you test with?
Which version of Windows and LC did you test with?
- Wed Apr 22, 2020 2:30 pm
- Forum: LiveCode Builder
- Topic: Help testing LCB wrapper around Hunspell
- Replies: 3
- Views: 1365
Help testing LCB wrapper around Hunspell
Hi everyone, I've been working on wrapping hunspell in LCB and could use help verifying that it works on Windows systems other than my own. So far I've tested using LiveCode 9.6 dp-4 on Windows 10 and Windows 8. The project currently uses version 1.6.2 for Windows. The last version released is 1.7.0...
- Mon Apr 13, 2020 2:51 pm
- Forum: Version Control
- Topic: How to migrate an application to Levure framework
- Replies: 3
- Views: 4097
Re: How to migrate an application to Levure framework
Hi @mrcoollion, Currently there isn't a guide for migrating an existing project over. But we can use this thread to guide you through the process and then put what we learn up on the wiki. Below is an overview of where you can start with links to relevant wiki pages. Ask for clarification where need...