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: 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

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

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

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

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

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

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

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

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

[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

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

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

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

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 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