Re: Problem saving image for file

2018-07-28 Thread Stephen MacLean via use-livecode
Thanks Mike, I like your code, cleaner, smaller and easier to understand.

And thanks for the explanation… I get it:)

Again, thanks to all who responded!


> On Jul 28, 2018, at 11:02 PM, Mike Bonner via use-livecode 
>  wrote:
> 
> It's just how file systems work.  If the beginning character is / that
> means it starts at the root of the file system.  Since you had already set
> the defaultfolder, and wanted to go relative to there, you would just
> specify the folder name/filename.  Or as I said, pre-pend a dot.   In fact,
> 2 dots .. stands for the next folder towards the root so you can do weird
> things like dir ../../..  which will list the contents of a folder 3 levels
> above the current.
> 
> You also don't need to actually set the defaultfolder, you could do as in
> your example...
> 
> set the itemDelimiter to slash
> get the effective filename of this stack
> put tTempCrop into URL "binfile:" & item 1 to - 2 of it &
> "/tempMedia/testimage.jpg"
> 
> In the case of the above you DO need the slash before tempMedia because
> there is no trailing slash when you get item 1 to -2 of it.  But, item 1 to
> -2 of it is a path starting from the root so you end up with an absolute
> path rather than a relative path.  IE it would be something like
> /home/username/desktop/mystackfolder/tempMedia/testimage.jpg
> 
> 
> 
> On Sat, Jul 28, 2018 at 8:45 PM Stephen MacLean via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Thank you to all who replied!
>> 
>> Adding the “.” solved the problem and the file saved where it was supposed
>> to.
>> 
>> Confusing, because you would think that setting the defaultFolder would
>> allow you to specify the next sub folder like I did… and it’s not
>> mentioned, that I saw, in the docs.
>> 
>> Thanks again!
>> 
>> Steve
>> 
>>> On Jul 28, 2018, at 5:52 PM, Mike Bonner via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> If you use the path /tempMedia that forces it to the root of the
>>> filesystem and if there isn't a folder /tempmedia, it'll fail.  Either
>>> leave off the preceding slash, or prepend it with a . <--(a dot) which
>>> designates the current directory.
>>> 
>>> On Sat, Jul 28, 2018 at 3:40 PM Peter Bogdanoff via use-livecode <
>>> use-livecode@lists.runrev.com> wrote:
>>> 
 That is (or use variables for the filename):
> export image "testimage.jpg"  to file "/tempMedia/testimage.jpg" as
>> JPEG
 
 
 
 
> On Jul 28, 2018, at 2:37 PM, Peter Bogdanoff via use-livecode <
 use-livecode@lists.runrev.com> wrote:
> 
> Hi,
> 
> Try using this syntax:
> export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG
> 
> I think you need binfile to read but not to write.
> Peter
> 
> 
>> On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode <
 use-livecode@lists.runrev.com> wrote:
>> 
>> Hi All,
>> 
>> Been a long time since I’ve done file work with LC, but I’m having an
 issue saving an image to a file:
>> 
>> # set the defaultFolder to the folder containing the stackfile
>> 
>> set the itemDelimiter to slash
>> 
>> get the effective filename of this stack
>> 
>> set the defaultFolder to item 1 to -2 of it
>> 
>> put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
>> 
>> 
>> results in a “Can’t open file” error.
>> 
>> Trying to save to a folder called “tempMedia” that is in the same
 directory as the stack.
>> 
>> Mac OS 10.12.6, 9.01 RC1 Business.
>> 
>> TIA,
>> 
>> Steve MacLean
>> ___
>> 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
>> 
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.run

Re: Problem saving image for file

2018-07-28 Thread Mike Bonner via use-livecode
It's just how file systems work.  If the beginning character is / that
means it starts at the root of the file system.  Since you had already set
the defaultfolder, and wanted to go relative to there, you would just
specify the folder name/filename.  Or as I said, pre-pend a dot.   In fact,
2 dots .. stands for the next folder towards the root so you can do weird
things like dir ../../..  which will list the contents of a folder 3 levels
above the current.

You also don't need to actually set the defaultfolder, you could do as in
your example...

set the itemDelimiter to slash
get the effective filename of this stack
put tTempCrop into URL "binfile:" & item 1 to - 2 of it &
"/tempMedia/testimage.jpg"

In the case of the above you DO need the slash before tempMedia because
there is no trailing slash when you get item 1 to -2 of it.  But, item 1 to
-2 of it is a path starting from the root so you end up with an absolute
path rather than a relative path.  IE it would be something like
/home/username/desktop/mystackfolder/tempMedia/testimage.jpg



On Sat, Jul 28, 2018 at 8:45 PM Stephen MacLean via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Thank you to all who replied!
>
> Adding the “.” solved the problem and the file saved where it was supposed
> to.
>
> Confusing, because you would think that setting the defaultFolder would
> allow you to specify the next sub folder like I did… and it’s not
> mentioned, that I saw, in the docs.
>
> Thanks again!
>
> Steve
>
> > On Jul 28, 2018, at 5:52 PM, Mike Bonner via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > If you use the path /tempMedia that forces it to the root of the
> > filesystem and if there isn't a folder /tempmedia, it'll fail.  Either
> > leave off the preceding slash, or prepend it with a . <--(a dot) which
> > designates the current directory.
> >
> > On Sat, Jul 28, 2018 at 3:40 PM Peter Bogdanoff via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> >
> >> That is (or use variables for the filename):
> >>> export image "testimage.jpg"  to file "/tempMedia/testimage.jpg" as
> JPEG
> >>
> >>
> >>
> >>
> >>> On Jul 28, 2018, at 2:37 PM, Peter Bogdanoff via use-livecode <
> >> use-livecode@lists.runrev.com> wrote:
> >>>
> >>> Hi,
> >>>
> >>> Try using this syntax:
> >>> export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG
> >>>
> >>> I think you need binfile to read but not to write.
> >>> Peter
> >>>
> >>>
>  On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode <
> >> use-livecode@lists.runrev.com> wrote:
> 
>  Hi All,
> 
>  Been a long time since I’ve done file work with LC, but I’m having an
> >> issue saving an image to a file:
> 
>  # set the defaultFolder to the folder containing the stackfile
> 
>  set the itemDelimiter to slash
> 
>  get the effective filename of this stack
> 
>  set the defaultFolder to item 1 to -2 of it
> 
>  put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
> 
> 
>  results in a “Can’t open file” error.
> 
>  Trying to save to a folder called “tempMedia” that is in the same
> >> directory as the stack.
> 
>  Mac OS 10.12.6, 9.01 RC1 Business.
> 
>  TIA,
> 
>  Steve MacLean
>  ___
>  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
>
>
>
> ___
> 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: Problem saving image for file

2018-07-28 Thread Stephen MacLean via use-livecode
Thank you to all who replied! 

Adding the “.” solved the problem and the file saved where it was supposed to.

Confusing, because you would think that setting the defaultFolder would allow 
you to specify the next sub folder like I did… and it’s not mentioned, that I 
saw, in the docs.

Thanks again!

Steve

> On Jul 28, 2018, at 5:52 PM, Mike Bonner via use-livecode 
>  wrote:
> 
> If you use the path /tempMedia that forces it to the root of the
> filesystem and if there isn't a folder /tempmedia, it'll fail.  Either
> leave off the preceding slash, or prepend it with a . <--(a dot) which
> designates the current directory.
> 
> On Sat, Jul 28, 2018 at 3:40 PM Peter Bogdanoff via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> That is (or use variables for the filename):
>>> export image "testimage.jpg"  to file "/tempMedia/testimage.jpg" as JPEG
>> 
>> 
>> 
>> 
>>> On Jul 28, 2018, at 2:37 PM, Peter Bogdanoff via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> Hi,
>>> 
>>> Try using this syntax:
>>> export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG
>>> 
>>> I think you need binfile to read but not to write.
>>> Peter
>>> 
>>> 
 On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
 
 Hi All,
 
 Been a long time since I’ve done file work with LC, but I’m having an
>> issue saving an image to a file:
 
 # set the defaultFolder to the folder containing the stackfile
 
 set the itemDelimiter to slash
 
 get the effective filename of this stack
 
 set the defaultFolder to item 1 to -2 of it
 
 put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
 
 
 results in a “Can’t open file” error.
 
 Trying to save to a folder called “tempMedia” that is in the same
>> directory as the stack.
 
 Mac OS 10.12.6, 9.01 RC1 Business.
 
 TIA,
 
 Steve MacLean
 ___
 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



___
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: Problem saving image for file

2018-07-28 Thread Pi Digital via use-livecode
Hi Steve

First, a quick way to the stack or standalone folder is 
specialfolderpath(“resources”). 

Check that your folders permissions are ok. 

export snapshot from rect 0,0,100,100 of this card to url 
("binfile:"&specialFolderPath("resources")&"/Pic.jpg") as JPEG

See if this helps when using your put tTempCrop into url(). 

> On 28 Jul 2018, at 21:41, Stephen MacLean via use-livecode 
>  wrote:
> 
> Hi All,
> 
> Been a long time since I’ve done file work with LC, but I’m having an issue 
> saving an image to a file:
> 
> # set the defaultFolder to the folder containing the stackfile
> 
> set the itemDelimiter to slash
> 
> get the effective filename of this stack
> 
> set the defaultFolder to item 1 to -2 of it
> 
> put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
> 
> 
> results in a “Can’t open file” error.
> 
> Trying to save to a folder called “tempMedia” that is in the same directory 
> as the stack.
> 
> Mac OS 10.12.6, 9.01 RC1 Business.
> 
> TIA,
> 
> Steve MacLean
> ___
> 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: Problem saving image for file

2018-07-28 Thread Mike Bonner via use-livecode
If you use the path /tempMedia that forces it to the root of the
filesystem and if there isn't a folder /tempmedia, it'll fail.  Either
leave off the preceding slash, or prepend it with a . <--(a dot) which
designates the current directory.

On Sat, Jul 28, 2018 at 3:40 PM Peter Bogdanoff via use-livecode <
use-livecode@lists.runrev.com> wrote:

> That is (or use variables for the filename):
> > export image "testimage.jpg"  to file "/tempMedia/testimage.jpg" as JPEG
>
>
>
>
> > On Jul 28, 2018, at 2:37 PM, Peter Bogdanoff via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Hi,
> >
> > Try using this syntax:
> > export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG
> >
> > I think you need binfile to read but not to write.
> > Peter
> >
> >
> >> On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >>
> >> Hi All,
> >>
> >> Been a long time since I’ve done file work with LC, but I’m having an
> issue saving an image to a file:
> >>
> >> # set the defaultFolder to the folder containing the stackfile
> >>
> >> set the itemDelimiter to slash
> >>
> >> get the effective filename of this stack
> >>
> >> set the defaultFolder to item 1 to -2 of it
> >>
> >> put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
> >>
> >>
> >> results in a “Can’t open file” error.
> >>
> >> Trying to save to a folder called “tempMedia” that is in the same
> directory as the stack.
> >>
> >> Mac OS 10.12.6, 9.01 RC1 Business.
> >>
> >> TIA,
> >>
> >> Steve MacLean
> >> ___
> >> 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: Problem saving image for file

2018-07-28 Thread Peter Bogdanoff via use-livecode
That is (or use variables for the filename):
> export image "testimage.jpg"  to file "/tempMedia/testimage.jpg" as JPEG




> On Jul 28, 2018, at 2:37 PM, Peter Bogdanoff via use-livecode 
>  wrote:
> 
> Hi,
> 
> Try using this syntax:
> export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG
> 
> I think you need binfile to read but not to write.
> Peter
> 
> 
>> On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode 
>>  wrote:
>> 
>> Hi All,
>> 
>> Been a long time since I’ve done file work with LC, but I’m having an issue 
>> saving an image to a file:
>> 
>> # set the defaultFolder to the folder containing the stackfile
>> 
>> set the itemDelimiter to slash
>> 
>> get the effective filename of this stack
>> 
>> set the defaultFolder to item 1 to -2 of it
>> 
>> put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
>> 
>> 
>> results in a “Can’t open file” error.
>> 
>> Trying to save to a folder called “tempMedia” that is in the same directory 
>> as the stack.
>> 
>> Mac OS 10.12.6, 9.01 RC1 Business.
>> 
>> TIA,
>> 
>> Steve MacLean
>> ___
>> 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: Problem saving image for file

2018-07-28 Thread Peter Bogdanoff via use-livecode
Hi,

Try using this syntax:
export image "tImage"  to file "/tempMedia/testimage.jpg" as JPEG

I think you need binfile to read but not to write.
Peter


> On Jul 28, 2018, at 1:41 PM, Stephen MacLean via use-livecode 
>  wrote:
> 
> Hi All,
> 
> Been a long time since I’ve done file work with LC, but I’m having an issue 
> saving an image to a file:
> 
> # set the defaultFolder to the folder containing the stackfile
> 
> set the itemDelimiter to slash
> 
> get the effective filename of this stack
> 
> set the defaultFolder to item 1 to -2 of it
> 
> put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"
> 
> 
> results in a “Can’t open file” error.
> 
> Trying to save to a folder called “tempMedia” that is in the same directory 
> as the stack.
> 
> Mac OS 10.12.6, 9.01 RC1 Business.
> 
> TIA,
> 
> Steve MacLean
> ___
> 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

Failed to Build iOS Versions in 9.0.1 RC1

2018-07-28 Thread Sannyasin Brahmanathaswami via use-livecode
1) Since working with 9.0.1. RC1 I have not been able to get a home screen icon 
to show.  I get something generic... Everything is set in the SA settings…

Well, I kept on with development, saying "I'll worry about the icon later" 

Then today I added some devices to my Apple Developer Profile and downloaded 
the new provisioning profile. 

Nothing has changed (that I can see).

Now I am getting a new error..

===
Unable to build for device : codesigning failed with
/private/var/folders/t8 snip]/SivaSiva.app:errSecInternalComponent.

OK
+++

So I took a look at the /private folder  went digging ...it did not fine 
the error. But I do find

tmp.12344.OXz0SohK
   / AppIcon.appiconset
Contents.json
icon-app-57...@1x.png
icon-app-57...@2x.png
icon-app-60...@2x.png
icon-app-60...@3x.png
icon-app-72...@1x.png
icon-app-72...@2x.png
icon-app-76...@1x.png
icon-app-76...@2x.png
icon-app-83.5x8...@2x.png
itunesartw...@2x.png

I really don't know if the latest error on iOS build is related or not... but 
something myterious in going on?

I can see what so many developers opt out of building for iOS are all!  Too 
much pain with Apple...

BR

___
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

Problem saving image for file

2018-07-28 Thread Stephen MacLean via use-livecode
Hi All,

Been a long time since I’ve done file work with LC, but I’m having an issue 
saving an image to a file:

# set the defaultFolder to the folder containing the stackfile

set the itemDelimiter to slash

get the effective filename of this stack

set the defaultFolder to item 1 to -2 of it

put tTempCrop into URL "binfile:/tempMedia/testimage.jpg"


results in a “Can’t open file” error.

Trying to save to a folder called “tempMedia” that is in the same directory as 
the stack.

Mac OS 10.12.6, 9.01 RC1 Business.

TIA,

Steve MacLean
___
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: Checking if internet is connected using tsNet?

2018-07-28 Thread bob--- via use-livecode
A little late to the respond on this but I’d send a HTTP HEAD request. You will 
get a 200 response back with no data if you have an http connection to the url 
you specify. You could use your own server to send the request to but it is 
common to use a well known service such as google to send the HEAD request to 
also.

The Liveocde lesson at the link below shows how you can send a DELETE request 
using tsNetCustomSync. You’ll have to modify the script slightly to work for 
the HEAD request.

http://lessons.livecode.com/m/4071/l/856543-how-to-send-a-custom-http-request-using-the-tsnet-external
 


Bob Hall

> On Jul 28, 2018, at 12:42 PM, Douglas Ruisaard via use-livecode 
>  wrote:
> 
> Bob...
> 
> Wondering if you would post the windows-version of this technique again... or 
> copy it to this forum, ideally?
> 
> The dropbox entry I can find is expired.
> 
> 
>> Subject: Re: Checking if internet is connected using tsNet?
>> 
>> And don't forget my telnet technique. Telnet will tell you if there is a 
>> basic connection without "actually" connecting with a 
>> protocol of any sort. So it doesn't suffer from any of the built in timeouts 
>> that web protocols must have to work properly. 
> 
>> Bob S
> 
> 
> Douglas Ruisaard
> Trilogy Software
> (250) 573-3935
> 
> 
> 
> 
> ___
> 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: LiveCode Server on CentOS 6?

2018-07-28 Thread Richard Gaskin via use-livecode

Keith Clarke wrote:

> Is anyone running LS Server on CentOS 6?
> I notice that only version 7 is officially supported and not being a
> Linux expert, I’d like to know if this server OS would need to be
> upgraded before attempting anything with LC server on it.

"Officially Supported" only designates the distros the LC core dev team 
is dedicated to testing on and maintaining for.  The others are 
community supported, and since LC's requirements are so light it 
generally works on most modern distros.


Give it a whirl and let us know how it goes.

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.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: Checking if internet is connected using tsNet?

2018-07-28 Thread Douglas Ruisaard via use-livecode
Bob...

Wondering if you would post the windows-version of this technique again... or 
copy it to this forum, ideally?

The dropbox entry I can find is expired.


>  Subject: Re: Checking if internet is connected using tsNet?
>
> And don't forget my telnet technique. Telnet will tell you if there is a 
> basic connection without "actually" connecting with a 
> protocol of any sort. So it doesn't suffer from any of the built in timeouts 
> that web protocols must have to work properly. 

> Bob S


Douglas Ruisaard
Trilogy Software
(250) 573-3935




___
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


LiveCode Server on CentOS 6?

2018-07-28 Thread Keith Clarke via use-livecode
Hi Folks,
Is anyone running LS Server on CentOS 6? 
I notice that only version 7 is officially supported and not being a Linux 
expert, I’d like to know if this server OS would need to be upgraded before 
attempting anything with LC server on it.
TIA
Keith
___
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