Re: LiveCode + WordPress = Infinite Possibilities

2016-05-17 Thread Dave Kilroy
Thank you Todd that is very generous of you, ability to connect to WordPress (never mind WooCommerce and Gravity) is a BIG DEAL! Kind regards Dave Todd Fabacher wrote > We are happy to be part of the LiveCode community, and do our part to > enhance open source software. But open source is about

AW: Downloading thirdparty products

2016-05-17 Thread Tiemo Hollmann TB
Hi Erik, yes. Heather told me, that they have not finished yet all products in the new account interface. Animation engine is still available in the old interface here: http://livecode.com/account/products/products-old Though it is version 5 and not 6 Tiemo -Ursprüngliche Nachricht- Von

Downloading thirdparty products

2016-05-17 Thread Erik Beugelaar
Hi All, If I login at my LiveCode account and go to Thirdparty Products I see my subscription of AnimationEngine (version 6) but I can not download it. Does anybody have the same experience with other third party products on the website? Kind regards, Erik Sent from solidit __

Re: tree view widget

2016-05-17 Thread Mike Bonner
Each separate key should be in brackets, otherwise ['John","animal",i] becomes 1 key. so... put "Dog,Cat,Horse" into temp repeat with i = 1 to the number of items in temp put item i of temp into tHobby["John"]["Animal"][i] -- creates an entry 3 keys deep end repeat set the arraydata of widget "

Re: tree view widget

2016-05-17 Thread Yves COPPE
Hi, thanks !! It works now fine ! Greetings. > Le 17 mai 2016 à 21:34, Mike Bonner a écrit : > > Each separate key should be in brackets, otherwise ['John","animal",i] > becomes 1 key. > > so... > put "Dog,Cat,Horse" into temp > repeat with i = 1 to the number of items in temp > put it

Re: tree view widget

2016-05-17 Thread J. Landman Gay
The array is malformed. The script should be: on mouseUp put "Dog,Cat,Horse" into temp repeat with i = 1 to the number of items of temp put item i of temp into tHobby["John"]["Animal"][i] end repeat put "Dog,Tortoise" into temp repeat with i = 1 to the number of items of temp pu

Re: tree view widget

2016-05-17 Thread Yves COPPE
Hi, Ok for the error, sorry for my copy of the original script but I get a list of lines with items separated with commas in each line I hoped to see a tree view…. > Le 17 mai 2016 à 21:22, Tore Nilsen a écrit : > > Apart from the wrong chars for quotes around the last values of temp, and the

Re: tree view widget

2016-05-17 Thread Tore Nilsen
Apart from the wrong chars for quotes around the last values of temp, and the lack of a closing quote on the same line, I can see nothing wrong with the script. It works here. Regards Tore Nilsen > 17. mai 2016 kl. 21.12 skrev Yves COPPE : > > Hi, > > here is a sample of script (doesn’t wo

Re: tree view widget

2016-05-17 Thread Yves COPPE
Hi, here is a sample of script (doesn’t work) on mouseUp put "Dog,Cat,Horse" into temp repeat with i = 1 to the number of items of temp put item i of temp into tHobby["John","Animal",i] end repeat put "Dog,Tortoise" into temp repeat with i = 1 to the number of items of temp put item i of

Re: Infinite LiveCode - Message from CEO

2016-05-17 Thread Kevin Miller
Yes absolutely. Thanks. Sent from my iPhone > On 17 May 2016, at 19:08, Jim Byrnes wrote: > >> On 05/13/2016 04:34 PM, stephen barncard wrote: >> On Fri, May 13, 2016 at 12:35 AM, Dave Kilroy >> wrote: >> >>> My regards to all who have pledged or who intend to pledge, no matter how >>> littl

Re: Infinite LiveCode - Message from CEO

2016-05-17 Thread Jim Byrnes
On 05/13/2016 04:34 PM, stephen barncard wrote: On Fri, May 13, 2016 at 12:35 AM, Dave Kilroy wrote: My regards to all who have pledged or who intend to pledge, no matter how little or how much - and I'll see you on the sunny side of the street some day! Kind regards Dave Just pledged. I'

LiveCode + WordPress = Infinite Possibilities

2016-05-17 Thread Todd Fabacher
We are happy to be part of the LiveCode community, and do our part to enhance open source software. But open source is about give and take. So we are offering our comlete WordPress framework if you help contribute to the latest LiveCode campaign and they reach their $40K goal by Friday. If you hav

Re: Infinite LiveCode - Message from CEO

2016-05-17 Thread Kevin Miller
Well if we want a really useful version of this feature that everyone can use, we need to build as many of those examples as possible and do the documentation around them. Lets define what is attainable at the end of the campaign, rather than today. Kind regards, Kevin Kevin Miller ~ ke...@livec

Re: Defaults for groups

2016-05-17 Thread Richard Gaskin
Sannyasin Brahmanathaswami wrote: > OK… let's try this: margins are set to 4 Click and delete the integer > 4, change to 0 > > Close inspector.. huh? Transparent border is still there…. What? > Open inspector… sheesh… The 4 is back … I thought I just deleted it? > Is this IDE broken? It's not s

Interactive Filing System View?

2016-05-17 Thread Peter Reid
I'm sure I'm being stupid and there's an easy way to do this, but can anyone share the script for an interactive view of the filing system, like a list view in the Finder on a Mac say, with rotating triangles and, if possible, open/closed folder symbols. I thought the tree view widget might be

Re: LC 8 is great but

2016-05-17 Thread Alain Vezina
Hi Ralph, You are right and I was wrong. I moved my files to documents folder and it works well. Thanks a lot Alain Vezina Logilangue Le 2016-05-16 à 12:09, Ralph DiMola a écrit : >> Alain wrote: >>> but the HTML page you create must be in engine to be accessible by the > browser. > > No tr

Re: Infinite LiveCode - Message from CEO

2016-05-17 Thread Mike Kerner
The page is misleading, and I think that should be corrected. $76k isn't the target. That is three stretch goals in. $40k is the target. One of these two numbers looks attainable, the other does not, so if one wants to get pledges, maybe one should consider tweaking the page. On Tue, May 17, 2

Re: tree view widget

2016-05-17 Thread Ali Lloyd
That should work, yes! Could you post more than just the one-line snippet? That way me might be able to see what is going wrong. On Mon, May 16, 2016 at 9:23 PM Yves COPPE wrote: > Hi list, > > Let say I have an array two dimensional created in a script > this array has a name : MyContents > >

Re: tree view widget

2016-05-17 Thread Ali Lloyd
me, or indeed we. On Tue, May 17, 2016 at 9:52 AM Ali Lloyd wrote: > That should work, yes! Could you post more than just the one-line snippet? > That way me might be able to see what is going wrong. > > > On Mon, May 16, 2016 at 9:23 PM Yves COPPE wrote: > >> Hi list, >> >> Let say I have an a