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
>     Sub Level B 1
>     Sub Level B 2
> Top Level C
>
> On 1/27/2020 10:31 AM, Paul Dupuis via use-livecode wrote:
> > I need a hierarchical tree that looks like:
> >
> > 1 Top Level A
> > 2 Top Level B
> >     1 Sub Level B 1
> >     2 Sub Level B 2
> > 3 Top Level C
> > etc.
> >
> >
> > With the Tree Widget in 9.6dp2, all I can seem to get is:
> >
> > 1 Top Level A
> > 2
> >     1 Sub Level B 1
> >     2 Sub Level B 2
> > 3 Top Level C
> >
> > i.e. is item 2 has sub levels, it can't seem to have a label?!?
> >
> > Am I missing something? Trees generally have labels for each level?
> >
> > ___
> > 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
>
>
> ___
> 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
___
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: multitouch buttons on Android

2020-01-27 Thread scott--- via use-livecode
You can also script things like

on mouseUp
   if the environment is "Development" then
touchEnd 1
   end if
end mouseUp

and put the script for both in touchEnd… or wherever

Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   https://elementarysoftware.com/
email sc...@elementarysoftware.com
booth1-800-615-0867
--

> On Jan 27, 2020, at 1:58 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> I think you get both, touchStart first followed by mouseDown, and touchEnd 
> followed by mouseUp.
> 
> On 1/27/20 3:04 PM, JJS via use-livecode wrote:
>> yes touchStart and touchEnd is what i need.
>> Do you Jacque or anyone else knows if these functions conflict with mouseUp 
>> or mouseDown in the same control on mobile?
>> Op 27-1-2020 om 20:06 schreef JJS via use-livecode:
>>> one button is a drumpad which has multiple functions. if tap it, then you 
>>> hear a sound like a snare or a bassdrum.
>>> 
>>> But when you tap and hold another button then this same drumpad-button 
>>> opens another group from which you can select another color or another 
>>> sound for that same drumpad.
>>> 
>>> Now in the ide this works, saying first i click the option button and then 
>>> the drumpad-btn. (impossible of course with a mouse to do 2 clicks on 2 
>>> buttons)
>>> 
>>> On mobile you have to hold it and then push any drumpad to open a color or 
>>> sound select group, that's the idea.
>>> 
>>> While having several touch points on Android, you can check via the 
>>> developersmode, this seems not to work for buttons.
>>> 
>>> an image with script and a button does not work.
>>> 
>>> 2 images instead of buttons does also not work.
>>> 
>>> So perhaps 2 simultaneous mouseclick(fingertaps) is not possible.
>>> 
>>> Maybe i use the wrong commands, will try some with touchstart and touchend 
>>> instead of mouseDown/mouseUp.
>>> 
>>> 
>>> Regards,
>>> 
>>> Sphere
>>> 
>>> 
>>> 
>>> Op 27-1-2020 om 18:34 schreef J. Landman Gay via use-livecode:
 I've never seen an interface like that on Android. Can you use checkboxes 
 instead? What does the app need to do if two buttons are down?
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software | http://www.hyperactivesw.com
 On January 26, 2020 3:36:51 PM JJS via use-livecode 
  wrote:
 
> Hello,
> 
> 
> can 2 buttons be pressed simultanously on Android?
> 
> Or do i need to change them to an Image?
> 
> 
> Although i use buttons, it seems not to be able to hold one button down
> and press another.
> 
> They are in the same group, and the option only one button is off in the
> group settings
> 
> 
> Thanks for any insight.
> 
> 
> Cheers,
> 
> Sphere
> 
>> 
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> ___
> 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

___
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: multitouch buttons on Android

2020-01-27 Thread J. Landman Gay via use-livecode
I think you get both, touchStart first followed by mouseDown, and 
touchEnd followed by mouseUp.


On 1/27/20 3:04 PM, JJS via use-livecode wrote:

yes touchStart and touchEnd is what i need.

Do you Jacque or anyone else knows if these functions conflict with 
mouseUp or mouseDown in the same control on mobile?



Op 27-1-2020 om 20:06 schreef JJS via use-livecode:
one button is a drumpad which has multiple functions. if tap it, then 
you hear a sound like a snare or a bassdrum.


But when you tap and hold another button then this same drumpad-button 
opens another group from which you can select another color or another 
sound for that same drumpad.


Now in the ide this works, saying first i click the option button and 
then the drumpad-btn. (impossible of course with a mouse to do 2 
clicks on 2 buttons)


On mobile you have to hold it and then push any drumpad to open a 
color or sound select group, that's the idea.


While having several touch points on Android, you can check via the 
developersmode, this seems not to work for buttons.


an image with script and a button does not work.

2 images instead of buttons does also not work.

So perhaps 2 simultaneous mouseclick(fingertaps) is not possible.

Maybe i use the wrong commands, will try some with touchstart and 
touchend instead of mouseDown/mouseUp.



Regards,

Sphere



Op 27-1-2020 om 18:34 schreef J. Landman Gay via use-livecode:
I've never seen an interface like that on Android. Can you use 
checkboxes instead? What does the app need to do if two buttons are 
down?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On January 26, 2020 3:36:51 PM JJS via use-livecode 
 wrote:



Hello,


can 2 buttons be pressed simultanously on Android?

Or do i need to change them to an Image?


Although i use buttons, it seems not to be able to hold one button down
and press another.

They are in the same group, and the option only one button is off in 
the

group settings


Thanks for any insight.


Cheers,

Sphere





--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
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: Admob integration

2020-01-27 Thread JJS via use-livecode
All these mobilead commands which are still in the engine which work(ed) 
with inneractive are deprecated?



Op 18-1-2020 om 17:31 schreef JJS via use-livecode:

Thank you for response Sean.

Hopefully there will be some kind of solution.

I'm going to explore some more sites as i see also on stack overflow 
that more people having similair issue who do not use one of the 
supported IDE's



(don't know why but this message was multiple times not delivered)


Op 16-1-2020 om 01:36 schreef Sean Cole (Pi) via use-livecode:
I created a widget for it a few years back after which Admob changed 
their

whole approach to how to gain access/display the ads. At the time
InfinityLC was not yet completed. By the time it had, I had lost 
interest
-- and most of my clients! (Remember when LC said they would have iOS 
ObjC

ready in just a few months but that ended up being about 2years instead)

The key issue you will come across with trying to bind their API to 
LC via

LC Builder is that their API will be expecting access to XCode (which it
won't get). There is probably some way around it but it won't be easy to
work out as their support will only be interested in helping those
communicating from XCode directly. Perhaps the Android API/SDK would be
easier to work from and perhaps even be usable from iOS too.

Good luck

Sean Cole
*Pi Digital *


On Wed, 15 Jan 2020 at 21:42, JJS via use-livecode <
use-livecode@lists.runrev.com> wrote:

If i knew how to create a library or widget for it i would do it 
too. My

knowledge is to little for it,even after reading and trying out the
examples from Git and the lessons.

For Amazon one can download the sdk jar which perhaps can be loaded and
connected with via LCB for Android

For Google on Android the sdk is not downloadable anymore and goes via
Google play api somewhat

For iOs one can download the sdk from Google or from Ironsource the
mediation sdk  to get perhaps a step further(maybe in swift indeed)

But then what, i would not know how to proceed.

As for Android Studio, Unity, Eclipse i see lots of examples.

If one might have a reasonable app, you could get some extra income to
extend the LC subscription which already would be a good reason for me
at the moment


Op 15-1-2020 om 22:07 schreef Dr. Hawkins via use-livecode:

On Jan 15, 2020, at 1:03 PM, JJS via use-livecode <

use-livecode@lists.runrev.com> wrote:

No one interested in putting ads in mobile apps to get some extra

income?

Oh, I’m interested, but I’ve given up.

I have aa parta program on hold.  I assume I’ll end up just writing it

in swift.

There is *supposedly* a partnership with an interface in the base
distribution.  The vendor for the ads, however, has no interest in 
dealing

with anyone that hasn’t already shipped zillions of copies


—
Richard E. Hawkins, Esq.
The Hawkins Law Firm
3430 E. Flamingo Rd.
Suite 232
Las Vegas, NV  89121
(702) 508-8462

___
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

___
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


___
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


___
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


___
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: multitouch buttons on Android

2020-01-27 Thread JJS via use-livecode

yes touchStart and touchEnd is what i need.

Do you Jacque or anyone else knows if these functions conflict with 
mouseUp or mouseDown in the same control on mobile?



Op 27-1-2020 om 20:06 schreef JJS via use-livecode:
one button is a drumpad which has multiple functions. if tap it, then 
you hear a sound like a snare or a bassdrum.


But when you tap and hold another button then this same drumpad-button 
opens another group from which you can select another color or another 
sound for that same drumpad.


Now in the ide this works, saying first i click the option button and 
then the drumpad-btn. (impossible of course with a mouse to do 2 
clicks on 2 buttons)


On mobile you have to hold it and then push any drumpad to open a 
color or sound select group, that's the idea.


While having several touch points on Android, you can check via the 
developersmode, this seems not to work for buttons.


an image with script and a button does not work.

2 images instead of buttons does also not work.

So perhaps 2 simultaneous mouseclick(fingertaps) is not possible.

Maybe i use the wrong commands, will try some with touchstart and 
touchend instead of mouseDown/mouseUp.



Regards,

Sphere



Op 27-1-2020 om 18:34 schreef J. Landman Gay via use-livecode:
I've never seen an interface like that on Android. Can you use 
checkboxes instead? What does the app need to do if two buttons are 
down?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On January 26, 2020 3:36:51 PM JJS via use-livecode 
 wrote:



Hello,


can 2 buttons be pressed simultanously on Android?

Or do i need to change them to an Image?


Although i use buttons, it seems not to be able to hold one button down
and press another.

They are in the same group, and the option only one button is off in 
the

group settings


Thanks for any insight.


Cheers,

Sphere


___
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





___
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


___
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


___
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: multitouch buttons on Android

2020-01-27 Thread JJS via use-livecode
one button is a drumpad which has multiple functions. if tap it, then 
you hear a sound like a snare or a bassdrum.


But when you tap and hold another button then this same drumpad-button 
opens another group from which you can select another color or another 
sound for that same drumpad.


Now in the ide this works, saying first i click the option button and 
then the drumpad-btn. (impossible of course with a mouse to do 2 clicks 
on 2 buttons)


On mobile you have to hold it and then push any drumpad to open a color 
or sound select group, that's the idea.


While having several touch points on Android, you can check via the 
developersmode, this seems not to work for buttons.


an image with script and a button does not work.

2 images instead of buttons does also not work.

So perhaps 2 simultaneous mouseclick(fingertaps) is not possible.

Maybe i use the wrong commands, will try some with touchstart and 
touchend instead of mouseDown/mouseUp.



Regards,

Sphere



Op 27-1-2020 om 18:34 schreef J. Landman Gay via use-livecode:
I've never seen an interface like that on Android. Can you use 
checkboxes instead? What does the app need to do if two buttons are down?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On January 26, 2020 3:36:51 PM JJS via use-livecode 
 wrote:



Hello,


can 2 buttons be pressed simultanously on Android?

Or do i need to change them to an Image?


Although i use buttons, it seems not to be able to hold one button down
and press another.

They are in the same group, and the option only one button is off in the
group settings


Thanks for any insight.


Cheers,

Sphere


___
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





___
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


___
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: multitouch buttons on Android

2020-01-27 Thread J. Landman Gay via use-livecode
I've never seen an interface like that on Android. Can you use checkboxes 
instead? What does the app need to do if two buttons are down?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On January 26, 2020 3:36:51 PM JJS via use-livecode 
 wrote:



Hello,


can 2 buttons be pressed simultanously on Android?

Or do i need to change them to an Image?


Although i use buttons, it seems not to be able to hold one button down
and press another.

They are in the same group, and the option only one button is off in the
group settings


Thanks for any insight.


Cheers,

Sphere


___
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





___
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: does this PNG have transparency?

2020-01-27 Thread Phil Davis via use-livecode

I like it! Nice job.

Phil


On 1/27/20 8:21 AM, Bob Sneidar via use-livecode wrote:

Voila!

function pngIsTransparent pImageFile
if not (there is a file pImageFile) then return "ERROR: Invalid file path!"
set the filename of the templateImage to pImageFile
put numtochar(0) into tZero
return (tZero is in the alphaData of the templateImage) OR (tZero is in the 
maskData of the templateImage)
end pngIsTransparent

Another one for the masterLibrary

Bob S



On Jan 27, 2020, at 08:16 , Paul Dupuis via use-livecode 
 wrote:

You should be able to use 'the templateImage' (see dictionary), and numToChar 
probably should be numToByte

As in:

on mouseUp
answer file "Pick an image:"
if it is empty then exit to top
set the filename of the templateImage to it

put numToByte(0) into tZero
put (tZero is in the alphaData of the templateImage) OR (tZero is in the 
maskData of the templateImage)
end mouseUp


___
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



--
Phil Davis
503-307-4363


___
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: does this PNG have transparency?

2020-01-27 Thread Bob Sneidar via use-livecode
Voila! 

function pngIsTransparent pImageFile
   if not (there is a file pImageFile) then return "ERROR: Invalid file path!"
   set the filename of the templateImage to pImageFile
   put numtochar(0) into tZero
   return (tZero is in the alphaData of the templateImage) OR (tZero is in the 
maskData of the templateImage)
end pngIsTransparent

Another one for the masterLibrary

Bob S


> On Jan 27, 2020, at 08:16 , Paul Dupuis via use-livecode 
>  wrote:
> 
> You should be able to use 'the templateImage' (see dictionary), and numToChar 
> probably should be numToByte
> 
> As in:
> 
> on mouseUp
>answer file "Pick an image:"
>if it is empty then exit to top
>set the filename of the templateImage to it
> 
>put numToByte(0) into tZero
>put (tZero is in the alphaData of the templateImage) OR (tZero is in the 
> maskData of the templateImage)
> end mouseUp


___
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: does this PNG have transparency?

2020-01-27 Thread Paul Dupuis via use-livecode
You should be able to use 'the templateImage' (see dictionary), and 
numToChar probably should be numToByte


As in:

on mouseUp
answer file "Pick an image:"
if it is empty then exit to top
set the filename of the templateImage to it

put numToByte(0) into tZero
put (tZero is in the alphaData of the templateImage) OR (tZero is in the 
maskData of the templateImage)
end mouseUp




On 1/27/2020 10:53 AM, Bob Sneidar via use-livecode wrote:

Phil,

Is img "my test" an existing image, or does setting the filename of img "my 
test" create the image on the fly? I'm trying to turn this into a function that returns true 
or false.

Bob S



On Jan 24, 2020, at 14:35 , Phil Davis via use-livecode 
 wrote:

Maybe this? It seems to work in my simple testing. Am I missing something?

on mouseUp
 answer file "Pick an image:"
 if it is empty then exit to top
 set the filename of img "my test" to it

 put numtochar(0) into tZero
 put (tZero is in the alphaData of img "my test") OR (tZero is in the maskData of img 
"my test")
end mouseUp

Phil


___
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



___
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


[ANN] This Week in LiveCode 210

2020-01-27 Thread panagiotis merakos via use-livecode
Hi all,

Read about new developments in LiveCode open source and the open source
community in today's edition of the "This Week in LiveCode" newsletter!

Read issue #210 here: http://bit.ly/2GvPbkM

This is a weekly newsletter about LiveCode, focussing on what's been
going on in and around the open source project. New issues will be
released weekly on Mondays. We have a dedicated mailing list that will
deliver each issue directly to you e-mail, so you don't miss any!

If you have anything you'd like mentioned (a project, a discussion
somewhere, an upcoming event) then please get in touch.


-- 
Panagiotis Merakos 
LiveCode Software Developer

Everyone Can Create Apps 
___
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: does this PNG have transparency?

2020-01-27 Thread Bob Sneidar via use-livecode
Phil, 

Is img "my test" an existing image, or does setting the filename of img "my 
test" create the image on the fly? I'm trying to turn this into a function that 
returns true or false. 

Bob S


> On Jan 24, 2020, at 14:35 , Phil Davis via use-livecode 
>  wrote:
> 
> Maybe this? It seems to work in my simple testing. Am I missing something?
> 
> on mouseUp
> answer file "Pick an image:"
> if it is empty then exit to top
> set the filename of img "my test" to it
> 
> put numtochar(0) into tZero
> put (tZero is in the alphaData of img "my test") OR (tZero is in the 
> maskData of img "my test")
> end mouseUp
> 
> Phil


___
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: Tab Button Colors

2020-01-27 Thread Bob Sneidar via use-livecode
What color is the text of the first tab when selected? Mine is green. Card has 
no colors set, neither does the stack. I went through all the owners up to the 
stack. it's not in a group, so it's only the card and stack. Again, not a big 
deal but people have commented on what the significance of the green text is. 
They think it's a visual clue of some kind. :-)

Bob S


> On Jan 24, 2020, at 12:24 , J. Landman Gay via use-livecode 
>  wrote:
> 
> Bob said it was the text that was affected and it's an inherited property. 
> The foreground color is the unselected tab text color, and the background 
> color is the selected tab text color. I set the colors on the card and the 
> text of the tabs appears with those colors.
> 
> The tab backgrounds appear to be set by the OS and on Mac they are blue.


___
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


AW: Tree Widget question...

2020-01-27 Thread Paul Dupuis via use-livecode
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
    Sub Level B 1
    Sub Level B 2
Top Level C

On 1/27/2020 10:31 AM, Paul Dupuis via use-livecode wrote:

I need a hierarchical tree that looks like:

1 Top Level A
2 Top Level B
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C
etc.


With the Tree Widget in 9.6dp2, all I can seem to get is:

1 Top Level A
2
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C

i.e. is item 2 has sub levels, it can't seem to have a label?!?

Am I missing something? Trees generally have labels for each level?

___
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



___
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: Tree Widget question...

2020-01-27 Thread Paul Dupuis via use-livecode
Also, just filed this bug for the Tree Widget: 
https://quality.livecode.com/show_bug.cgi?id=22551
In LC 9.6dp2 under Windows 10 at least, you can not edit the array data 
in the property inspector after entering some and browsing the widget 
and then going back to the inspector to try to edit the tree.



On 1/27/2020 10:31 AM, Paul Dupuis via use-livecode wrote:

I need a hierarchical tree that looks like:

1 Top Level A
2 Top Level B
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C
etc.


With the Tree Widget in 9.6dp2, all I can seem to get is:

1 Top Level A
2
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C

i.e. is item 2 has sub levels, it can't seem to have a label?!?

Am I missing something? Trees generally have labels for each level?

___
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



___
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


Tree Widget question...

2020-01-27 Thread Paul Dupuis via use-livecode

I need a hierarchical tree that looks like:

1 Top Level A
2 Top Level B
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C
etc.


With the Tree Widget in 9.6dp2, all I can seem to get is:

1 Top Level A
2
    1 Sub Level B 1
    2 Sub Level B 2
3 Top Level C

i.e. is item 2 has sub levels, it can't seem to have a label?!?

Am I missing something? Trees generally have labels for each level?

___
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