Re: Saving Changes in iOS - Solved

2018-01-31 Thread Roger Guay via use-livecode
Thanks to Ralph and Klaus, I’ve succeeded in building my first iOS app that 
saves user data. The following post form Klaus did it.


> Please read up the specialfolderpath() section in the dictionary.
> 
> 1. specialfolderpath("documents”) is the folder inside of the application 
> bundle where we have write permissions!
> It is already there, do NOT try to create it!
> 
> 2. Add your "main" stack via the "Copy files" to your app.
> 
> 3. Then do this when the app (launcher) starts (preopenstack or openstack)
> ...
> ## Stack in users docs folder, where we have write permissions, means where 
> we can SAVE that stack:
> put specialfolderpath("documents") & "/your mainstack here.livecode" into 
> tTargetStack
> 
> ## This is the stack you added via "Copy files":
> put specialfolderpath("resources") & "/your mainstack here.livecode" into 
> tSourceStack
> 
> ## check if the app had already been opened before:
> if there is NOT a file tTargetStack then
>  put url("binfile:" & tSourceStack) into url("binfile:" & tTargetStack)
> end if
> 
> ## Now open that new stack in the users docs folder and save it later without 
> problems:
> go stack tTargetStack
> ...
> 
> And don't forget to add:
> ...
> start using this stack…

This should be a tutorial somewhere.

Thanks again guys. Especially for being patient with me!!

Roger

___
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: Navigator update: better conversion to behaviors, better property editing, better version control, and send to private commands

2018-01-31 Thread Mike Kerner via use-livecode
I love it when someone else solves a problem I've been thinking about
attacking.  I get a lot more gaming in that way :-)

On Wed, Jan 31, 2018 at 5:56 PM, Geoff Canyon via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I updated the 5.1 alpha of Navigator. You can download Navigator 5 here
> . The full
> documentation is here
> ,
> and there is a description in detail of how conversion to script-only stack
> behaviors works here
> .
>
> New features:
>
>  -- Use your own naming convention for script-only stack files. Whatever
> you can do in a line of LC script, you can use to name your stacks.
>  -- A "Restore from Behaviors" command. This will do unhelpful things
> (duplicate
> scripts) for complex, chained behaviors, but I've used it about half a
> dozen times with Navigator to restore and re-export Navigator's code using
> the new naming feature.
>  -- The Custom Properties menu now supports deleting properties and
> property sets.
>  -- The Property Editor now supports custom properties.
>  -- The Property Editor now highlights values that aren't the same for all
> the controls selected.
>  -- The Property Editor now has a popup menu that displays each of the
> values for the property for the selected controls -- these two make finding
> and syncing discrepancies easy.
>  -- The contextual menu for stacks now supports updating all script-only
> stacks from disk, making it unnecessary to quit and restart LiveCode after
> changing branches in source control.
>  -- The Scripts menu now supports sending to private commands and functions
> for testing.
> ___
> 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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


FormattedHeight of a field and its contents

2018-01-31 Thread David Epstein via use-livecode
Is there somewhere an explanation of how a field’s textSize, borderWidth, 
margins, and formattedHeight interact?  

According to the dictionary entry for “formattedHeight”, a field’s 
formattedHeight is calculated “including top and bottom margins”, while the 
formattedHeight of a chunk is calculated “disregarding margins.”

That does not seem consistent with these results for a field whose textSize is 
16 and whose margin is 4:

the formattedHeight of line 1 of fld 1 19
the formattedHeight of line 1 to 2 of fld 1  38
the formattedHeight of fld 1   15  if there’s one 
line of text
the formattedHeight of fld 1   34  if there are two 
lines of text.

Even though there are top and bottom margins of 4, the field’s formattedHeight 
is smaller, rather than larger, than the formattedHeight of its contents.

A perhaps related question:  Why does a field margin of zero clip the visible 
text at the top and left?

Many thanks.

David Epstein
___
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: discrepancy between official device metric and LC stack size

2018-01-31 Thread Ralph DiMola via use-livecode
Nicolas,

Does that device have "old hardware keys" soft buttons on the bottom? On
some devices this is shown if the manifest does not include some key that
says your app no longer needs the "old hardware keys". Android has been
phasing the hardware keys out. Setting this key in the manifests not an
option on the Android standalone setting. Looking at my code I see I use
"the rect of this card" to account for the soft keys but not the keyboard.
To account for the keyboard and soft "old hardware keys":

put 0 into tLeft

put 0 into tTop

put item 3 of the effective working screenrect - item 1 of the effective
working screenrect into tRight

put item 4 of the effective working screenrect - item 2 of the effective
working screenrect into tBottom

This has been working for me on both iOS and Android.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of Nicolas Cueto via use-livecode
Sent: Wednesday, January 31, 2018 6:24 PM
To: How to use LiveCode
Cc: Nicolas Cueto
Subject: discrepancy between official device metric and LC stack size

I test my mobile stacks on a Nexus 5, and, in portrait orientation, many
bottom pixels are offscreen, even though for width and height I follow
exactly the numbers given in dp at the website Device Metrics
 .

Why is it cut off? And how can I avoid this? Is there an LC keyword, like
"effective" or "working", that I should be including if so, how?

Thanks.

--
Nicolas Cueto
___
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: post to cgi, JSON in Headers?

2018-01-31 Thread Bob Sneidar via use-livecode
As a file, or to a SQL database? I successfully store PDFs in a mySQL database 
as large blobs. For PDFs that are not large, a medium BLOB would probably be 
fine. I open the PDF for binary read, then read until EOF. But my PDFs are one 
or at most two page fillable forms. 

Bob S


> On Jan 31, 2018, at 08:25 , Klaus major-k via use-livecode 
>  wrote:
> 
> Hi friends,
> 
> I am scripting a routine to upload a PDF file to a server.
> So far, so good-> libURLMultipartFormData() is my friend.
> 
> but now the developer of the API send me two TOKENs for authentification and 
> said: 
> "...and make sure you're posting the HTTP header data (the tokens) as 
> application/json."
> ???
> Now he is not available for the next hours. :-(
> 
> Anyone knows what he is talking about and how I can add this to my scripts?
> Thanks a lot in advance!
> 
> 
> Best
> 
> Klaus
> --
> Klaus Major


___
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


discrepancy between official device metric and LC stack size

2018-01-31 Thread Nicolas Cueto via use-livecode
I test my mobile stacks on a Nexus 5, and, in portrait orientation, many
bottom pixels are offscreen, even though for width and height I follow
exactly the numbers given in dp at the website Device Metrics
 .

Why is it cut off? And how can I avoid this? Is there an LC keyword, like
"effective" or "working", that I should be including if so, how?

Thanks.

--
Nicolas Cueto
___
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


Navigator update: better conversion to behaviors, better property editing, better version control, and send to private commands

2018-01-31 Thread Geoff Canyon via use-livecode
I updated the 5.1 alpha of Navigator. You can download Navigator 5 here
. The full
documentation is here
,
and there is a description in detail of how conversion to script-only stack
behaviors works here
.

New features:

 -- Use your own naming convention for script-only stack files. Whatever
you can do in a line of LC script, you can use to name your stacks.
 -- A "Restore from Behaviors" command. This will do unhelpful things
(duplicate
scripts) for complex, chained behaviors, but I've used it about half a
dozen times with Navigator to restore and re-export Navigator's code using
the new naming feature.
 -- The Custom Properties menu now supports deleting properties and
property sets.
 -- The Property Editor now supports custom properties.
 -- The Property Editor now highlights values that aren't the same for all
the controls selected.
 -- The Property Editor now has a popup menu that displays each of the
values for the property for the selected controls -- these two make finding
and syncing discrepancies easy.
 -- The contextual menu for stacks now supports updating all script-only
stacks from disk, making it unnecessary to quit and restart LiveCode after
changing branches in source control.
 -- The Scripts menu now supports sending to private commands and functions
for testing.
___
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: making DG2 usable

2018-01-31 Thread zryip theSlug via use-livecode
I don't know, but you can create quickly and easily something similar,
for a test.

1. Create a new datagrid form

2. Populate it with some data, by using the inspector

3. By adding this script in a button, turn the datagrid in edit mode.

set the dgEditMode of grp "datagrid 1" to true

4. You can disable / enable the animation by using the "animate
actions" property:

set the dgProps["animate actions"] of grp "datagrid 1" to false

5. And the property "enable swipe" will give you the possibility to
turn on / off the swipe gesture.

set the dgProps["enable swipe"] of grp "datagrid 1" to false

On Wed, Jan 31, 2018 at 10:32 PM, PystCat via use-livecode
 wrote:
> It was an email announcing some of the new features and it showed a web clip 
> of it in action.  It was WAY cool showing the drag and sort along with the 
> swipe to delete… AND this was on a desktop.
>
>> On Jan 31, 2018, at 4:29 PM, Mike Kerner via use-livecode 
>>  wrote:
>>
>> Was it a file?  I don't remember seeing a file.  I just remember the webex
>> session.
>>
>> On Wed, Jan 31, 2018 at 4:01 PM, PystCat via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>
>>> Is it possible get the demo file the Mothership did in the email that
>>> showed off the new features..?  I would love to see that.
>>>
 On Jan 31, 2018, at 12:07 PM, Richard Gaskin via use-livecode <
>>> use-livecode@lists.runrev.com> wrote:

 Mike Kerner wrote:

>> On 31 Jan 2018, at 2:07 pm, Richard Gaskin wrote:
>>
>> But as for DG2, am I the only one who finds it too wonky to use?
>
> @Richard have you tried Bernd's modTableField as an alternative?  I'm
> deploying it in my second project, and it's pretty darn cool.  And
> fast.

 Indeed it is.  Bernd does great work, and his modTableField is no
>>> exception.

 I used to maintain a similar single-field+header solution before DG1
>>> premiered, but DG generally does what I need so I stopped working so hard.

 The thing with DG2 is that it's nicely designed for mobile use, if only
>>> the performance was as good as its design.  The delete and re-ordering are
>>> well thought out, and in theory will be delightful to use.

 Monte's note that they're working on it is promising, seems worth
>>> waiting for.

 --
 Richard Gaskin
 Fourth World Systems

 ___
 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
>>>
>>
>>
>>
>> --
>> On the first day, God created the heavens and the Earth
>> On the second day, God created the oceans.
>> On the third day, God put the animals on hold for a few hours,
>>   and did a little diving.
>> And God said, "This is good."
>> ___
>> 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



-- 
Zryip TheSlug
http://www.aslugontheroad.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: making DG2 usable

2018-01-31 Thread PystCat via use-livecode
It was an email announcing some of the new features and it showed a web clip of 
it in action.  It was WAY cool showing the drag and sort along with the swipe 
to delete… AND this was on a desktop.

> On Jan 31, 2018, at 4:29 PM, Mike Kerner via use-livecode 
>  wrote:
> 
> Was it a file?  I don't remember seeing a file.  I just remember the webex
> session.
> 
> On Wed, Jan 31, 2018 at 4:01 PM, PystCat via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Is it possible get the demo file the Mothership did in the email that
>> showed off the new features..?  I would love to see that.
>> 
>>> On Jan 31, 2018, at 12:07 PM, Richard Gaskin via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> Mike Kerner wrote:
>>> 
> On 31 Jan 2018, at 2:07 pm, Richard Gaskin wrote:
> 
> But as for DG2, am I the only one who finds it too wonky to use?
 
 @Richard have you tried Bernd's modTableField as an alternative?  I'm
 deploying it in my second project, and it's pretty darn cool.  And
 fast.
>>> 
>>> Indeed it is.  Bernd does great work, and his modTableField is no
>> exception.
>>> 
>>> I used to maintain a similar single-field+header solution before DG1
>> premiered, but DG generally does what I need so I stopped working so hard.
>>> 
>>> The thing with DG2 is that it's nicely designed for mobile use, if only
>> the performance was as good as its design.  The delete and re-ordering are
>> well thought out, and in theory will be delightful to use.
>>> 
>>> Monte's note that they're working on it is promising, seems worth
>> waiting for.
>>> 
>>> --
>>> Richard Gaskin
>>> Fourth World Systems
>>> 
>>> ___
>>> 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
>> 
> 
> 
> 
> -- 
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>   and did a little diving.
> And God said, "This is good."
> ___
> 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: making DG2 usable

2018-01-31 Thread Mike Kerner via use-livecode
Was it a file?  I don't remember seeing a file.  I just remember the webex
session.

On Wed, Jan 31, 2018 at 4:01 PM, PystCat via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Is it possible get the demo file the Mothership did in the email that
> showed off the new features..?  I would love to see that.
>
> > On Jan 31, 2018, at 12:07 PM, Richard Gaskin via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Mike Kerner wrote:
> >
> > > > On 31 Jan 2018, at 2:07 pm, Richard Gaskin wrote:
> > > >
> > > > But as for DG2, am I the only one who finds it too wonky to use?
> > >
> > > @Richard have you tried Bernd's modTableField as an alternative?  I'm
> > > deploying it in my second project, and it's pretty darn cool.  And
> > > fast.
> >
> > Indeed it is.  Bernd does great work, and his modTableField is no
> exception.
> >
> > I used to maintain a similar single-field+header solution before DG1
> premiered, but DG generally does what I need so I stopped working so hard.
> >
> > The thing with DG2 is that it's nicely designed for mobile use, if only
> the performance was as good as its design.  The delete and re-ordering are
> well thought out, and in theory will be delightful to use.
> >
> > Monte's note that they're working on it is promising, seems worth
> waiting for.
> >
> > --
> > Richard Gaskin
> > Fourth World Systems
> >
> > ___
> > 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
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: making DG2 usable

2018-01-31 Thread PystCat via use-livecode
Is it possible get the demo file the Mothership did in the email that showed 
off the new features..?  I would love to see that.

> On Jan 31, 2018, at 12:07 PM, Richard Gaskin via use-livecode 
>  wrote:
> 
> Mike Kerner wrote:
> 
> > > On 31 Jan 2018, at 2:07 pm, Richard Gaskin wrote:
> > >
> > > But as for DG2, am I the only one who finds it too wonky to use?
> >
> > @Richard have you tried Bernd's modTableField as an alternative?  I'm
> > deploying it in my second project, and it's pretty darn cool.  And
> > fast.
> 
> Indeed it is.  Bernd does great work, and his modTableField is no exception.
> 
> I used to maintain a similar single-field+header solution before DG1 
> premiered, but DG generally does what I need so I stopped working so hard.
> 
> The thing with DG2 is that it's nicely designed for mobile use, if only the 
> performance was as good as its design.  The delete and re-ordering are well 
> thought out, and in theory will be delightful to use.
> 
> Monte's note that they're working on it is promising, seems worth waiting for.
> 
> -- 
> Richard Gaskin
> Fourth World Systems
> 
> ___
> 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: DataGrid Horizontal Scrollbar

2018-01-31 Thread Terence Heaford via use-livecode

> On 31 Jan 2018, at 15:46, Tom Glod via use-livecode 
>  wrote:
> 
> i just thought you needed the ability to scroll the header while there is
> no data in the grid.. so it doesn't defeat the purpose just over-rides
> it .maybe i mis-understood what you wanted



I just thought the correct way for this to work (auto with the horizontal 
scrollbar) should depend
on the width of the header rather than whether the table contains data and the 
width of the header.


Thanks

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


closestackrequest in iOS Simulator

2018-01-31 Thread Klaus major-k via use-livecode
Hi friends,

Xcode 9.2, LC 9 dp11 and LC 8.1.9 RC2

Out of a sudden, "closestackrequest" and "closestack" 
do not seem to get sent to the stack in the simulator anymore?

I created a new empty stack with only this stackscript:
---
on closestackrequest
answer "closestack REQUEST!"
pass closestackrequest
end closestackrequest

on closestack
answer "closestack"
end closestack
-
I see both dialogs when I close the stack in the IDE, but in the simulator
(iPhone 5s - 11.2) I do not see any dialog when pressing the "Home" button?

What gives? Thanks for any hint.


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
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: making DG2 usable

2018-01-31 Thread Richard Gaskin via use-livecode

Mike Kerner wrote:

> > On 31 Jan 2018, at 2:07 pm, Richard Gaskin wrote:
> >
> > But as for DG2, am I the only one who finds it too wonky to use?
>
> @Richard have you tried Bernd's modTableField as an alternative?  I'm
> deploying it in my second project, and it's pretty darn cool.  And
> fast.

Indeed it is.  Bernd does great work, and his modTableField is no exception.

I used to maintain a similar single-field+header solution before DG1 
premiered, but DG generally does what I need so I stopped working so hard.


The thing with DG2 is that it's nicely designed for mobile use, if only 
the performance was as good as its design.  The delete and re-ordering 
are well thought out, and in theory will be delightful to use.


Monte's note that they're working on it is promising, seems worth 
waiting for.


--
 Richard Gaskin
 Fourth World Systems

___
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


post to cgi, JSON in Headers?

2018-01-31 Thread Klaus major-k via use-livecode
Hi friends,

I am scripting a routine to upload a PDF file to a server.
So far, so good-> libURLMultipartFormData() is my friend.

but now the developer of the API send me two TOKENs for authentification and 
said: 
"...and make sure you're posting the HTTP header data (the tokens) as 
application/json."
???
Now he is not available for the next hours. :-(

Anyone knows what he is talking about and how I can add this to my scripts?
Thanks a lot in advance!


Best

Klaus
--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
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: making DG2 usable

2018-01-31 Thread Mike Kerner via use-livecode
@Richard have you tried Bernd's modTableField as an alternative?  I'm
deploying it in my second project, and it's pretty darn cool.  And fast.

On Tue, Jan 30, 2018 at 10:18 PM, Mike Kerner 
wrote:

> So is that an RC1 thing or a 9.1 thing?
>
> On Tue, Jan 30, 2018 at 10:13 PM, Monte Goulding via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
>>
>>
>> > On 31 Jan 2018, at 2:07 pm, Richard Gaskin via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>> >
>> > Good to hear about anything that improves overall rendering performance.
>> >
>> > But as for DG2, am I the only one who finds it too wonky to use?
>>
>> DG2 is a multi-part project and there’s still some work to be done on the
>> accelerated rendering required so the nested groups in the datagrid are
>> able to use a scrolling layer mode.
>>
>> Cheers
>>
>> Monte
>> ___
>> 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
>>
>
>
>
> --
> On the first day, God created the heavens and the Earth
> On the second day, God created the oceans.
> On the third day, God put the animals on hold for a few hours,
>and did a little diving.
> And God said, "This is good."
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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: DataGrid Horizontal Scrollbar

2018-01-31 Thread Tom Glod via use-livecode
i just thought you needed the ability to scroll the header while there is
no data in the grid.. so it doesn't defeat the purpose just over-rides
it .maybe i mis-understood what you wanted

On Wed, Jan 31, 2018 at 3:18 AM, Terence Heaford via use-livecode <
use-livecode@lists.runrev.com> wrote:

>
> > On 29 Jan 2018, at 19:29, Tom Glod via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > set the disabled of the scrollbar to false once you find the name of it.
>
>
> Yes, that’s certainly possible but surely defeats the point of the auto
> setting.
>
>
> All the best
>
> Terry
> ___
> 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: DataGrid Horizontal Scrollbar

2018-01-31 Thread Terence Heaford via use-livecode

> On 29 Jan 2018, at 19:29, Tom Glod via use-livecode 
>  wrote:
> 
> set the disabled of the scrollbar to false once you find the name of it.


Yes, that’s certainly possible but surely defeats the point of the auto setting.


All the best

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