New Books/Dictionary

2017-11-25 Thread Alejandro Tejada via use-livecode
Greg Miller wrote:
> Will it be possible to buy electronic versions of
> the new dictionary and lessons book?

Ideally, in a near future, lessons and dictionary would be available as
interactive stacks or downloadable apps. Until then, here is a LiveCode 4.6
PDF dictionary, uploaded by et_phone_home:

http://www.mediafire.com/file/eteillibdzzcbxc/Livecode++Dictionnaire.pdf

I found this pdf dictionary in a forum thread:
http://forums.livecode.com/viewtopic.php?t=8430

and Ken Ray's 2.1.2 online Rev documentation for Rev 2.1.2 in PDF, RTF and
TXT format:

http://www.sonsothunder.com/devres/livecode/downloads.htm

By the way, RunRev 2.8.1 dictionary, printed in color coded paper, still
have a place in my work desk, along Dan Shafer's first RunRev book.

Al
___
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: sync LC applications

2017-11-25 Thread Mike Kerner via use-livecode
@paolo, I don't do push on android, so I can't tell you much about it.  I'm
doing it on ios.  John Craig wrote a stack a long time ago that I have
tweaked for the purpose.  Somewhere I also have a push server started, but
it isn't ready for the rest of the universe (like most things that I work
on).

On Sat, Nov 25, 2017 at 7:54 PM, Mike Kerner 
wrote:

> That would be a good thing for the community to maintain, I think, too.
>
> On Sat, Nov 25, 2017 at 3:00 PM, Jim Lambert via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
>> > Paolo wrote:
>> >
>> > I went through this tutorial about push notifications
>> > ...
>> > According to some comments, this technique is is out of date now,
>> because  C2DM has been officially deprecated as of June 26, 2012.
>>
>> Wouldn’t it be nice if the lessons and any other coding examples posted
>> by the Mothership contained a prominent field stating the current viability
>> of that lesson. Also the lesson’s compatibility/incompatibility with
>> various LC versions.
>>
>> Perhaps several fields, something akin to the dictionary’s Edition,
>> Introduced, OS & Platforms fields.
>>
>> And if a technique has been deprecated a link to the current alternative
>> technique, if any.
>>
>> Ditto for extensions & widgets.
>>
>> Jim Lambert
>>
>> ___
>> 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: sync LC applications

2017-11-25 Thread Mike Kerner via use-livecode
That would be a good thing for the community to maintain, I think, too.

On Sat, Nov 25, 2017 at 3:00 PM, Jim Lambert via use-livecode <
use-livecode@lists.runrev.com> wrote:

> > Paolo wrote:
> >
> > I went through this tutorial about push notifications
> > ...
> > According to some comments, this technique is is out of date now,
> because  C2DM has been officially deprecated as of June 26, 2012.
>
> Wouldn’t it be nice if the lessons and any other coding examples posted by
> the Mothership contained a prominent field stating the current viability of
> that lesson. Also the lesson’s compatibility/incompatibility with various
> LC versions.
>
> Perhaps several fields, something akin to the dictionary’s Edition,
> Introduced, OS & Platforms fields.
>
> And if a technique has been deprecated a link to the current alternative
> technique, if any.
>
> Ditto for extensions & widgets.
>
> Jim Lambert
>
> ___
> 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: Printing A Browser

2017-11-25 Thread hlowe via use-livecode
I also use HTML to create and display complex tables with LC (in iOS) and
have been looking for a way to (a) save the tables as PDF files and then
print the tables (as a PDF).  There is a library for creating PDF files from
HTML created by Brent Nycum called BNHtmlPdfKit:

https://github.com/brentnycum/BNHtmlPdfKit

BNHtmlPdfKit can easily create a PDF file from an HTML string or URL. It is
also possible to specify different page sizes, and margin sizes.

This might make a great extension for LC.

Henry 

Ascriva Health Informatics 
https://www.ascriva.com




--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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


Printing A Browser

2017-11-25 Thread Dan Friedman via use-livecode
Greetings!

I have a some rather involved tables to create and print.  The best way I can 
think to do this is in html as a browser will scale columns and rows for me.

Now, I know you can’t print a browser widget (which is really too bad), but you 
can print a browser object.  However, I can’t find any information about 
printing properties (like printMargins or orientation for example).

Am I missing something?  Or is printing from a LiveCode browser a “you get what 
you get (and just be happy you got what you got)” kind of thing?

Thank you in advance,
-Dan

___
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: sync LC applications

2017-11-25 Thread Jim Lambert via use-livecode
> Paolo wrote:
> 
> I went through this tutorial about push notifications
> ...
> According to some comments, this technique is is out of date now, because  
> C2DM has been officially deprecated as of June 26, 2012.

Wouldn’t it be nice if the lessons and any other coding examples posted by the 
Mothership contained a prominent field stating the current viability of that 
lesson. Also the lesson’s compatibility/incompatibility with various LC 
versions. 

Perhaps several fields, something akin to the dictionary’s Edition, Introduced, 
OS & Platforms fields.

And if a technique has been deprecated a link to the current alternative 
technique, if any.

Ditto for extensions & widgets.

Jim Lambert

___
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: New Books/Dictionary

2017-11-25 Thread Richmond Mathewson via use-livecode
Dunno about that: I use the LiveCode dictionary that I got through the 
Android store for nix

on my cheap-N-nasty Android tablet :)

Richmond.

On 25/11/17 7:34 pm, Pi Digital via use-livecode wrote:

Coz it sucks at searching for one thing! For another, it’s nice to have it on a 
device to the side of you rather than swapping on the pc desktop.

Greg, I’m making a little app for it that will be made freely available as soon 
as possible. If it works really well I’m going to make it a stack for inclusion 
with LC as the current one is tiresome.
#therehastobeabetterway

Sean Cole
Pi Digital


On 25 Nov 2017, at 16:19, Richmond Mathewson via use-livecode 
 wrote:

Why would anyone want to buy an electronic version of the new dictionary
when it comes rolled into every version of Livecode?

Richmond.


On 25/11/17 5:24 pm, pink via use-livecode wrote:
Will it be possible to buy electronic versions of the new dictionary and
lessons book?



-
---
Greg (pink) Miller
mad, pink and dangerous to code
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: New Books/Dictionary

2017-11-25 Thread Brian Milby via use-livecode
Are you just talking about the lack of full text search?

The dictionary seems to work ok on my iPad (served from my server).  CSS
and HTML need more tweaks to work well on a phone sized device.

On Sat, Nov 25, 2017 at 11:34 AM Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Coz it sucks at searching for one thing! For another, it’s nice to have it
> on a device to the side of you rather than swapping on the pc desktop.
>
> Greg, I’m making a little app for it that will be made freely available as
> soon as possible. If it works really well I’m going to make it a stack for
> inclusion with LC as the current one is tiresome.
> #therehastobeabetterway
>
> Sean Cole
> Pi Digital
>
> > On 25 Nov 2017, at 16:19, Richmond Mathewson via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Why would anyone want to buy an electronic version of the new dictionary
> > when it comes rolled into every version of Livecode?
> >
> > Richmond.
> >
> >> On 25/11/17 5:24 pm, pink via use-livecode wrote:
> >> Will it be possible to buy electronic versions of the new dictionary and
> >> lessons book?
> >>
> >>
> >>
> >> -
> >> ---
> >> Greg (pink) Miller
> >> mad, pink and dangerous to code
> >> --
> >> Sent from:
> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
> >>
> >> ___
> >> 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: New Books/Dictionary

2017-11-25 Thread Mike Kerner via use-livecode
have you tried tinydict?

On Sat, Nov 25, 2017 at 12:34 PM, Pi Digital via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Coz it sucks at searching for one thing! For another, it’s nice to have it
> on a device to the side of you rather than swapping on the pc desktop.
>
> Greg, I’m making a little app for it that will be made freely available as
> soon as possible. If it works really well I’m going to make it a stack for
> inclusion with LC as the current one is tiresome.
> #therehastobeabetterway
>
> Sean Cole
> Pi Digital
>
> > On 25 Nov 2017, at 16:19, Richmond Mathewson via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Why would anyone want to buy an electronic version of the new dictionary
> > when it comes rolled into every version of Livecode?
> >
> > Richmond.
> >
> >> On 25/11/17 5:24 pm, pink via use-livecode wrote:
> >> Will it be possible to buy electronic versions of the new dictionary and
> >> lessons book?
> >>
> >>
> >>
> >> -
> >> ---
> >> Greg (pink) Miller
> >> mad, pink and dangerous to code
> >> --
> >> Sent from: http://runtime-revolution.278305.n4.nabble.com/
> Revolution-User-f278306.html
> >>
> >> ___
> >> 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
>



-- 
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: New Books/Dictionary

2017-11-25 Thread Pi Digital via use-livecode
Coz it sucks at searching for one thing! For another, it’s nice to have it on a 
device to the side of you rather than swapping on the pc desktop. 

Greg, I’m making a little app for it that will be made freely available as soon 
as possible. If it works really well I’m going to make it a stack for inclusion 
with LC as the current one is tiresome. 
#therehastobeabetterway

Sean Cole
Pi Digital

> On 25 Nov 2017, at 16:19, Richmond Mathewson via use-livecode 
>  wrote:
> 
> Why would anyone want to buy an electronic version of the new dictionary
> when it comes rolled into every version of Livecode?
> 
> Richmond.
> 
>> On 25/11/17 5:24 pm, pink via use-livecode wrote:
>> Will it be possible to buy electronic versions of the new dictionary and
>> lessons book?
>> 
>> 
>> 
>> -
>> ---
>> Greg (pink) Miller
>> mad, pink and dangerous to code
>> --
>> Sent from: 
>> http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html
>> 
>> ___
>> 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: New Books/Dictionary

2017-11-25 Thread Richmond Mathewson via use-livecode

Why would anyone want to buy an electronic version of the new dictionary
when it comes rolled into every version of Livecode?

Richmond.

On 25/11/17 5:24 pm, pink via use-livecode wrote:

Will it be possible to buy electronic versions of the new dictionary and
lessons book?



-
---
Greg (pink) Miller
mad, pink and dangerous to code
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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


New Books/Dictionary

2017-11-25 Thread pink via use-livecode
Will it be possible to buy electronic versions of the new dictionary and
lessons book?



-
---
Greg (pink) Miller
mad, pink and dangerous to code
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: ArrayToJSON in LCServer ?

2017-11-25 Thread pink via use-livecode
ArrayToJSON is from the mergJSON external... so in order for you to use it,
you would need to be able to access the external through your server
installation. I don't know if that is possible...

My recommendation would be to use a library such as fastJSON. I use fastJSON
with LC Server all the time without issue.



-
---
Greg (pink) Miller
mad, pink and dangerous to code
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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