DataGrid anomaly?

2018-04-11 Thread Ian McKnight via use-livecode
Hi I have a stack that opens a data stack imports an array, processes it and displays the results in a DataGrid Table - pretty straight forward and simple stuff - and all handlers work as they should. Here is the code in the "Open File" button *on* mouseUp retrieveData augmentDataArray

Re: WordReport Help

2018-04-11 Thread Curry Kenworthy via use-livecode
> How do you keep a data tag from inserting > an extra line after the data tag? BTW, Charles is aware that I can look into this issue if he sends me a test stack and template to examine precisely what's going on with the tag and the data. I may charge a fee if I need to edit templates or user

Re: DataGrid anomaly?

2018-04-11 Thread Bob Sneidar via use-livecode
Also what happens when you step through the code? Bob S > On Apr 11, 2018, at 06:53 , Ian McKnight via use-livecode > wrote: > > createTabbedDataList ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: DataGrid anomaly?

2018-04-11 Thread Ian McKnight via use-livecode
Thanks Bob - that works fine. I had tried referencing group "dgDataDisplay" of this card - but that didn't work. So I need to be more precise in naming the card! My stack is a plain vanilla stack with a few buttons and a dataGrid on one card. When I step through the code the error occurs at line

Re: name resolution stinker

2018-04-11 Thread Mike Bonner via use-livecode
Not sure if this will be userful, but would placing the following script in your stack (or frontscript I guess) work easier? command amIHere pName try dispatch "imHere" to group pName of the current card catch tError return false end try end amIHere command imHere return true end imHere

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Alex Tweedly via use-livecode
I agree these look great, and because I know Digital Pomegranate I can have lots of faith in them - so I will buy them (whenever I next want to do a mobile project). But - I have one (or maybe two) "objections" 1. I don't think items should go on sale on the store with *no* documentation

Re: name resolution stinker

2018-04-11 Thread Bob Sneidar via use-livecode
It probably would help but I am referencing the object in other places, for instance I am getting the tablename of group tGridLongName and that fails as well. As I posted the workaround is to reference it by group of Bob S > On Apr 11, 2018, at 09:51 , Mike Bonner via use-livecode >

Re: DataGrid anomaly?

2018-04-11 Thread Bob Sneidar via use-livecode
First, I'm curious why you are not simpy setting the dgData to an array. But that aside, what is the name of your datagrid? The error is indicating there is no group by that name on the current card. Another thing that can throw you is if the stack is opened modally. Then it's not the topStack,

Re: name resolution stinker

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 09:08 AM, Bob Sneidar via use-livecode wrote: put quote & tDataGrid & quote && "of" && tCurrentCard into tGridLongName because you're using the short name of the group. put "group" && quote & tDataGrid & quote && "of" && tCurrentCard into tGridLongName or put the name of

Re: name resolution stinker

2018-04-11 Thread Bob Sneidar via use-livecode
But the variable tGridLongName resolves to: "dgsites" of card id 1002 of stack "Sites" of stack "/Users/bobsneidar/Documents/Livecode Projects/Forms Generator 8/Forms Generator 8.livecode" I cannot reference group tGridLongName, but I can reference group tGridShortName of Apparently there is

Re: name resolution stinker

2018-04-11 Thread Bob Sneidar via use-livecode
I used DO to evaluate the statement and of course that works, but any reference to group fails to resolve. I worked around this anomaly (which I vaguely recall I've run into before) by using there is a group tDataGrid of tCurrentCard tDatagrid is the short name of the datagrid tCurrentCard

name resolution stinker

2018-04-11 Thread Bob Sneidar via use-livecode
Ok here is a real stinker. put quote & tDataGrid & quote && "of" && tCurrentCard into tGridLongName put (there is a group tGridLongName) into tGroupExists if not tGroupExists then next repeat tGridLongName resolves to: "dgsites" of card id 1002 of stack "Sites" of stack

Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Talluto via use-livecode
Thanks Todd and Digital Pomegranate for the release of your first widget pack. These and the others you have planned are essential for LiveCode and its growing user-base. I just bought the widget pack. These are going to be very useful.

Re: name resolution stinker

2018-04-11 Thread Bob Sneidar via use-livecode
Not to be argumentative, but I cannot express if there is a tGridLongName. That will not compile. Bob S > On Apr 11, 2018, at 10:49 , Mark Wieder via use-livecode > wrote: > > On 04/11/2018 09:55 AM, Bob Sneidar via use-livecode wrote: >> But the variable

Re: WordReport Help

2018-04-11 Thread Phil Davis via use-livecode
While on a walk just now, I was thinking about line endings on Mac vs. Windows - they are different! I think you're right - open your original template in Word for Windows, add your tag, and save & close it. Then it will probably work as you expect. Phil On 4/11/18 10:52 AM, Charles Szasz

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 09:57 AM, Alex Tweedly via use-livecode wrote: But - I have one (or maybe two) "objections" One other quibble: I'm normally reluctant to put down good money on something with a major version of zero. And with no visible upgrade policy or licensing. -- Mark Wieder

Re: WordReport Help

2018-04-11 Thread Bob Sneidar via use-livecode
Yes, no end of problems with this "helpful" thing Word for Mac does. It silently changes line endings, borking any file that expects them to be something OTHER than what the MacOS uses. For instance I cannot export an address book from a Toshiba copier and open it in MacOS, *even if I do not

Re: WordReport Help

2018-04-11 Thread Phil Davis via use-livecode
Hi Charles, On the surface it sounds to me like it might be a text encoding issue. You could do an experiment to find out. Since the textEncode() function isn't available in LC 6.1.3, you would have to use uniEncode() to encode your Word doc content before writing it to disk and handing it

Re: name resolution stinker

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 09:55 AM, Bob Sneidar via use-livecode wrote: But the variable tGridLongName resolves to: "dgsites" of card id 1002 of stack "Sites" of stack "/Users/bobsneidar/Documents/Livecode Projects/Forms Generator 8/Forms Generator 8.livecode" Exactly. It *should* resolve to group

Re: WordReport Help

2018-04-11 Thread Charles Szasz via use-livecode
Hi Phil, Thanks for your input! The data tag was working before this anomaly occurred. The text in the data tag is just regular text. The font is Times New Roman. The text and formatting were not changed in the data tag. I am hoping that someone who uses WordReport can give me insight on

Re: name resolution stinker

2018-04-11 Thread Brian Milby via use-livecode
Typed the following in the message box: put the long id of me into x; put there is an x & cr & x Selected a grouped object on a substack and pressed return. Got true and the long ID. On Wed, Apr 11, 2018 at 2:01 PM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Not to be

align object does not work with groups?

2018-04-11 Thread Klaus major-k via use-livecode
Hi friends, LC 9 on a Mac, selectgroupedcontrols = false Selecting two or more groups and trying to align these two groups e.g. on the left side using the inspector palette, does not work in LC 9. Can someone confirm this? Best Klaus -- Klaus Major http://www.major-k.de kl...@major-k.de

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Bob Sneidar via use-livecode
There's no such thing as "good money". ;-) But I agree, it feels like I am paying for beta software, which always makes me nervous. Bob S > On Apr 11, 2018, at 10:58 , Mark Wieder via use-livecode > wrote: > > One other quibble: > I'm normally reluctant to

Re: name resolution stinker

2018-04-11 Thread dunbarx via use-livecode
Have not tried any of the offerings. But, at least in HC, it was important to isolate all card references with parentheses. Otherwise the engine would concatenate any text following the ostensible card reference and create a mess: blah, blah, blah of (cd id 1002) of stack Not sure if LC is

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Talluto via use-livecode
$49 for the amount of work that went into making these widgets is quite affordable. Yes, these are listed as v .5. They could have labeled them as v 1.0. That leaves everyone the opportunity to find things that need to be fixed or improved and provide feedback. These key features are not coming

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 03:01 PM, Mark Talluto via use-livecode wrote: $49 for the amount of work that went into making these widgets is quite affordable. Yes, these are listed as v .5. They could have labeled them as v 1.0. That leaves everyone the opportunity to find things that need to be fixed or

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 11:06 AM, Bob Sneidar via use-livecode wrote: There's no such thing as "good money". ;-) Good money is the money I used to have. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: align object does not work with groups?

2018-04-11 Thread Roger Guay via use-livecode
> On Apr 11, 2018, at 10:27 AM, Klaus major-k via use-livecode > wrote: > > Hi friends, > > LC 9 on a Mac, selectgroupedcontrols = false > > Selecting two or more groups and trying to align these two groups > e.g. on the left side using the inspector palette,

Re: align object does not work with groups?

2018-04-11 Thread Klaus major-k via use-livecode
Hi Roger, > Am 11.04.2018 um 21:38 schrieb Roger Guay via use-livecode > : >> On Apr 11, 2018, at 10:27 AM, Klaus major-k via use-livecode >> wrote: >> >> Hi friends, >> >> LC 9 on a Mac, selectgroupedcontrols = false >> >>

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 04:56 PM, Alex Tweedly via use-livecode wrote: so I guess I need to go read about installing widget extensions ... LOL. The tl;dr is an .lce file is a zip archive. Rename it to .zip and open it the usual way. Extract the .lcb file from the archive, open it with the Extension

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Alex Tweedly via use-livecode
On 11/04/2018 23:01, Mark Talluto via use-livecode wrote: $49 for the amount of work that went into making these widgets is quite affordable. Yes, these are listed as v .5. They could have labeled them as v 1.0. Well, actually, they did :-) Since I know I'm going to buy them anyway, I went

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Mark Wieder via use-livecode
On 04/11/2018 07:10 PM, Trevor DeVore via use-livecode wrote: Use the Extension Manager which is accessed from the Tools menu. There is "+" button. Click it and select the .lce file. Oh, sure, if you want to skip the fun of going the long way around. I bet you also probably stop looking for

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Trevor DeVore via use-livecode
On Wed, Apr 11, 2018 at 9:55 PM Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > On 04/11/2018 07:10 PM, Trevor DeVore via use-livecode wrote: > > Use the Extension Manager which is accessed from the Tools menu. There is > > "+" button. Click it and select the .lce file. >

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Sannyasin Brahmanathaswami via use-livecode
It not the money, certainly worth it… but it’s that for every widget I have to create a if isMobile() then # use the widget else # development is being on desktop. # then what? End if Maybe I am missing something? Even if developing from mobile on desktop … we need a reasonable

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Trevor DeVore via use-livecode
On Wed, Apr 11, 2018 at 7:47 PM, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > On 04/11/2018 04:56 PM, Alex Tweedly via use-livecode wrote: > >> so I guess I need to go read about installing widget extensions ... >> > > LOL. The tl;dr is > > an .lce file is a zip archive.

Re: Mobile Native Essentials Widget Pack

2018-04-11 Thread Trevor DeVore via use-livecode
On Wed, Apr 11, 2018 at 9:10 PM, Trevor DeVore wrote: > > Unfortunately when I try to test the search widget in the iOS simulator > the widget doesn't render. It just says "SearchText (unlicensed)". > I used the Help menu to Re-license LiveCode and now the widgets