Mobile Javascript

2014-03-01 Thread David Bovill
Has anyone much experience of the stability of HTML5 and Javascript
animations inside a browser in LiveCode - particularly on the mobile? I'm
considering a project that uses animations made in HTML5+ Javascript
designed to work optimally on mobile - but then would like to embed them in
LiveCode in a webkit browser.
___
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 funny stuff

2014-03-01 Thread Mark Wieder
For anyone still left on on-rev-

If you've noticed an influx of spam over the last couple of weeks,
check out your Spam Assassin settings. I don't know whether I was
particularly singled out or whether everyone got the same treatment,
but SA got turned off. I re-enabled it and spam magically went away.

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

This communication may be unlawfully collected and stored by the National 
Security Agency (NSA) in secret. The parties to this email do not 
consent to the retrieving or storing of this communication and any 
related metadata, as well as printing, copying, re-transmitting, 
disseminating, or otherwise using it. If you believe you have received 
this communication in error, please delete it immediately.


___
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: Fwd: Console output

2014-03-01 Thread J. Landman Gay
Thanks Pierre. I think I found the answer on Stack Overflow: Mavericks 
no longer routes stdout to Console automatically. There's no way to get 
it there unless apps are specifically written to do it.




I changed my logging so it writes to a file and that works. But it would 
be nice if we could still use Console, that was easier. I can't 
understand why Apple removed that functionality.



On 3/1/14, 3:58 PM, Pierre Sahores wrote:

Sorry for the typo. Should be correct below :

on log pMsg
local tMsg
put pMsg into tMsg
answer tMsg
end log

Début du message réexpédié :


De: "J. Landman Gay" 
Objet: Console output
Date: 1 mars 2014 21:45:48 UTC+1
À: LiveCode Mailing List 
Répondre à: How to use LiveCode 

I'm trying to debug a standalone by using "put" statements:

on log pMsg
  put pMsg
end log

In Console (OS X Mavericks) I never see any of the messages. The only thing it 
lists is this, on every startup of the app:

Class TSSandboxPrefs is implemented in both 
/Library/Frameworks/TSLicense.framework/Versions/A/TSLicense and 
/Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV 
Advanced. One of the two will be used. Which one is undefined.

I don't know what that means exactly, but it doesn't seem related to my debugging efforts. Does 
anyone know if something changed with a basic "put" statement now? Or is there somewhere 
else I need to look in Console? I have "All messages" selected, with my app's name as the 
filter.

This used to work.

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


--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.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




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


Fwd: Console output

2014-03-01 Thread Pierre Sahores
Sorry for the typo. Should be correct below :

on log pMsg
local tMsg
put pMsg into tMsg
answer tMsg
end log

Début du message réexpédié :

> De: "J. Landman Gay" 
> Objet: Console output
> Date: 1 mars 2014 21:45:48 UTC+1
> À: LiveCode Mailing List 
> Répondre à: How to use LiveCode 
> 
> I'm trying to debug a standalone by using "put" statements:
> 
> on log pMsg
>  put pMsg
> end log
> 
> In Console (OS X Mavericks) I never see any of the messages. The only thing 
> it lists is this, on every startup of the app:
> 
> Class TSSandboxPrefs is implemented in both 
> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense and 
> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac 
> WMV Advanced. One of the two will be used. Which one is undefined.
> 
> I don't know what that means exactly, but it doesn't seem related to my 
> debugging efforts. Does anyone know if something changed with a basic "put" 
> statement now? Or is there somewhere else I need to look in Console? I have 
> "All messages" selected, with my app's name as the filter.
> 
> This used to work.
> 
> -- 
> 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

--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.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: Console output

2014-03-01 Thread Pierre Sahores
Hi Jacque,

What does it do if you try :

on log pMsg
local tPsg
put pMsg into tMsg
answer tMsg
end log

Le 1 mars 2014 à 21:45, J. Landman Gay  a écrit :

> I'm trying to debug a standalone by using "put" statements:
> 
> on log pMsg
>  put pMsg
> end log
> 
> In Console (OS X Mavericks) I never see any of the messages. The only thing 
> it lists is this, on every startup of the app:
> 
> Class TSSandboxPrefs is implemented in both 
> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense and 
> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac 
> WMV Advanced. One of the two will be used. Which one is undefined.
> 
> I don't know what that means exactly, but it doesn't seem related to my 
> debugging efforts. Does anyone know if something changed with a basic "put" 
> statement now? Or is there somewhere else I need to look in Console? I have 
> "All messages" selected, with my app's name as the filter.
> 
> This used to work.
> 
> -- 
> 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

--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.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


Console output

2014-03-01 Thread J. Landman Gay

I'm trying to debug a standalone by using "put" statements:

on log pMsg
  put pMsg
end log

In Console (OS X Mavericks) I never see any of the messages. The only 
thing it lists is this, on every startup of the app:


Class TSSandboxPrefs is implemented in both 
/Library/Frameworks/TSLicense.framework/Versions/A/TSLicense and 
/Library/QuickTime/Flip4Mac WMV 
Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced. One of the two 
will be used. Which one is undefined.


I don't know what that means exactly, but it doesn't seem related to my 
debugging efforts. Does anyone know if something changed with a basic 
"put" statement now? Or is there somewhere else I need to look in 
Console? I have "All messages" selected, with my app's name as the filter.


This used to work.

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


Richmond "does" Linux PPC

2014-03-01 Thread Richmond
Live action for all of you people who are both desperate and at a loose 
end on Saturday night:


http://forums.runrev.com/viewtopic.php?f=6&t=19328&p=97872#p97872

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: Encrypt data iOS

2014-03-01 Thread Jim sims
Thanks Peter, will see if the new LC gets here in time.

sims

On Saturday, March 1, 2014, Peter M. Brigham  wrote:

> If you're caught short, Richard Gaskin has a pair of LC functions
> (fwPack/fwUnpack) that will compress and encrypt any files for internet
> transmission. They use SHA-1 encryption, not industrial level but pretty
> good security for most things.
>
> -- Peter
>
> Peter M. Brigham
> pmb...@gmail.com 
> http://home.comcast.net/~pmbrig
>
> On Mar 1, 2014, at 10:26 AM, Jim sims wrote:
>
> > Thank
> > You Klaus!
> >
> > Phew, in the nick of time ... Maybe.
> > ;-)
> >
> > sims
> >
> > On Saturday, March 1, 2014, Klaus major-k >
> wrote:
> >
> >> Hi sims,
> >>
> >> Am 01.03.2014 um 16:17 schrieb Jim sims 
> >> 
> >>> :
> >>
> >>> I want to encrypt a file on an iPhone and hopefully Android device then
> >>> send that encrypted file via email (person on other end will have a
> >>> deception app to then read it). I do have a commercial not community
> >>> version of LC.
> >>>
> >>> Is this possible?
> >>> Is it scheduled to appear soon?
> >>>
> >>> If not possible soon what are my options?
> >>
> >> this will come with LC 6.6 (dp1)!
> >>
> >> From the release notes:
> >> ...
> >> Open SSL & encryption support has been added to the iOS and Android
> engines
> >> ...
> >>
> >>> sims
> >>
> >> 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
>
>
> ___
> 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: Encrypt data iOS

2014-03-01 Thread Peter M. Brigham
If you're caught short, Richard Gaskin has a pair of LC functions 
(fwPack/fwUnpack) that will compress and encrypt any files for internet 
transmission. They use SHA-1 encryption, not industrial level but pretty good 
security for most things.

-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig

On Mar 1, 2014, at 10:26 AM, Jim sims wrote:

> Thank
> You Klaus!
> 
> Phew, in the nick of time ... Maybe.
> ;-)
> 
> sims
> 
> On Saturday, March 1, 2014, Klaus major-k  wrote:
> 
>> Hi sims,
>> 
>> Am 01.03.2014 um 16:17 schrieb Jim sims 
>>> :
>> 
>>> I want to encrypt a file on an iPhone and hopefully Android device then
>>> send that encrypted file via email (person on other end will have a
>>> deception app to then read it). I do have a commercial not community
>>> version of LC.
>>> 
>>> Is this possible?
>>> Is it scheduled to appear soon?
>>> 
>>> If not possible soon what are my options?
>> 
>> this will come with LC 6.6 (dp1)!
>> 
>> From the release notes:
>> ...
>> Open SSL & encryption support has been added to the iOS and Android engines
>> ...
>> 
>>> sims
>> 
>> 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


___
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: Encrypt data iOS

2014-03-01 Thread Jim sims
Thank
You Klaus!

Phew, in the nick of time ... Maybe.
;-)

sims

On Saturday, March 1, 2014, Klaus major-k  wrote:

> Hi sims,
>
> Am 01.03.2014 um 16:17 schrieb Jim sims 
> >:
>
> > I want to encrypt a file on an iPhone and hopefully Android device then
> > send that encrypted file via email (person on other end will have a
> > deception app to then read it). I do have a commercial not community
> > version of LC.
> >
> > Is this possible?
> > Is it scheduled to appear soon?
> >
> > If not possible soon what are my options?
>
> this will come with LC 6.6 (dp1)!
>
> From the release notes:
> ...
> Open SSL & encryption support has been added to the iOS and Android engines
> ...
>
> > sims
>
> 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: Encrypt data iOS

2014-03-01 Thread Klaus major-k
Hi sims,

Am 01.03.2014 um 16:17 schrieb Jim sims :

> I want to encrypt a file on an iPhone and hopefully Android device then
> send that encrypted file via email (person on other end will have a
> deception app to then read it). I do have a commercial not community
> version of LC.
> 
> Is this possible?
> Is it scheduled to appear soon?
> 
> If not possible soon what are my options?

this will come with LC 6.6 (dp1)!

>From the release notes:
...
Open SSL & encryption support has been added to the iOS and Android engines
...

> sims

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


Encrypt data iOS

2014-03-01 Thread Jim sims
I want to encrypt a file on an iPhone and hopefully Android device then
send that encrypted file via email (person on other end will have a
deception app to then read it). I do have a commercial not community
version of LC.

Is this possible?
Is it scheduled to appear soon?

If not possible soon what are my options?

sims

Sent from my iPodo, blame it for poor spelling
___
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: Crowd Funding Enhancements

2014-03-01 Thread Richmond
If you look in the 'Toolset' directory of Livecode 6.6 you will find a 
"revvariablewatcher.rev" file.


If you move that into your plug-ins folder it might prove useful.

What I don't understand is why that file is there in the Toolset' 
directory when there seems to be no way to call it up from within the IDE.


-

I have no idea whatsoever how useful the thing is as I have no need of a 
Variable Watcher.


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: Crowd Funding Enhancements

2014-03-01 Thread Richmond

On 01/03/14 12:13, Mark Schonewille wrote:

Mike,

It used to be like that, along time ago. There was a window, called 
Variable Watcher, which was probably inherited from HyperCard. The 
Message Watcher, also inherited from HyperCard, still exists in a 
separate window.




http://forums.runrev.com/viewtopic.php?f=5&t=19385

Richmond.


--
Best regards,

Mark Schonewille




___
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: Crowd Funding Enhancements

2014-03-01 Thread Mark Schonewille

Mike,

It used to be like that, along time ago. There was a window, called 
Variable Watcher, which was probably inherited from HyperCard. The 
Message Watcher, also inherited from HyperCard, still exists in a 
separate window.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Use Color Converter to convert CMYK, RGB, RAL, XYZ, H.Lab and other 
colour spaces. http://www.color-converter.com


Buy my new book "Programming LiveCode for the Real Beginner" 
http://qery.us/3fi


LiveCode on Facebook:
https://www.facebook.com/groups/runrev/

On 2/28/2014 22:35, Mike Kerner wrote:

here's another one:  when debugging, how about putting variables in a
separate window so they aren't competing for scarce vertical space with the
script?


On Mon, Feb 17, 2014 at 11:16 AM, Bob Sneidar
wrote:


GLX2 used to do this if I recall, and so did Remo. I wonder if the code is
still there somewhere?

Bob


On Feb 16, 2014, at 13:38 , Richmond  wrote:


On 16/02/14 23:17, Peter Haworth wrote:

I'd vote for that one.  And while we're talking Script editor changes,

how

about split screen (horizontally) display and perhaps the ability to

move

tabs around.


It would be very useful if one could see two scripts, either

side-by-side or above each other, simultaneously.


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: Crowd Funding Enhancements

2014-03-01 Thread Richmond

On 01/03/14 01:04, J. Landman Gay wrote:
You'll have to fight with the "why isn't everything in a single 
window" crowd. 


This is why there needs to be a "choices" script-editor, where the 
multiple windows people can have multiple windows, and

the Russell and Carnap crowd can have everything in one place.

Richmond.

But anyway, I asked for a detachable variable watcher a long time ago. 
I think I may have put in a feature request for it but I may have just 
talked to someone about it. It was a long time ago.


On 2/28/14, 3:53 PM, Peter Haworth wrote:

+1 from me on that one.

Pete
lcSQL Software 
Home of lcStackBrowser  and
SQLiteAdmin 


On Fri, Feb 28, 2014 at 1:35 PM, Mike Kerner 
wrote:



here's another one:  when debugging, how about putting variables in a
separate window so they aren't competing for scarce vertical space 
with the

script?






___
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