Search found 210 matches
- Mon Nov 09, 2020 5:06 pm
- Forum: Databases
- Topic: CouchDB Library
- Replies: 35
- Views: 12450
Re: CouchDB Library
By the way, over the last couple of weeks I've made a number of updates to the library, especially related to improving/optimizing the sync functions
- Mon Nov 09, 2020 5:04 pm
- Forum: Databases
- Topic: CouchDB Library
- Replies: 35
- Views: 12450
Re: CouchDB Library
I will see what I can dig up in terms of a demo app the data will ultimately arrive as an array with the documents you've accessed in terms of populating fields etc... it wouldn't be much different than you would with any data source, which is to say you would need to write out that code e.g.: put t...
- Fri Aug 21, 2020 3:57 pm
- Forum: Databases
- Topic: CouchDB Library
- Replies: 35
- Views: 12450
Re: CouchDB Library
Thanks for posting the link Bernd.
As an FYI - the current version of the library works with versions 2.0+ and 3.0+.
As an FYI - the current version of the library works with versions 2.0+ and 3.0+.
- Thu Jul 16, 2020 10:39 pm
- Forum: LiveCode Builder
- Topic: Scrolling in a widget
- Replies: 1
- Views: 1511
Scrolling in a widget
Can I make my widget scroll?
I have a widget to display text, but sometimes the text will be longer than can be displayed. How can I get it to scroll?
The only widget so far that I have seen that scrolls is the SVG picker, but I haven't been able to dissect it yet.
I have a widget to display text, but sometimes the text will be longer than can be displayed. How can I get it to scroll?
The only widget so far that I have seen that scrolls is the SVG picker, but I haven't been able to dissect it yet.
- Wed Aug 21, 2019 12:27 pm
- Forum: LiveCode Builder
- Topic: Altering "my background paint"
- Replies: 5
- Views: 2791
Re: Altering "my background paint"
I missed Hermann's response...
Well, this means I have a lot of retooling to do...
Well, this means I have a lot of retooling to do...

- Wed Aug 21, 2019 2:47 am
- Forum: LiveCode Builder
- Topic: Altering "my background paint"
- Replies: 5
- Views: 2791
Re: Altering "my background paint"
Hi Bernd,
That's not what I'm trying to do. I already use background/foreground/shadow/top/bottom paints etc... I want to be able to alter them within the widget itself, I also still want to be set them as their current existing properties.
That's not what I'm trying to do. I already use background/foreground/shadow/top/bottom paints etc... I want to be able to alter them within the widget itself, I also still want to be set them as their current existing properties.
- Tue Aug 20, 2019 10:43 pm
- Forum: LiveCode Builder
- Topic: Altering "my background paint"
- Replies: 5
- Views: 2791
Altering "my background paint"
I am trying to change "my background paint" from within my widget. Actually I am trying to change all of the built-in colors/paints because I am trying to create color themes that can be saved and loaded. None of my attempts thus far have worked... Here's a brief rundown of what I've tried, I can us...
- Thu Apr 25, 2019 6:26 pm
- Forum: LiveCode Builder
- Topic: Enhancing the Tree View widget
- Replies: 5
- Views: 4118
Re: Enhancing the Tree View widget
For #3 I was getting at performance on iOS, I found it hard to open and close branches. Again, a big part of that was probably just the small row size made it hard to accurately double press the row I was shooting for. For the purpose of mobile devices, it would be good to have an option to use a si...
- Thu Apr 25, 2019 4:44 pm
- Forum: LiveCode Builder
- Topic: Icon Picker
- Replies: 3
- Views: 2430
Re: Icon Picker
Note: if used as a plugin, I wouldn't want the icons stored in a seperate file. All my SVGs are contained in an LCB library. Is there a built in way to page down if there are more icons in the library then are displayed? I like how the icon Picker scrolls and how it resizes with a few settings. I th...
- Thu Apr 25, 2019 3:58 pm
- Forum: LiveCode Builder
- Topic: Creating widget specific library
- Replies: 0
- Views: 1859
Creating widget specific library
I've made a couple of LCB libraries, however I discovered that they cannot be used by a widget to interact with the canvas. In general, there is a lot of code I reuse in widgets that I would like to not always copy and paste. Let me try and provide a concrete example. On many of my widgets, I have s...
- Thu Apr 25, 2019 3:37 pm
- Forum: LiveCode Builder
- Topic: Enhancing the Tree View widget
- Replies: 5
- Views: 4118
Re: Enhancing the Tree View widget
To be honest, I haven't tried to use the tree widget in an iOS app in a while, so it is possible that it works differently in its current incarnation (I should really test). Some of the below I can do myself, but also there's no point in reinventing the wheel. My main desires for the tree view are: ...
- Wed Apr 24, 2019 3:53 pm
- Forum: LiveCode Builder
- Topic: Enhancing the Tree View widget
- Replies: 5
- Views: 4118
Enhancing the Tree View widget
I seem to remember watching a video, probably from one from one of the conferences, where Elanor went through the tree widget to make it function better on mobile devices. Does anyone remember when that was?
Is that code available somewhere?
Is that code available somewhere?
- Wed Apr 24, 2019 3:51 pm
- Forum: LiveCode Builder
- Topic: Icon Picker
- Replies: 3
- Views: 2430
Icon Picker
I've playing around inside the code for the Icon Picker... what I am trying to do is use it with my own icon libraries. Before I get in too deep, has anyone tried this, and is there something easy I can do?
- Wed Apr 24, 2019 3:43 pm
- Forum: LiveCode Builder
- Topic: Memory exhausted
- Replies: 5
- Views: 3207
Re: Memory exhausted
For the record breaking them up to smaller functions did the trick.
- Wed Apr 10, 2019 3:38 pm
- Forum: LiveCode Builder
- Topic: Memory exhausted
- Replies: 5
- Views: 3207
Re: Memory exhausted
that makes total sense, will give that a try Thanks! @pink: That error is generated by the lc-compile command-line tool which compiles lcb into modules. The error you are getting typically arises if you have a single handler with a very large number of commands in it (it's a limitation of the parser...