Re: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Phil Davis

From the dictionary:

   The rename command can be used to change a file's or folder's
   location only if the old and new locations are both on the same volume.

Phil Davis


On 7/12/16 5:23 PM, Roger Eller wrote:

I thought the rename command allows for a different destination.
Therefore, rename is actually "copy as new name" when the volumes or drive
letters differ.

~Roger
On Jul 11, 2016 11:19 PM, "Sannyasin Brahmanathaswami" 
wrote:


What alternatives do we have for basic shell commands on Windows?

Rumors are out that later this year, Windows will support bash.. and
perhaps then Livecode's shell calls to unix/bash commands will be cross
platform--  like the one (cp) in this script below. But until then, can
anyone provide an alternative that works on Windows?

RevCopyFile (which works on Windows) doesn't offer the option to copy to a
different filename…

I suppose I can copy the file and then rename the copy at the new
destination, using "rename"  which is simple enough.

But I was wondering if there are any native windows alternatives to unix
"cp" that writes the same file to another file with a different name in
"one go."


on backupStack

save the topstack

# get a time stamp

put the internet date into tDateTime

convert tDateTime to dateitems

delete the last item of tDateTime

if item 4 of tDateTime > 12 then

subtract 12 from item 4 of tDateTime

put "pm" into the last item of tDateTime

end if

replace comma with "-" in tDateTime

# get the path of the stack

# set up the copy

put the effective filename of the topstack into tCurrentPath

put tCurrentPath into tCopyPath

set the itemdel to "/"

# always back up to one level above current working folder

delete item -4 to -2 of tCopyPath

put "/zArchives" after item -2 of tCopyPath

# put tCopyPath; exit to top;

replace ".livecode" with ("_" & tDateTime & ".bac") in tCopyPath

put ("cp " & quote & tCurrentPath & quote &" "& quote & tCopyPath & quote)
into tShell

get shell(tShell)

# auto fire every half hour

send backupStack to me in 1800 seconds

end backupStack


___
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


--
Phil Davis

___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Roger Eller
I thought the rename command allows for a different destination.
Therefore, rename is actually "copy as new name" when the volumes or drive
letters differ.

~Roger
On Jul 11, 2016 11:19 PM, "Sannyasin Brahmanathaswami" 
wrote:

> What alternatives do we have for basic shell commands on Windows?
>
> Rumors are out that later this year, Windows will support bash.. and
> perhaps then Livecode's shell calls to unix/bash commands will be cross
> platform--  like the one (cp) in this script below. But until then, can
> anyone provide an alternative that works on Windows?
>
> RevCopyFile (which works on Windows) doesn't offer the option to copy to a
> different filename…
>
> I suppose I can copy the file and then rename the copy at the new
> destination, using "rename"  which is simple enough.
>
> But I was wondering if there are any native windows alternatives to unix
> "cp" that writes the same file to another file with a different name in
> "one go."
>
>
> on backupStack
>
> save the topstack
>
> # get a time stamp
>
> put the internet date into tDateTime
>
> convert tDateTime to dateitems
>
> delete the last item of tDateTime
>
> if item 4 of tDateTime > 12 then
>
> subtract 12 from item 4 of tDateTime
>
> put "pm" into the last item of tDateTime
>
> end if
>
> replace comma with "-" in tDateTime
>
> # get the path of the stack
>
> # set up the copy
>
> put the effective filename of the topstack into tCurrentPath
>
> put tCurrentPath into tCopyPath
>
> set the itemdel to "/"
>
> # always back up to one level above current working folder
>
> delete item -4 to -2 of tCopyPath
>
> put "/zArchives" after item -2 of tCopyPath
>
> # put tCopyPath; exit to top;
>
> replace ".livecode" with ("_" & tDateTime & ".bac") in tCopyPath
>
> put ("cp " & quote & tCurrentPath & quote &" "& quote & tCopyPath & quote)
> into tShell
>
> get shell(tShell)
>
> # auto fire every half hour
>
> send backupStack to me in 1800 seconds
>
> end backupStack
>
>
> ___
> 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-rev SSL certificates

2016-07-12 Thread Mark Wieder
Klaus major-k  writes:

> ouch, SAME server and IP?
> Sounds like asking for trouble, isn't it!?

Godaddy has a well-deserved reputation as a bottom-feeder.
It looks like they issued an ssl certificate for ns1.on-rev.com.

On-rev, for their part, charge a ridiculous $99/yr for an ssl
certificate, which is why people get these from godaddy in the
first place. 

-- 
 Mark Wieder
 ahsoftw...@gmail.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread [-hh]
The interesting question about that is now:
What is in memory after
[1] save?
[2] save as?
[3] save copy as (not yet implemented)?

If I'm correct then it is ALWAYS the same, NOTHING is
changed in memory. Only with [2] the file on disk is
changed to which the object in memory links (and which
is used for the next save or revert command).

So we can use save and one or both of [2] or [3].
This yields of course different backup methods, but your
work goes on in any case with an unchanged object in memory.




--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Windows-Equivalents-for-Shell-cp-copy-tp4706590p4706660.html
Sent from the Revolution - User mailing list archive at Nabble.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: the defaultFolder in standalones: Changed in 8

2016-07-12 Thread Devin Asay
Done. http://quality.livecode.com/show_bug.cgi?id=18008

> On Jul 12, 2016, at 4:20 PM, Ali Lloyd  wrote:
> 
> Speaking as the person who most likely caused the change, I'm pretty sure
> that wasn't intentional. Definitely worth filing a bug report.
> 
> On Tue, Jul 12, 2016 at 11:02 PM Devin Asay  wrote:
> 
>> I just noticed this change today as I was moving a project to LC 8.
>> 
>> On Mac OS X, in v. 7 and earlier when you saved a stack as a standalone,
>> the defaultFolder would be set to the folder containing the .app bundle;
>> e.g., /Users/me/myproject.
>> 
>> In v. 8 when you save a stack as a standalone the defaultFolder is set to
>> the app bundle itself; e.g., /Users/me/myproject/mystack.app.
>> 
>> I have often used the pre-8 behavior to allow my standalone to easily
>> access files in the enclosing folder. V. 8 breaks that functionality.
>> 
>> So is this a bug or a feature? I usually read the release notes pretty
>> closely, but don’t remember reading about this change? It can potentially
>> break lots of projects like it did mine. (Although I can pretty easily come
>> up with a workaround.)
>> 
>> The main question is, was this an intentional change or a regression bug?
>> 
>> Devin
>> 
>> 
>> Devin Asay
>> Office of Digital Humanities
>> Brigham Young University
>> 
>> ___
>> 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

Devin Asay
Office of Digital Humanities
Brigham Young University

___
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: Do guinea pigs' eyes fall out if you hang them upside down by their tails?

2016-07-12 Thread Dr. Hawkins
On Tue, Jul 12, 2016 at 1:04 PM, Richmond 
wrote:

> 3. Guinea pigs don't have tails.


For the record, they start with one, but it's quite weak.  Once Richard
lifted it by the tail, it simply broke off, and brother Lamark never let
another one have a tail . .


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: the defaultFolder in standalones: Changed in 8

2016-07-12 Thread Ali Lloyd
Speaking as the person who most likely caused the change, I'm pretty sure
that wasn't intentional. Definitely worth filing a bug report.

On Tue, Jul 12, 2016 at 11:02 PM Devin Asay  wrote:

> I just noticed this change today as I was moving a project to LC 8.
>
> On Mac OS X, in v. 7 and earlier when you saved a stack as a standalone,
> the defaultFolder would be set to the folder containing the .app bundle;
> e.g., /Users/me/myproject.
>
> In v. 8 when you save a stack as a standalone the defaultFolder is set to
> the app bundle itself; e.g., /Users/me/myproject/mystack.app.
>
> I have often used the pre-8 behavior to allow my standalone to easily
> access files in the enclosing folder. V. 8 breaks that functionality.
>
> So is this a bug or a feature? I usually read the release notes pretty
> closely, but don’t remember reading about this change? It can potentially
> break lots of projects like it did mine. (Although I can pretty easily come
> up with a workaround.)
>
> The main question is, was this an intentional change or a regression bug?
>
> Devin
>
>
> Devin Asay
> Office of Digital Humanities
> Brigham Young University
>
> ___
> 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

the defaultFolder in standalones: Changed in 8

2016-07-12 Thread Devin Asay
I just noticed this change today as I was moving a project to LC 8.

On Mac OS X, in v. 7 and earlier when you saved a stack as a standalone, the 
defaultFolder would be set to the folder containing the .app bundle; e.g., 
/Users/me/myproject.

In v. 8 when you save a stack as a standalone the defaultFolder is set to the 
app bundle itself; e.g., /Users/me/myproject/mystack.app.

I have often used the pre-8 behavior to allow my standalone to easily access 
files in the enclosing folder. V. 8 breaks that functionality.

So is this a bug or a feature? I usually read the release notes pretty closely, 
but don’t remember reading about this change? It can potentially break lots of 
projects like it did mine. (Although I can pretty easily come up with a 
workaround.)

The main question is, was this an intentional change or a regression bug?

Devin


Devin Asay
Office of Digital Humanities
Brigham Young University

___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Mike Bonner
Can't you "save stack as.." and then set the filename of the stack back to
what it was?

On Tue, Jul 12, 2016 at 3:18 PM, J. Landman Gay 
wrote:

> On 7/12/2016 4:08 PM, Richard Gaskin wrote:
>
>> Sannyasin Brahmanathaswami wrote:
>>
>> which file is in memory after we do this, the original, or the copy
>>> with a new name?
>>>
>>> A "save copy as" command?
>>>
>> ...
>>
>> Did I miss something?
>>
>> When was "copy" introduced?
>>
>>
> It wasn't, it's being proposed.
>
> For now, the easiest way to make a backup stack is to use Mike's
> suggestion to "put URL x into URL y". I should have thought of that when I
> made my more verbose suggestion but it was the crack of noon when I
> answered and I hadn't had coffee yet.
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.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
>
___
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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread José Antonio Rocha
2016-07-12 13:53 GMT-03:00 Richard Gaskin :

>
> Is there a bug report for this?  I don't have Xubuntu set up here, but I
> do run Ubuntu and Lubuntu so maybe I can help pin down what's happening
> with that 64-bit version.


​I have this problem with U​buntu 16.04 in portuguese, too.
At least, with LC 32-bits the dictionary open in Chrome, not blank.



-- 

[image: Meira]nome: "José Antonio Meira da Rocha
"
email: joseantonioro...@gmail.com
veículo: [ http://meiradarocha.jor.br ]
fones: [ 55-8448-3866  55-3744-2994 ] 
--
___
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: [OT]"Every version of Windows hit by critical security flaw"

2016-07-12 Thread Roger Eller
I never had a virus while running Windows 8.1, other than the forced update
to Windows 10.

~Roger


On Tue, Jul 12, 2016 at 5:07 PM, Mark Wieder  wrote:

> A security flaw in Windows?
> Hoodathunkit?
>
> --
>  Mark Wieder
>  ahsoftw...@gmail.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread J. Landman Gay

On 7/12/2016 4:08 PM, Richard Gaskin wrote:

Sannyasin Brahmanathaswami wrote:


which file is in memory after we do this, the original, or the copy
with a new name?

A "save copy as" command?

...

Did I miss something?

When was "copy" introduced?



It wasn't, it's being proposed.

For now, the easiest way to make a backup stack is to use Mike's 
suggestion to "put URL x into URL y". I should have thought of that when 
I made my more verbose suggestion but it was the crack of noon when I 
answered and I hadn't had coffee yet.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Peter TB Brett

On 12/07/2016 22:08, Richard Gaskin wrote:

Sannyasin Brahmanathaswami wrote:


which file is in memory after we do this, the original, or the copy
with a new name?

A "save copy as" command?


I was hoping to see how the Dictionary describes that, but the
Dictionary entry for "save" doesn't seem to mention a "copy" option at all.

The syntax guide for "save" is:

  save stack [as filePath] [with format stackFormat |
 with newest format]

It does include this:

  Use the save command to save changes to a stack
  or to save a copy of a stack into another file.

...but it doesn't seem to offer any guidance on the syntax for copying.

Did I miss something?

When was "copy" introduced?


It wasn't.

I was proposing that Brahmanathaswami might like to make an enhancement 
request!


   Peter

--
Dr Peter Brett 
LiveCode Technical Project Manager

LiveCode 2016 Conference https://livecode.com/edinburgh-2016/

___
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: [OT]"Every version of Windows hit by critical security flaw"

2016-07-12 Thread Mark Wieder
A security flaw in Windows?
Hoodathunkit?

-- 
 Mark Wieder
 ahsoftw...@gmail.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Richard Gaskin

Sannyasin Brahmanathaswami wrote:

> which file is in memory after we do this, the original, or the copy
> with a new name?
>
> A "save copy as" command?

I was hoping to see how the Dictionary describes that, but the 
Dictionary entry for "save" doesn't seem to mention a "copy" option at all.


The syntax guide for "save" is:

  save stack [as filePath] [with format stackFormat |
 with newest format]

It does include this:

  Use the save command to save changes to a stack
  or to save a copy of a stack into another file.

...but it doesn't seem to offer any guidance on the syntax for copying.

Did I miss something?

When was "copy" introduced?

--
 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: Do guinea pigs' eyes fall out if you hang them upside down by their tails?

2016-07-12 Thread Mark Wieder
Richmond  writes:

> 3. Guinea pigs don't have tails.

Aarrggh!
Got me! Good one!

-- 
 Mark Wieder
 ahsoftw...@gmail.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Sannyasin Brahmanathaswami

which file is in memory after we do this, the original, or the copy with a new 
name?


A "save copy as" command?

Peter


___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Sannyasin Brahmanathaswami
Actually I want the opposite.

I want the original file to stay in memory…

back ups are tagged with time and date

surprise-me-2016-07-12-15-21-00.bac#  3:21 PM
surprise-me-2016-07-12-15-36-00.bac  # 15 minutes later

BR

From: use-livecode  on behalf of "Dr. 
Hawkins" 
Reply-To: How LiveCode 
Date: Tuesday, July 12, 2016 at 6:58 AM
To: How LiveCode 
Subject: Re: Windows Equivalents for Shell: cp (copy)

What I *want* to happen is or the old stack to end up out of memory, and
the new stack (which has the same name) to take its place.


___
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: [OT]"Every version of Windows hit by critical security flaw"

2016-07-12 Thread ** Clarence P Martin **
I appreciate the notice!

Sincerely,

Clarence Martin
Email: chi...@themartinz.com
Cell: 626 6965561

-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of Richard Gaskin
Sent: Tuesday, July 12, 2016 12:39 PM
To: How to use LiveCode 
Subject: [OT]"Every version of Windows hit by critical security flaw"

Update ASAP.

http://www.zdnet.com/article/every-version-of-windows-hit-by-critical-securi
ty-flaw/

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


___
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: Do guinea pigs' eyes fall out if you hang them upside down by their tails?

2016-07-12 Thread Richmond

Thanks.

On 12.07.2016 22:51, Richard Gaskin wrote:

Richmond wrote:

> Ah: Got you :)

I don't understand.


1. Caught your attention to answer a very boring question: had I written 
"Lines in field" you might have ignored it.




> Does anyone know what is the maximum number of lines one can have in
> a list field?

There is no hard-wired limit beyond an address size of 4GB, which is 
impractical for many reasons.


FWIW I once put the Bible into a field just to see how long it would 
take to calculate the line wraps.  So I can say with first-hand 
knowledge that it will accommodate at least as many lines as can be 
found in that text file from the Gutenberg Project. :)




2. Good: I'm filling the lines of a list field with ALL the characters 
in the first Unicode plane.


3. Guinea pigs don't have tails.

Richmond.

___
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: Do guinea pigs' eyes fall out if you hang them upside down by their tails?

2016-07-12 Thread Richard Gaskin

Richmond  wrote:

> Ah: Got you :)

I don't understand.

> Does anyone know what is the maximum number of lines one can have in
> a list field?

There is no hard-wired limit beyond an address size of 4GB, which is 
impractical for many reasons.


FWIW I once put the Bible into a field just to see how long it would 
take to calculate the line wraps.  So I can say with first-hand 
knowledge that it will accommodate at least as many lines as can be 
found in that text file from the Gutenberg Project. :)


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


Do guinea pigs' eyes fall out if you hang them upside down by their tails?

2016-07-12 Thread Richmond

Ah: Got you :)

Does anyone know what is the maximum number of lines one can have in a 
list field?


Richmond.

___
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: Unicode character recognition by drawing

2016-07-12 Thread Richmond



On 12.07.2016 22:43, Dar Scott wrote:

put length ( numToCodepoint( 0xE ) )

gives me

1

in 8.0.

(BTW, I don't think 0xE is assigned.)


It isn't and I was having a "mental moment" . . .

Richmond.




On Jul 12, 2016, at 1:04 PM, Richmond  wrote:

Thinking, as one does, Livecodewards I wonder why this doesn't seem to work 
(7.1.4):

put numToCodePoint(917504)

That should not cause any problems . . . but.

Richmond.

On 12.07.2016 22:01, Mark Wieder wrote:

Richmond  writes:


Thanks, Mark; that cheered me up after a rather "non" day!

Cool. You were the one I thought would be the most interested in this.
At the very least it's a fun toy to play with.

The web page does say
"Japanese, Korean and Chinese characters are currently not supported."

so I guess it's (still|always) a work in progress.



___
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: Unicode character recognition by drawing

2016-07-12 Thread Dar Scott
put length ( numToCodepoint( 0xE ) ) 

gives me 

1

in 8.0.  

(BTW, I don't think 0xE is assigned.)

> On Jul 12, 2016, at 1:04 PM, Richmond  wrote:
> 
> Thinking, as one does, Livecodewards I wonder why this doesn't seem to work 
> (7.1.4):
> 
> put numToCodePoint(917504)
> 
> That should not cause any problems . . . but.
> 
> Richmond.
> 
> On 12.07.2016 22:01, Mark Wieder wrote:
>> Richmond  writes:
>> 
>>> Thanks, Mark; that cheered me up after a rather "non" day!
>> Cool. You were the one I thought would be the most interested in this.
>> At the very least it's a fun toy to play with.
>> 
>> The web page does say
>> "Japanese, Korean and Chinese characters are currently not supported."
>> 
>> so I guess it's (still|always) a work in progress.
>> 
> 
> 
> ___
> 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


[OT]"Every version of Windows hit by critical security flaw"

2016-07-12 Thread Richard Gaskin

Update ASAP.

http://www.zdnet.com/article/every-version-of-windows-hit-by-critical-security-flaw/

--
 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: Unicode character recognition by drawing

2016-07-12 Thread Richmond
Thinking, as one does, Livecodewards I wonder why this doesn't seem to 
work (7.1.4):


put numToCodePoint(917504)

That should not cause any problems . . . but.

Richmond.

On 12.07.2016 22:01, Mark Wieder wrote:

Richmond  writes:


Thanks, Mark; that cheered me up after a rather "non" day!

Cool. You were the one I thought would be the most interested in this.
At the very least it's a fun toy to play with.

The web page does say
"Japanese, Korean and Chinese characters are currently not supported."

so I guess it's (still|always) a work in progress.




___
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: lc mentioned in ars technica in a swift article

2016-07-12 Thread Mike Kerner
http://livecode.com/homebrew-livecode-mobile-ide/#comment-68265
___
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: Unicode character recognition by drawing

2016-07-12 Thread Mark Wieder
Richmond  writes:

> Thanks, Mark; that cheered me up after a rather "non" day!

Cool. You were the one I thought would be the most interested in this.
At the very least it's a fun toy to play with.

The web page does say
"Japanese, Korean and Chinese characters are currently not supported."

so I guess it's (still|always) a work in progress.

-- 
 Mark Wieder
 ahsoftw...@gmail.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: lc mentioned in ars technica in a swift article

2016-07-12 Thread Richard Gaskin

Mike Kerner wrote:

> This reminds me:  Whatever happened to the LC-on-ios project?
> I can write complex scripts in an app on ios and execute them,
> and I can load stacks remotely and execute them...

What is the LC-on-ios project?  Who made it?

Sounds like it might be a fun community project.  Very challenging, with 
the single-window limitation, but perhaps a rudimentary IDE could be 
made as a group that could be dynamically copied into a stack as needed.


--
 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: Unicode character recognition by drawing

2016-07-12 Thread Richmond

That's a clever piece of work.

I threw: Ж , ѭ, ह and छ at it, and the only one it got wrong was the 
last [Devanagari 'ccha']; pretty good


(well, better than Meatloaf in "Two out of three ain't bad."); 
unfortunately as my non-Latin writing systems are
limited to about 6 (Old Cyrillic, Glagolitic, Hebrew, Devanagari, 
Grantha, Greek) I cannot remark how the thing
might do with, say, either Chinese characters or Japanese Kanji, but I 
doubt it would do as well.


Let's hope somebody who knows those systems "has a go" and reverts here.

But, clever or not, one wonders what ultimate value that has embedded in 
a webpage.


Of course, if one could "winkle the thing out" and fold it into a 
Livecode stack I'd be the first one to
be having "spontaneous cough, cough, coughs" as I'm fairly bonkers about 
kinky writing systems.


Thanks, Mark; that cheered me up after a rather "non" day!

Richmond.


On 12.07.2016 20:58, Mark Wieder wrote:

Possibly of interest:

http://shapecatcher.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: lc mentioned in ars technica in a swift article

2016-07-12 Thread Roger Eller
Especially with hardware like the Google Pixel C trying to let Android play
laptop.  Convergence is still happening.

One of the first apps I built for Android was a script editor with a
"Execute script" button using the do command.  That allowed me to write and
test limited code that I could later use in the IDE.

~Roger


On Tue, Jul 12, 2016 at 1:24 PM, Mike Kerner 
wrote:

> and for Roger and the Android gang, is there really anything holding back
> LC from being worked to run full-out on Android?
>
> On Tue, Jul 12, 2016 at 1:23 PM, Mike Kerner 
> wrote:
>
> > This reminds me:  Whatever happened to the LC-on-ios project?  I can
> write
> > complex scripts in an app on ios and execute them, and I can load stacks
> > remotely and execute them...
> >
> > On Tue, Jul 12, 2016 at 12:46 PM, arul selvan 
> > wrote:
> >
> >>
> >>
> http://arstechnica.com/apple/2016/07/apple-swift-playgrounds-not-hypercard/
> >>
> >> arul
> >>
> >> ___
> >> 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
>
___
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


Unicode character recognition by drawing

2016-07-12 Thread Mark Wieder
Possibly of interest:

http://shapecatcher.com/

-- 
 Mark Wieder
 ahsoftw...@gmail.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: OT, https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Klaus major-k
Hi Mark,

> Am 12.07.2016 um 19:39 schrieb Mark Wieder :
> 
> Klaus major-k  writes:
> 
>> I'm completely puzzled, what the hell is going on here?
>> Any insights highly welcome! 
> 
> That's the problem with shared servers.
> Try this in a terminal window:
> 
> dig major-k.de
> dig legacytrees.org

ouch, SAME server and IP?
Sounds like asking for trouble, isn't it!?

> -- 
> Mark Wieder
> ahsoftw...@gmail.com

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: OT, https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Mark Wieder
Klaus major-k  writes:

> I'm completely puzzled, what the hell is going on here?
> Any insights highly welcome! 

That's the problem with shared servers.
Try this in a terminal window:

dig major-k.de
dig legacytrees.org

-- 
 Mark Wieder
 ahsoftw...@gmail.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: lc mentioned in ars technica in a swift article

2016-07-12 Thread Mike Kerner
and for Roger and the Android gang, is there really anything holding back
LC from being worked to run full-out on Android?

On Tue, Jul 12, 2016 at 1:23 PM, Mike Kerner 
wrote:

> This reminds me:  Whatever happened to the LC-on-ios project?  I can write
> complex scripts in an app on ios and execute them, and I can load stacks
> remotely and execute them...
>
> On Tue, Jul 12, 2016 at 12:46 PM, arul selvan 
> wrote:
>
>>
>> http://arstechnica.com/apple/2016/07/apple-swift-playgrounds-not-hypercard/
>>
>> arul
>>
>> ___
>> 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: lc mentioned in ars technica in a swift article

2016-07-12 Thread Mike Kerner
This reminds me:  Whatever happened to the LC-on-ios project?  I can write
complex scripts in an app on ios and execute them, and I can load stacks
remotely and execute them...

On Tue, Jul 12, 2016 at 12:46 PM, arul selvan  wrote:

> http://arstechnica.com/apple/2016/07/apple-swift-playgrounds-not-hypercard/
>
> arul
>
> ___
> 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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richmond



On 12.07.2016 19:53, Richard Gaskin wrote:

Richmond wrote:

> On 12.07.2016 19:22, Richard Gaskin wrote:
>> Richmond wrote:
>> > The multiarch stuff does not seem to allow that with
>> > (x,l,z,q,w,j,h)ubuntu 16.04.
>>
>> Multiarch is a mess.  In addition to LC, Google Earth and others
>> suffer horribly under it.
>>
>> If your system is 64-bit why not use the 64-bit build of LC?
>>
>
> Because the dictionary does not work.

Seems better to fix 64-bit than to try to fix an odd and 
soon-to-be-obsolete mish-mash of CPU architectures.


Is there a bug report for this?  I don't have Xubuntu set up here, but 
I do run Ubuntu and Lubuntu so maybe I can help pin down what's 
happening with that 64-bit version.




16848

R.

___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Dr. Hawkins
On Tue, Jul 12, 2016 at 12:18 AM, [-hh]  wrote:

> save stack as 


When I use this one, though, execution stops.  I've been meaning to ask
about this  . . .

I use it in a bmpVrsn routine to increment the file name of my various
stacks (it also checks for and changes the date, making new directories as
needed).  Once it saves, though, it issues a dialog asking about the
old/new stack names ("before saving, what do you want to do with . . .
save/cancel/purge")

What I *want* to happen is or the old stack to end up out of memory, and
the new stack (which has the same name) to take its place.

-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richard Gaskin

Richmond wrote:

> On 12.07.2016 19:22, Richard Gaskin wrote:
>> Richmond wrote:
>> > The multiarch stuff does not seem to allow that with
>> > (x,l,z,q,w,j,h)ubuntu 16.04.
>>
>> Multiarch is a mess.  In addition to LC, Google Earth and others
>> suffer horribly under it.
>>
>> If your system is 64-bit why not use the 64-bit build of LC?
>>
>
> Because the dictionary does not work.

Seems better to fix 64-bit than to try to fix an odd and 
soon-to-be-obsolete mish-mash of CPU architectures.


Is there a bug report for this?  I don't have Xubuntu set up here, but I 
do run Ubuntu and Lubuntu so maybe I can help pin down what's happening 
with that 64-bit version.


--
 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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Peter TB Brett



On 12/07/2016 16:35, Roger Eller wrote:

How about modifying the save option to automatically copy and rename as a
versioned file.


A "save copy as" command?

   Peter

--
Dr Peter Brett 
LiveCode Technical Project Manager

LiveCode 2016 Conference https://livecode.com/edinburgh-2016/

___
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


lc mentioned in ars technica in a swift article

2016-07-12 Thread arul selvan
http://arstechnica.com/apple/2016/07/apple-swift-playgrounds-not-hypercard/

arul

___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread [-hh]
Jacqueline LG wrote:
> The problem with "save as"  is that you end up working in the backup
> copy instead of the original.

Roger E. wrote
> How about modifying the save option to automatically copy and rename
> as a versioned file.

Yes, one can simply decide which one to use as backup.
I use it (similar in other apps) as follows.

Start with a stack fileName1. Then

save
save as fileName2

After these two lines fileName1 is the "backUp" and fileName2 is the
current exemplar for working. And so on.



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Windows-Equivalents-for-Shell-cp-copy-tp4706590p4706622.html
Sent from the Revolution - User mailing list archive at Nabble.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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richmond



On 12.07.2016 19:22, Richard Gaskin wrote:

Richmond wrote:
> The multiarch stuff does not seem to allow that with
> (x,l,z,q,w,j,h)ubuntu 16.04.

Multiarch is a mess.  In addition to LC, Google Earth and others 
suffer horribly under it.


If your system is 64-bit why not use the 64-bit build of LC?



Because the dictionary does not work.

Richmond.

___
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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richmond



On 12.07.2016 12:46, Peter TB Brett wrote:

On 12/07/2016 09:42, Richmond wrote:

The multiarch stuff does not seem to allow that with
(x,l,z,q,w,j,h)ubuntu 16.04.

Would be grateful for help here.

Trying to access the Livecode 8 dictionary again, again, again.


Hi Richmond,

Here are the steps I followed to get the LiveCode 8 dictionary working 
on Ubuntu 16.04.


1. Install Ubuntu 16.04 with default settings.
2. Install LiveCode for All Users with default settings
3. Start LiveCode
4. Click "Dictionary"

I just did this again, right now, just to make sure.

What are the differences between your system and a default Ubuntu 
installation?


I wish I knew, beyond the fact it is is Xubuntu.

R.



  Peter




___
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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richard Gaskin

Richmond wrote:
> The multiarch stuff does not seem to allow that with
> (x,l,z,q,w,j,h)ubuntu 16.04.

Multiarch is a mess.  In addition to LC, Google Earth and others suffer 
horribly under it.


If your system is 64-bit why not use the 64-bit build of LC?

--
 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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Roger Eller
How about modifying the save option to automatically copy and rename as a
versioned file.


On Tue, Jul 12, 2016 at 11:24 AM, J. Landman Gay 
wrote:

> The problem with "save as"  is that you end up working in the backup copy
> instead of the original.
>
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
>
>
>
> On July 12, 2016 3:01:48 AM "[-hh]"  wrote:
>
> Or simply (works on each supported platform):
>>
>> save stack as 
>>
>>
>>
>> --
>> View this message in context:
>> http://runtime-revolution.278305.n4.nabble.com/Windows-Equivalents-for-Shell-cp-copy-tp4706590p4706598.html
>> Sent from the Revolution - User mailing list archive at Nabble.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
>>
>
>
>
> ___
> 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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Paul Hibbert
I’m interested in the response too. Https requests to my on-rev site also link 
to legacytrees.org

Paul

> On Jul 12, 2016, at 5:23 AM, Klaus major-k  wrote:
> 
> Hi all,
> 
> OK, mail sent to support, wainting for a response now, I will keep you 
> informed!
> 
>> Am 12.07.2016 um 13:50 schrieb Klaus major-k :
>> 
>> Hi Peter,
>> 
>>> Am 12.07.2016 um 13:47 schrieb Peter TB Brett :
>>> 
>> On 12/07/2016 12:46, Klaus major-k wrote:
 Hi Rolf,
 
> Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans 
> :
> 
> If I do the same I land on artisansofscotland.com :-(
> My original page: www.kangaroo.on-rev.com
> 
> If I go here:   https://www.kangaroo.on-rev.com
> I land here:   https://artisansofscotland.com
 
 thanks for checking, good to know I'm not alone!
 
> Whats going on ?
 
 Yes, very good question!
 Hi mothership, any ideas?
> 
> 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


___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread J. Landman Gay
The problem with "save as"  is that you end up working in the backup copy 
instead of the original.


Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com



On July 12, 2016 3:01:48 AM "[-hh]"  wrote:


Or simply (works on each supported platform):

save stack as 



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Windows-Equivalents-for-Shell-cp-copy-tp4706590p4706598.html

Sent from the Revolution - User mailing list archive at Nabble.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




___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Roger Eller
Most Windows Server admins I know use xcopy.  It has far more control over
attributes than the standard copy command.

http://commandwindows.com/xcopy.htm

~Roger


On Tue, Jul 12, 2016 at 10:20 AM, Richard Gaskin  wrote:

> Sannyasin Brahmanathaswami wrote:
>
> > What alternatives do we have for basic shell commands on Windows?
> >
> > Rumors are out that later this year, Windows will support bash.. and
> > perhaps then Livecode's shell calls to unix/bash commands will be
> > cross platform--
>
> Ubuntu's bash environment is available for Windows 10 now - here's how to
> get started:
> 
>
> Useful for many sysadmin tasks, but for just copying LC stack files from
> within the IDE the LC Script examples the others gave are probably simpler
> options.
>
> --
>  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
>
___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Richard Gaskin

Sannyasin Brahmanathaswami wrote:

> What alternatives do we have for basic shell commands on Windows?
>
> Rumors are out that later this year, Windows will support bash.. and
> perhaps then Livecode's shell calls to unix/bash commands will be
> cross platform--

Ubuntu's bash environment is available for Windows 10 now - here's how 
to get started:



Useful for many sysadmin tasks, but for just copying LC stack files from 
within the IDE the LC Script examples the others gave are probably 
simpler options.


--
 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: portrait upside-down (iOS)

2016-07-12 Thread Randy Hengst
Glad it worked. 

The settings are literally for setting the display when the user first starts 
the app… 

My, albeit, vague  understanding is that setting is used even before the 
startUp handler is executed. In other words, the setting for the time the 
splash screen is being displayed.

be well,
randy

Randy Hengst
www.classroomFocusedSoftware.com



> On Jul 12, 2016, at 8:22 AM, Ben Rubinstein  wrote:
> 
> Thanks Randy, that did it for me too!
> 
> So what is the effect, if any, of setting the "iPad supported initial 
> orientations" in the standalone settings?
> 
> On 12/07/2016 00:05, Randy Hengst wrote:
>> Ben, this works for me….
>> 
>> 
>> on startUp
>>   iphoneSetAllowedOrientations "portrait,portrait upside down"
>> end startUp
>> 
> 
> 
> ___
> 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: portrait upside-down (iOS)

2016-07-12 Thread Ben Rubinstein

Thanks Randy, that did it for me too!

So what is the effect, if any, of setting the "iPad supported initial 
orientations" in the standalone settings?


On 12/07/2016 00:05, Randy Hengst wrote:

Ben, this works for me….


on startUp
   iphoneSetAllowedOrientations "portrait,portrait upside down"
end startUp




___
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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Mike Bonner
When I go to either of these pages i get:

Your connection is not private

Attackers might be trying to steal your information from
*www.kangaroo.on-rev.com
* (for example, passwords, messages, or
credit cards).

NET::ERR_CERT_COMMON_NAME_INVALID
 Automatically report details of possible security incidents to Google. Privacy
policy

On Tue, Jul 12, 2016 at 6:23 AM, Klaus major-k  wrote:

> Hi all,
>
> OK, mail sent to support, wainting for a response now, I will keep you
> informed!
>
> > Am 12.07.2016 um 13:50 schrieb Klaus major-k :
> >
> > Hi Peter,
> >
> >> Am 12.07.2016 um 13:47 schrieb Peter TB Brett  >:
> >>
> > On 12/07/2016 12:46, Klaus major-k wrote:
> >>> Hi Rolf,
> >>>
>  Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans <
> rolf.kocherh...@id.uzh.ch>:
> 
>  If I do the same I land on artisansofscotland.com :-(
>  My original page: www.kangaroo.on-rev.com
> 
>  If I go here:   https://www.kangaroo.on-rev.com
>  I land here:   https://artisansofscotland.com
> >>>
> >>> thanks for checking, good to know I'm not alone!
> >>>
>  Whats going on ?
> >>>
> >>> Yes, very good question!
> >>> Hi mothership, any ideas?
>
> 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
>
___
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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Klaus major-k
Hi all,

OK, mail sent to support, wainting for a response now, I will keep you informed!

> Am 12.07.2016 um 13:50 schrieb Klaus major-k :
> 
> Hi Peter,
> 
>> Am 12.07.2016 um 13:47 schrieb Peter TB Brett :
>> 
> On 12/07/2016 12:46, Klaus major-k wrote:
>>> Hi Rolf,
>>> 
 Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans :
 
 If I do the same I land on artisansofscotland.com :-(
 My original page: www.kangaroo.on-rev.com
 
 If I go here:   https://www.kangaroo.on-rev.com
 I land here:   https://artisansofscotland.com
>>> 
>>> thanks for checking, good to know I'm not alone!
>>> 
 Whats going on ?
>>> 
>>> Yes, very good question!
>>> Hi mothership, any ideas?

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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Klaus major-k
Hi Peter,

> Am 12.07.2016 um 13:47 schrieb Peter TB Brett :
> 
On 12/07/2016 12:46, Klaus major-k wrote:
>> Hi Rolf,
>> 
>>> Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans :
>>> 
>>> If I do the same I land on artisansofscotland.com :-(
>>> My original page: www.kangaroo.on-rev.com
>>> 
>>> If I go here:   https://www.kangaroo.on-rev.com
>>> I land here:   https://artisansofscotland.com
>> 
>> thanks for checking, good to know I'm not alone!
>> 
>>> Whats going on ?
>> 
>> Yes, very good question!
>> Hi mothership, any ideas?
> Have you tried contacting LiveCode Support by e-mailing 
> ?

not yet, just wanted to see if others are also experiencing this.
But will do now!

What will be more effective:

or

?

>  Peter
> 
> -- 
> Dr Peter Brett 
> LiveCode Technical Project Manager

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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Peter TB Brett



On 12/07/2016 12:46, Klaus major-k wrote:

Hi Rolf,


Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans :

If I do the same I land on artisansofscotland.com :-(
My original page: www.kangaroo.on-rev.com

If I go here:   https://www.kangaroo.on-rev.com
I land here:   https://artisansofscotland.com


thanks for checking, good to know I'm not alone!


Whats going on ?


Yes, very good question!
Hi mothership, any ideas?


Have you tried contacting LiveCode Support by e-mailing 
?


  Peter

--
Dr Peter Brett 
LiveCode Technical Project Manager

LiveCode 2016 Conference: https://livecode.com/edinburgh-2016/

___
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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Klaus major-k
Hi Rolf,

> Am 12.07.2016 um 13:36 schrieb Rolf Kocherhans :
> 
> If I do the same I land on artisansofscotland.com :-(
> My original page: www.kangaroo.on-rev.com
> 
> If I go here:   https://www.kangaroo.on-rev.com
> I land here:   https://artisansofscotland.com

thanks for checking, good to know I'm not alone!

> Whats going on ?

Yes, very good question!
Hi mothership, any ideas?

>> Am 12.07.2016 um 12:00 schrieb use-livecode-requ...@lists.runrev.com:
>> 
>> Hi friends,
>> 
>> I have my website at ON-REV: 
>>  
>> and inspired by the ATS discussion I was curious and just entered this into 
>> the address 
>> line of my browser: 
>> 
>> 
>> I really did not exspect anything but an error like "Not configured" or 
>> whatever, but got a 
>> Certificate alert dialog and after clicking "Continue" I found myself on 
>> THIS page:
>>  ?
>> 
>> But the address line still reads "www.major-k.de", even after I clicked some 
>> links to subpages 
>> on that page -> www.major-k.de/not_my_sub-page.html
>> 
>> I'm completely puzzled, what the hell is going on here?
>> Any insights highly welcome! :-)

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: OT: https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Rolf Kocherhans
If I do the same I land on artisansofscotland.com :-(

My original page: www.kangaroo.on-rev.com

If I go here:   https://www.kangaroo.on-rev.com
I land here:   https://artisansofscotland.com


Whats going on ?


> Am 12.07.2016 um 12:00 schrieb use-livecode-requ...@lists.runrev.com:
> 
> Hi friends,
> 
> I have my website at ON-REV: 
>  
> and inspired by the ATS discussion I was curious and just entered this into 
> the address 
> line of my browser: 
> 
> 
> I really did not exspect anything but an error like "Not configured" or 
> whatever, but got a 
> Certificate alert dialog and after clicking "Continue" I found myself on THIS 
> page:
>  ?
> 
> But the address line still reads "www.major-k.de", even after I clicked some 
> links to subpages 
> on that page -> www.major-k.de/not_my_sub-page.html
> 
> I'm completely puzzled, what the hell is going on here?
> Any insights highly welcome! :-)
> 
> 
> Best
> 
> Klaus


___
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: Progress on WP REST API

2016-07-12 Thread Trevisan
Todd Fabacher  writes:

> Here are two plugins that will allow WP to become a customizable DB server
> with little to no DB experience. Perfect for LC students and people who
> want to get a DB setup online, but don't have the experience or know-how.
> 
> https://wordpress.org/plugins/advanced-custom-fields/
> https://wordpress.org/plugins/acf-to-rest-api/
> 
> but also, I have found many Custom Post Type Plugins:
> 
> https://wordpress.org/plugins/custom-post-type-ui/
> https://wordpress.org/plugins/types/
> https://wordpress.org/plugins/pods/
> https://wordpress.org/plugins/custom-post-type-maker/
> 
> We can look to adding this to the LiveCode WP Rest API library. I get
> emails and I see some post of people asking how to setup a customized web
> data server. These would do the trick. Plus most are open source and FREE,
> but a few have a more feature rich commercial version.
> 
> We would like to focus on creating a sample App in LiveCode that utilized
> WooCommerce. I think it is important to have several different example Apps
> before we start to pitch to the WP community at large...any ideas
> 
> Any other questions [please let me know. I have had about 2 dozen people
> email with questions and express interest in integrating WP with LiveCode.
> 
> --Todd

Since you mentioned, as from your suggestion when I presented
my App "FlowReminder" at the LC Pitch your App, my ideal 
example would be:
- login (new and re-login) from inside the App
- once logged, the user is able to upload categorized files to
a web store, fixing their price with info details.
- also, inside the App, the user should be able to buy files of other
users and download them to the App. May be also to valuate them.

But, being a one man band, I may have to resort externally to
create such a web site.

Roberto Trevisan



___
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


OT, https <> http | WAS Application Transport Security deadline for iOS apps

2016-07-12 Thread Klaus major-k
Hi friends,

I have my website at ON-REV: 
 
and inspired by the ATS discussion I was curious and just entered this into the 
address 
line of my browser: 


I really did not exspect anything but an error like "Not configured" or 
whatever, but got a 
Certificate alert dialog and after clicking "Continue" I found myself on THIS 
page:
 ?

But the address line still reads "www.major-k.de", even after I clicked some 
links to subpages 
on that page -> www.major-k.de/not_my_sub-page.html

I'm completely puzzled, what the hell is going on here?
Any insights highly welcome! :-)


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: Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Peter TB Brett

On 12/07/2016 09:42, Richmond wrote:

The multiarch stuff does not seem to allow that with
(x,l,z,q,w,j,h)ubuntu 16.04.

Would be grateful for help here.

Trying to access the Livecode 8 dictionary again, again, again.


Hi Richmond,

Here are the steps I followed to get the LiveCode 8 dictionary working 
on Ubuntu 16.04.


1. Install Ubuntu 16.04 with default settings.
2. Install LiveCode for All Users with default settings
3. Start LiveCode
4. Click "Dictionary"

I just did this again, right now, just to make sure.

What are the differences between your system and a default Ubuntu 
installation?


  Peter

--
Dr Peter Brett 
LiveCode Technical Project Manager

LiveCode 2016 Conference: https://livecode.com/edinburgh-2016/

___
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


Getting 32-bit Livecode running on 64-bit Linux

2016-07-12 Thread Richmond
The multiarch stuff does not seem to allow that with 
(x,l,z,q,w,j,h)ubuntu 16.04.


Would be grateful for help here.

Trying to access the Livecode 8 dictionary again, again, again.

Richmond.

___
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: screen capture from LC as video?

2016-07-12 Thread Peter TB Brett

On 12/07/2016 09:37, Richmond wrote:

As this is meant to be on Windows can one not just use

revVideoGrabber ?

or, with the end of Livecode's dependence on Quicktime has that stopped
functioning?


revVideoGrabber will still work iff you can get QuickTime installed and 
working.


QuickTime on Windows 8+ is quite crashy, and on Windows 10 is very 
crashy.  It's not a LiveCode issue, it's a QuickTime issue.


 Peter

--
Dr Peter Brett 
LiveCode Technical Project Manager

LiveCode 2016 Conference: https://livecode.com/edinburgh-2016/

___
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: screen capture from LC as video?

2016-07-12 Thread Richmond

As this is meant to be on Windows can one not just use

revVideoGrabber ?

or, with the end of Livecode's dependence on Quicktime has that stopped 
functioning?


Richmond.

___
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: Application Transport Security deadline for iOS apps

2016-07-12 Thread Rolf Kocherhans
What does ATS mean for people using on-rev ?

I am not at all familiar with this subject, therefor
I have a couple of questions:

Will it be a per person thing, do I have to install a cert just for me ?
Or will LiveCode do this for all users ?
Or will this be implemented into the cPanel ?


> 
> Am 12.07.2016 um 00:53 schrieb use-livecode-requ...@lists.runrev.com:
> 
> Those using shared hosts running CPanel will have to wait just a few 
> more weeks while that team's control panel support completes its beta 
> 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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread [-hh]
Or simply (works on each supported platform):

save stack as 



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Windows-Equivalents-for-Shell-cp-copy-tp4706590p4706598.html
Sent from the Revolution - User mailing list archive at Nabble.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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread Mike Bonner
or the url method
put url "binfile:path/to/in/file into url "binfile:path/to/out/file"

On Tue, Jul 12, 2016 at 12:42 AM, J. Landman Gay 
wrote:

> On 7/11/2016 10:18 PM, Sannyasin Brahmanathaswami wrote:
>
>> RevCopyFile (which works on Windows) doesn't offer the option to copy
>> to a different filename…
>>
>> I suppose I can copy the file and then rename the copy at the new
>> destination, using "rename"  which is simple enough.
>>
>
> This works:
>
>   put  into tCopyPath
>   put the effective filename of this stack into tCurrentPath
>   set the filename of this stack to tCopyPath
>   save this stack
>   set the filename of this stack to tCurrentPath
>   save this stack -- reset
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.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
___
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: Windows Equivalents for Shell: cp (copy)

2016-07-12 Thread J. Landman Gay

On 7/11/2016 10:18 PM, Sannyasin Brahmanathaswami wrote:

RevCopyFile (which works on Windows) doesn't offer the option to copy
to a different filename…

I suppose I can copy the file and then rename the copy at the new
destination, using "rename"  which is simple enough.


This works:

  put  into tCopyPath
  put the effective filename of this stack into tCurrentPath
  set the filename of this stack to tCopyPath
  save this stack
  set the filename of this stack to tCurrentPath
  save this stack -- reset

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.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: screen capture from LC as video?

2016-07-12 Thread Terry Judd
Thanks Hugh - my current proposed workflow includes developing a
Powerpoint Œtemplate¹, using LC to process and generate personalised audio
files and graphics from Œraw¹ assessment data, using LC to Œmerge¹ the
personalised graphics and audio files into copies of the Powerpoint
template file, and then using a 3rd party Powerpoint to video converter to
batch convert the individual Powerpoint files to videos. Anything that
could simplify and/or replace that process is certainly worth
investigating!

Best regards,

Terry...

On 12/07/2016 4:03 pm, "use-livecode on behalf of FlexibleLearning.com"
 wrote:

>Hi Terry
>
>Video screen capture is Expression Encoder
>(https://www.microsoft.com/en-gb/download/details.aspx?id=18974).
>
>Best regards
>
>Hugh Senior
>FLCo
>
>> Thanks Hugh - I?m not much of a Windows user but I?ll check it out.
>>Which
>> version of Expression (design or web) should I be looking at?
>> 
>> Regards,
>> 
>> Terry...
>> 
>> On 12/07/2016 1:29 am, "use-livecode on behalf of FlexibleLearning.com"
>> > ad...@flexiblelearning.com> wrote:
>> 
>> >On Win32, try Microsoft Expression. The free version does all you
>> >describe.
>> >
>> >Hugh Senior
>> >FLCo
>
>
>___
>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: screen capture from LC as video?

2016-07-12 Thread FlexibleLearning.com
Hi Terry

Video screen capture is Expression Encoder
(https://www.microsoft.com/en-gb/download/details.aspx?id=18974).

Best regards

Hugh Senior
FLCo

> Thanks Hugh - I?m not much of a Windows user but I?ll check it out. Which
> version of Expression (design or web) should I be looking at?
> 
> Regards,
> 
> Terry...
> 
> On 12/07/2016 1:29 am, "use-livecode on behalf of FlexibleLearning.com"
>  ad...@flexiblelearning.com> wrote:
> 
> >On Win32, try Microsoft Expression. The free version does all you
> >describe.
> >
> >Hugh Senior
> >FLCo


___
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