Re: directory tree -> array

2020-01-22 Thread Brian Milby via use-livecode
Wasn’t talking about the widget but building the underlying array that it would display. Thanks, Brian On Jan 22, 2020, 2:21 PM -0500, Richard Gaskin via use-livecode , wrote: > Where is the tree widget used in the Standalone Builder? > > -- > Richard Gaskin > Fourth World Systems > > Brian Milb

Re: AW: Tree Widget question...

2020-01-27 Thread Brian Milby via use-livecode
That bug will be fixed in DP3.  It is already merged into develop. Thanks, Brian On Jan 27, 2020, 10:46 AM -0500, Paul Dupuis via use-livecode , wrote: > Never mind. Answered my own question. You have to use the Keys, not the > values, to get a true hierarchy. i.e. > > Top Level A > Top Level B >

Re: Diff?

2020-02-01 Thread Brian Milby via use-livecode
I use this in ScriptTracker to get the changes when saving a stack.  I squash them together into a consolidated diff for the stack.  I have not done anything with the patch side though. Thanks, Brian On Feb 1, 2020, 6:02 AM -0500, Niggemann, Bernd via use-livecode , wrote: > Richard, > > Librar

Re: LC Server: shebang breaks tags?

2020-02-07 Thread Brian Milby via use-livecode
Can’t answer regarding the design decision, but here is the pertinent line: One recent feature that was introduced in LiveCode 6.6 was the ability to use hashbangs (#! /path/to/livecode) in LiveCode server scripts instead of script open and close tags (). Of note is the “instead of” statement w

Re: LC9.6dp2 and the property inspector

2020-02-09 Thread Brian Milby via use-livecode
Just need to grab the tree view lcb file and build.  Replace the files in the dist for everything to work properly.  I can link to a zip file if needed with the files.  I use dp2 for everything currently. Thanks, Brian On Feb 9, 2020, 12:22 PM -0500, Mark Wieder via use-livecode , wrote: > On 2

Re: DiffPatch question

2020-02-17 Thread Brian Milby via use-livecode
If you want to efficiently store all changes to a file.  This is what Git does. The other advantage is that user C could also perform an edit to A.  You could apply the AC diff on top of B to get a combined update.  (Also what Git does) Thanks, Brian On Feb 17, 2020, 2:58 PM -0500, Richard Gaski

Re: IMAP Search skipping results

2020-03-23 Thread Brian Milby via use-livecode
Does ‘STATUS INBOX (UNSEEN)’ give the proper count reliably?  (Would actually need to use MESSAGES though to page through the whole inbox, but you could stop paging once all we’re found.) If so, ranges are just specified with a : so you could use the sequence numbers to get the UIDs (1:100 then

Re: addIcon(pName,pSVG,pCodepoint) Where is the icon?

2024-10-17 Thread Brian Milby via use-livecode
In short, yes your will need to add icons each launch of the IDE / app. I was going to suggest looking at SvgIconTool after your first post but realized I only moved entire families of icons and did not use the individual icon function. One way would be to create a family of any custom icons (o

Re: DOM innerHTML equivalent ?

2024-10-17 Thread Brian Milby via use-livecode
If you can use a group there may be something. If you make a shared group you can place it on another card and remove it from the current card. Then to restore you would place it again to the current card. Not sure how speed would be with this if it was even applicable to your situation. Bri

Re: Tree view widget messages not firing?

2024-09-22 Thread Brian Milby via use-livecode
That message is posted when the widget changes the value of the array by adding/deleting a key. It is not posted when the array is set. Formattedheightchanged should fire when the total height of data changed. Easiest way to get it sent is expanding a node. My use of that widget never uses th

Re: addIcon(pName,pSVG,pCodepoint) Where is the icon?

2024-10-17 Thread Brian Milby via use-livecode
store and restore. Brian Milby br...@milby7.com > On Oct 17, 2024, at 9:49 AM, Klaus major-k via use-livecode > wrote: > > Hi Brian, > >> Am 17.10.2024 um 15:41 schrieb Brian Milby via use-livecode >> : >> >> In short, yes your will need to add icons eac

<    5   6   7   8   9   10