Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Christer Pyyhtiä
Encrypting both in the device and in LC server makes sense in case you have literals in variables you do want to protect. Typically arrays are continuous memroy areas that can be hacked into. There are different needs for different types of applications to protect contents. All data and process

Re: Debugging resizeStack handlers

2013-10-07 Thread Mark Wieder
Richard- Monday, October 7, 2013, 12:21:08 PM, you wrote: > Peter Haworth wrote: >> I wonder if anyone has any tips on debugging resizeStackhandlers. My >> experience is that any runtime error makes the IDE hang and setting a >> breakpoint also hangs things up. > I've seen this as well, but no

Re: Fighting with audio player again

2013-10-07 Thread Peter Bogdanoff
So, what's this about QT "likely to be discontinued"? Any specifics, or just a general expectation? My current projects use the interactive aspects of QT quite heavily both for Mac and PC. Peter Bogdanoff UCLA On Oct 7, 2013, at 2:42 PM, J. Landman Gay wrote: > On 10/7/13 2:54 PM, Alejandro T

Re: Debugging resizeStack handlers

2013-10-07 Thread Peter Haworth
On Mon, Oct 7, 2013 at 12:21 PM, Richard Gaskin wrote: > I haven't yet filed a bug report on this - have you? # 11260 Pete lcSQL Software ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subsc

Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Vaughn Clement
Hi Just wondered and that makes sense. Thank you Vaughn Clement Apps by Vaughn Clement (Support) *http://www.appsbyvaughnclement.com/tools/home-page/* Skype: vaughn.clement https://secure.join.me/appsbyvclement FaceTime: vclem...@gmail.com LogMeIn also avaialble Call on "ooVoo" at address: vau

Re: A Text file format for LiveCode

2013-10-07 Thread Monte Goulding
On 08/10/2013, at 12:02 PM, Alejandro Tejada wrote: > Monte Goulding wrote >> Alejandro Tejada wrote: >>> 1) Search and Replace terms in all the handlers >>> of all stacks. Notice that many developers have published >>> stacks to export stacks as text, but this is a one way >>> conversion. >> We

Re: PDF to Image Conversion

2013-10-07 Thread Roger Eller
Several years ago, I remember mentioned here of someone using a browser object to display a PDF "in an invisible stack", so I use the word "display" loosely. Then by some command, the browsers imageData was being captured into LiveCode. I wish I knew more about how it was done, because I often ne

Re: A Text file format for LiveCode

2013-10-07 Thread Alejandro Tejada
Hi Monte, Monte Goulding wrote > Alejandro Tejada wrote: >> 1) Search and Replace terms in all the handlers >> of all stacks. Notice that many developers have published >> stacks to export stacks as text, but this is a one way >> conversion. > We already have that in the IDE. Only for stacks alr

Re: PDF to Image Conversion

2013-10-07 Thread william humphrey
Can PDF's be embedded in a Livecode card like a png or jpg can now? On Mon, Oct 7, 2013 at 3:05 PM, Ray Horsley wrote: > This seems like such an old topic but I've yet to find a good solution. > Quicktime works in a limited way and it's also a Mac only solution. > Regarding cross platform sol

Re: destructive "SELECT" query for SQL?

2013-10-07 Thread Ken Ray
Can't you just do an UPDATE query right after your SELECT and clear the column? Ken Ray Sons of Thunder Software > On Oct 6, 2013, at 5:05 PM, "Dr. Hawkins" wrote: > >> On Sun, Oct 6, 2013 at 10:39 AM, Peter Haworth wrote: >> >> Not sure I fully understand but you can use the literal NULL in

Re: Debugging resizeStack handlers

2013-10-07 Thread Peter Haworth
Thanks Devin. My code is in a separate handler called from resizeSTack as you suggested so I could test it separately. Pete lcSQL Software On Mon, Oct 7, 2013 at 12:48 PM, Devin Asay wrote: > Pete, > > On Oct 7, 2013, at 1:12 PM, Peter Haworth wrote: > > > I wonder if a

Re: Debugging resizeStack handlers

2013-10-07 Thread Peter Haworth
No bug report yet, only just came across it. ALways like to see if it's a widespread problem or something weird in my environment that causes rtuff before going to the QCC Pete lcSQL Software On Mon, Oct 7, 2013 at 12:21 PM, Richard Gaskin wrote: > Peter Haworth wrote: >

Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Andrew Kluthe
They are referring to the ability to pragmatically encrypt/decrypt other files, not the binary or script passwords. On Mon, Oct 7, 2013 at 6:21 PM, Vaughn Clement wrote: > Hi > > OK I can't think of any reason to encrypt a binary file for an iTunes > app??? Help me to understand why this would

Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Vaughn Clement
Hi OK I can't think of any reason to encrypt a binary file for an iTunes app??? Help me to understand why this would be required? Thank you Vaughn Clement Apps by Vaughn Clement (Support) *http://www.appsbyvaughnclement.com/tools/home-page/* Skype: vaughn.clement https://secure.join.me/appsbyvc

Re: A Text file format for LiveCode

2013-10-07 Thread Monte Goulding
On 08/10/2013, at 6:43 AM, Alejandro Tejada wrote: > 1) Search and Replace terms in all the handlers > of all stacks. Notice that many developers have published > stacks to export stacks as text, but this is a one way > conversion. We already have that in the IDE. > > 2) Commenting code will be

Re: A Text file format for LiveCode

2013-10-07 Thread Monte Goulding
On 08/10/2013, at 1:32 AM, Mark Wilcox wrote: > So, if the lcVCS route can be made to work robustly then optimising for > coding rather than optimising for serialising for version control seems like > a pretty good tradeoff. Yes that's the direction I'm going... keep working with the very conv

Re: A Text file format for LiveCode

2013-10-07 Thread Monte Goulding
On 08/10/2013, at 12:18 AM, David Bovill wrote: > You can use folders. I structure things as follows - toplevel we have an > array based representation of stacks, under which you can choose to export > this to either XML, JSON or my preferred representation text and folder > based. You need to b

Re: Fighting with audio player again

2013-10-07 Thread J. Landman Gay
Thanks for listening, Scott. I was ahead of you, I tried that yesterday but no go. The times where I did get playback, it was using a pre-used player. But I just tried a new player object again to be sure and...nothing. I've been thinking about AWS distributed servers. They must be delivering

Re: Fighting with audio player again

2013-10-07 Thread Scott Rossi
Sounds like some otherworldly behavior (we are getting close to Halloween). Ghosts in your machine? Radical suggestion: To reset the player, maybe try completely deleting the player object, and creating a new one, as opposed to just setting the filename to empty -- the ultimate reset. It sounds

Re: Fighting with audio player again

2013-10-07 Thread J. Landman Gay
On 10/7/13 2:54 PM, Alejandro Tejada wrote: Hi Jacque, Just my educated guess... Could that be that LiveCode is using some type of Windows OS stream buffer that fills with each request and, after this buffer is full, it stops receiving streams and produces an error? Probably, Windows OS clears

Re: Sending mail from on-rev server

2013-10-07 Thread stephen barncard
On Mon, Oct 7, 2013 at 4:23 AM, Christer Pyyhtiä wrote: > The thinking leads to a question would it be possible to password protect > your LC code in the server like you can protect the stack in the > development system OS/X, Windows and Linux? But is PHP password protected? That is the function

Re: Encrypt/decrypt availability in server / devices

2013-10-07 Thread Mike Kerner
I can't speak for server, but it works on ios, with the caveat that in certain cases I've had to bit16 encode the encrypted file. On Mon, Oct 7, 2013 at 3:23 AM, Christer Pyyhtiä wrote: > Are there any plans to get encrypt/decrypt available in iOS/Android and > server (actually could be there bu

Re: Fighting with audio player again

2013-10-07 Thread Alejandro Tejada
Hi Jacque, Just my educated guess... Could that be that LiveCode is using some type of Windows OS stream buffer that fills with each request and, after this buffer is full, it stops receiving streams and produces an error? Probably, Windows OS clears this buffer automatically after a number of

Re: Debugging resizeStack handlers

2013-10-07 Thread Devin Asay
Pete, On Oct 7, 2013, at 1:12 PM, Peter Haworth wrote: > I wonder if anyone has any tips on debugging resizeStackhandlers. My > experience is that any runtime error makes the IDE hang and setting a > breakpoint also hangs things up. > Pete > lcSQL Software I have taken to

Re: A Text file format for LiveCode

2013-10-07 Thread Alejandro Tejada
Hi Monte, Monte Goulding wrote >> Text format will be useful in many ways, but not >> for storing or sending stacks in the web. > > What ways.. other than version control? I understand that using text files to edit stacks sounds awfully similar to the methods of Third Generation Languages of "E

Re: Debugging resizeStack handlers

2013-10-07 Thread Peter Haworth
Forgot to also mention that "answer" dialogs also hang things up and a put into the message box does nothing. This is all with liveresizing set to true. Pete lcSQL Software On Mon, Oct 7, 2013 at 12:12 PM, Peter Haworth wrote: > I wonder if anyone has any tips on debugg

Re: Fighting with audio player again

2013-10-07 Thread J. Landman Gay
On 10/7/13 2:04 PM, Richard Gaskin wrote: J. Landman Gay wrote: On 10/7/13 1:06 PM, Richard Gaskin wrote: LiveCode uses a very old and long-since-deprecated set of APIs for working with native media playback on Windows. Until LC is updated to use newer APIs, whether the native Win player app

Re: Debugging resizeStack handlers

2013-10-07 Thread Richard Gaskin
Peter Haworth wrote: I wonder if anyone has any tips on debugging resizeStackhandlers. My experience is that any runtime error makes the IDE hang and setting a breakpoint also hangs things up. I've seen this as well, but not in MetaCard so it's not an engine issue. Given some time I'd like t

RE: RELEASE: LiveCode 6.1.2 RC2

2013-10-07 Thread Ralph DiMola
Ben, I think that answer dialog fix 11234 for the iOS 7 simulator also fixed my app not loading on the iOS 7 simulator. Thanks for saving me the time of nailing this one down! The answer dialog was not my specific problem. Don't know what caused my hang and don't care now. Thanks again to the RR

Debugging resizeStack handlers

2013-10-07 Thread Peter Haworth
I wonder if anyone has any tips on debugging resizeStackhandlers. My experience is that any runtime error makes the IDE hang and setting a breakpoint also hangs things up. Pete lcSQL Software ___ use-livecode mailing list use-livec

PDF to Image Conversion

2013-10-07 Thread Ray Horsley
This seems like such an old topic but I've yet to find a good solution. Quicktime works in a limited way and it's also a Mac only solution. Regarding cross platform solutions I believe Imagick requires GhostScript which could present both licensing issues as well as a complicated installer pr

Re: Fighting with audio player again

2013-10-07 Thread Richard Gaskin
J. Landman Gay wrote: On 10/7/13 1:06 PM, Richard Gaskin wrote: LiveCode uses a very old and long-since-deprecated set of APIs for working with native media playback on Windows. Until LC is updated to use newer APIs, whether the native Win player app can play a file is not a reliable test of

Re: Fighting with audio player again

2013-10-07 Thread J. Landman Gay
On 10/7/13 1:06 PM, Richard Gaskin wrote: LiveCode uses a very old and long-since-deprecated set of APIs for working with native media playback on Windows. Until LC is updated to use newer APIs, whether the native Win player app can play a file is not a reliable test of whether LC can also play

Re: Fighting with audio player again

2013-10-07 Thread Richard Gaskin
J. Landman Gay wrote: I'm not having any luck with the player on Windows. I have some remote audio files that play okay in a browser (IE) but will not play in a player object. I always get "could not open video player". These are mp3 files. QuickTime is not installed, and we don't want to requi

Re: LiveCode Start Center

2013-10-07 Thread Dave Kilroy
Hi Colin - and yes I meant 6.1.2 -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/LiveCode-Start-Center-tp4670746p4670749.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode mailin

Fighting with audio player again

2013-10-07 Thread J. Landman Gay
I'm not having any luck with the player on Windows. I have some remote audio files that play okay in a browser (IE) but will not play in a player object. I always get "could not open video player". These are mp3 files. QuickTime is not installed, and we don't want to require it, but since IE p

Re: LiveCode Start Center

2013-10-07 Thread Colin Holgate
I think you meant 6.1.2, and yes, I see that too. I reported it in the other email list. On Oct 7, 2013, at 12:14 PM, Dave Kilroy wrote: > On LC 6.1.1 rc1 & rc2 if you close the Start Center you can't open it again > either via the Help menu or by setting it to show on start up via > Preferenc

LiveCode Start Center

2013-10-07 Thread Dave Kilroy
On LC 6.1.1 rc1 & rc2 if you close the Start Center you can't open it again either via the Help menu or by setting it to show on start up via Preferences. I then tried checking and un-checking boxes in Preferences as well as clicking the 'Reset all preferences to default' button but these don't he

RE: iOS 7 / Xcode 5 and the status bar.

2013-10-07 Thread Ralph DiMola
I agree. I Just tested all 3 options on the Simulator and an iPad 2 both with iOS 7 and the status bar is consistent between the two. Colin and I are seeing the same thing. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-live

Re: iOS 7 / Xcode 5 and the status bar.

2013-10-07 Thread Colin Holgate
The status bar seems to be doing the right things. I have both Xcode 4.6 and 5.0 added in my mobile preferences, and can use either simulator. The visibility seems to work, and the only oddity is that black opaque is still see-through on iOS 7. But then that might be correct.

RE: iOS 7 / Xcode 5 and the status bar.

2013-10-07 Thread Ralph DiMola
Tom, I saw your comments on the other list and I am looking at it now on both the device and simulator. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Tho

Re: iOS 7 / Xcode 5 and the status bar.

2013-10-07 Thread Thomas McGrath III
Ralph, Have you noticed that the simulator does not respect any settings for display status bar or status bar style. The device seems to respect them just not the simulator. Thanks Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On Oct 2, 2013, at 11:44 AM, Ralph DiMola

Re: A Text file format for LiveCode

2013-10-07 Thread Mark Wilcox
Personally I think there may be some value in having the default developer view of a stack as a set of (mostly) text files. There would then be a tool that does a lot of what lcVCS does which turns that into a binary stack format for runtime size and performance - a lot of languages "compile" th

RELEASE: LiveCode 6.1.2 RC2

2013-10-07 Thread Benjamin Beaumont
Dear list members, We are pleased to announce the second release candidate of LiveCode 6.1.2. *Warning*: this is not a stable release. Please ensure you back up your stacks before testing them. If you do not wish to be notified of test releases, uncheck the appropriate boxes in the Updates sectio

Re: A Text file format for LiveCode

2013-10-07 Thread David Bovill
On 6 October 2013 23:46, Monte Goulding wrote: > > On 07/10/2013, at 8:52 AM, Dr. Hawkins wrote: > > The format is probably pretty obvious, too . . . > > > > begin button myBtn > > owner: card buttonville of stack buttonland > > type: pushbutton > > label: "My Favorite button" > > loc: 823

Re: Android SDK Path Again

2013-10-07 Thread Colin Holgate
There also was a work around for a few days, where you could copy certain files back into the place that LiveCode was expecting them to be. Might need to search through the emails to find out exactly which files those were. ___ use-livecode mailing l

Re: Sending mail from on-rev server

2013-10-07 Thread Christer Pyyhtiä
Avoiding LC on-rev server to become a spam generator is good thinking. Made me to review the code at both ends making sure there is no way a user from a device could even accidentally access (the mail capability in) the server, the mails being activated only by and within the code in the server

Re: Sending mail from on-rev server

2013-10-07 Thread Pierre Sahores
AFAIK, Support are closely working on this. I expect that the difficulty is not technically relevant but relative to the most appropriate way to remap SendMail to service as attendee without making it available as an unwanted spam engine... Le 7 oct. 2013 à 08:42, Christer Pyyhtiä a écrit : > T

Re: My dirty mind and Open Source

2013-10-07 Thread Pierre Sahores
You reach the metakey point… Is there, to the end, two kinds of Physics, two kinds of Economics, too kinds of Programing, two kinds of mastering creativity and surfing live ? A socialist one to the left, a capitalist one to the right ?… Are not things just more relative to the sailing intentions

Re: Android SDK Path Again

2013-10-07 Thread Neil Roger
Hi Scott, Are you trying to use revision 22 of the Android SDK with LiveCode 5.5.5? If so you will need to update to a more recent version of LiveCode (6.0.2+) as 5.5.5 is not compatible with this version of the Android SDK. You also have the option of using reverting to revision 21 of the A

[NEWS] Valentina Server 5.5 without license file will start with 1 connection.

2013-10-07 Thread Ruslan Zasukhin
Hi Guys, This is one more step we do to simplify work with Valentina Server for newcomers! IDEA IS -- if Valentina Server not found any valid license then it starts with 1 connection. But it starts. This also resolve problem that on OS X, with default auto-restart option, we did get lots of log

Encrypt/decrypt availability in server / devices

2013-10-07 Thread Christer Pyyhtiä
Are there any plans to get encrypt/decrypt available in iOS/Android and server (actually could be there but haven't tried)? rgds christer ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and